Mathieu Tuli

Results 14 comments of Mathieu Tuli

this took me a while to figure out and plagued me for so long! having emacs bindings default off if using vim seems like a good idea to me. I...

I've been away for a bit so I'm not too sure, but the overhead prompt seems to have been removed [here](https://github.com/ashawkey/stable-dreamfusion/commit/ec08c0d#diff-22c3f3bf9bc98e79c7bfd377c6c19511566104034da8df31e4a1783f85e8b5a3L279) You could try digging more but I don't think...

As a sanity check an you confirm that `trial_image22/checkpoints/latest_checkpoint.pth` exists? More so that its a non-empty file? Are there any warnings printed? Further, you might benefit from setting a breakpoint...

#184 resolved a scenario where something caused `mean_density` to be zero resulting in no mesh being created at all. Two questions: 1. Note that the current implementation sets `density_thresh` for...

scanning the dreambooth3d paper, there's two main differences: 1. Using DreamBooth rather than Stable Diffusion (DreamFusion paper actually uses Imagen). This is already a feature in this repo I believe,...

This happened to me. It's because `mean_density` [(here)](https://github.com/ashawkey/stable-dreamfusion/blob/9eb8e5b2da090c408fa03ecea9735e61fbe10dd9/nerf/renderer.py#L189) is zero I believe. As a result, you get empty `vertices` and `triangles` ([see here](https://github.com/ashawkey/stable-dreamfusion/blob/9eb8e5b2da090c408fa03ecea9735e61fbe10dd9/nerf/renderer.py#L215)). For some reason, `mean_density` wasn't updated or...

This makes so much sense, I like this a lot. Inline with what I was starting to piece together. Yeah templates/lambdas won't be an issue, thanks!

Posting here for anyone that may come across this and wants to see _a_ solution. ```cpp template struct DeferredDisplay { std::tuple args; std::function callable; }; template std::vector DeferredRegister; template void...

For sure, yeah I've been ignoring details like that I'll have to handle that soon. Thanks for the tip

Okay so I've been thinking on this. I can see how this would break if say the registration was for e.g. wrapped in a `TreeNode` and thus the `OpenPopup` would...