hustvl / GaussianDreamer

GaussianDreamer: Fast Generation from Text to 3D Gaussians by Bridging 2D and 3D Diffusion Models (CVPR 2024)
https://taoranyi.com/gaussiandreamer/
Apache License 2.0
651 stars 33 forks source link

How to test it out-of-the-box ? #12

Open tsabbir96 opened 10 months ago

tsabbir96 commented 10 months ago

Hi I want to test the library without having to train it.. How can I do that? --test in the following command throws an error.

Command: python launch.py --config configs/gaussiandreamer-sd.yaml --test --gpu 0 system.prompt_processor.prompt="a fox"

Error:

    Tracebacks
    .....
    .....
    File "/content/GaussianDreamer/threestudio/systems/GaussianDreamer.py", line 240, in forward
      render_pkg = render(viewpoint_cam, self.gaussian, self.pipe, renderbackground)
    File "/usr/local/lib/python3.10/dist-packages/torch/nn/modules/module.py", line 1614, in __getattr__
      raise AttributeError("'{}' object has no attribute '{}'".format(
    AttributeError: 'GaussianDreamer' object has no attribute 'pipe'
taoranyi commented 10 months ago

There is indeed an issue here. I have no design to implement rendering without training. I will fix this soon.

Adamdad commented 9 months ago

Any updates?