EnVision-Research / LucidDreamer

Official implementation of "LucidDreamer: Towards High-Fidelity Text-to-3D Generation via Interval Score Matching"
MIT License
749 stars 32 forks source link

some question about tain.py #18

Closed cwwjyh closed 10 months ago

cwwjyh commented 10 months ago

image I have installed the GussianDreamer environment using : pip install submodules/diff-gaussian-rasterization/ pip install submodules/simple-knn/ but I run : python train.py --opt './configs/bagel.yaml' , and find the above question in the image. for 1, I modify 'rendered_image, radii, depth = rasterizer(xxx)' into 'renderedimage, radii, depth, = rasterizer(xxx)' it can run, but I encountered 2. Can you give me some advice? Thank you!

YixunLiang commented 10 months ago

Hi,

we modify the original diff-gaussian-rasterization to make it output the depth and alpha maps. So if you want to use our code, please reinstall the diff-gaussian-rasterization package we provide. Thanks.

---- Replied Message ---- | From | @.> | | Date | 12/08/2023 13:59 | | To | @.> | | Cc | @.***> | | Subject | [EnVision-Research/LucidDreamer] some question about tain.py (Issue #18) |

image.png (view on web) I have installed the GussianDreamer environment using : pip install submodules/diff-gaussian-rasterization/ pip install submodules/simple-knn/ but I run : python train.py --opt './configs/bagel.yaml' , and find the above question in the image. for 1, I modify 'rendered_image, radii, depth = rasterizer(xxx)' into 'renderedimage, radii, depth, = rasterizer(xxx)' it can run, but I encountered 2. Can you give me some advice? Thank you!

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.***>

cwwjyh commented 10 months ago

Hi, we modify the original diff-gaussian-rasterization to make it output the depth and alpha maps. So if you want to use our code, please reinstall the diff-gaussian-rasterization package we provide. Thanks. ---- Replied Message ---- | From | @.> | | Date | 12/08/2023 13:59 | | To | @.> | | Cc | @.> | | Subject | [EnVision-Research/LucidDreamer] some question about tain.py (Issue #18) | image.png (view on web) I have installed the GussianDreamer environment using : pip install submodules/diff-gaussian-rasterization/ pip install submodules/simple-knn/ but I run : python train.py --opt './configs/bagel.yaml' , and find the above question in the image. for 1, I modify 'rendered_image, radii, depth = rasterizer(xxx)' into 'renderedimage, radii, depth, = rasterizer(xxx)' it can run, but I encountered 2. Can you give me some advice? Thank you! — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.>

Ok, thank you! i try this now.