GGGHSL / GraphDreamer

[CVPR'24] GraphDreamer: a novel framework of generating compositional 3D scenes from scene graphs.
https://graphdreamer.github.io/
MIT License
160 stars 1 forks source link

DeepFloyd/IF-I-XL-v1.0 Error #5

Closed adeerkhan closed 6 months ago

adeerkhan commented 6 months ago

I am getting the following errors:

OSError: Cannot load model DeepFloyd/IF-I-XL-v1.0: model is not cached locally and an error occured while trying to fetch metadata from the Hub. Please check out the root cause in the stacktrace above.

and this error:

Traceback (most recent call last):
  File "/workspace/GraphDreamer/launch.py", line 181, in <module>
    main()
  File "/workspace/GraphDreamer/launch.py", line 109, in main
    system: BaseSystem = threestudio.find(cfg.system_type)(
  File "/workspace/GraphDreamer/threestudio/systems/base.py", line 40, in __init__
    self.configure()
  File "/workspace/GraphDreamer/threestudio/systems/gdreamer.py", line 63, in configure
    prompt_processor = threestudio.find(self.cfg.prompt_processor_type)(self.cfg.prompt_processor)
  File "/workspace/GraphDreamer/threestudio/utils/base.py", line 83, in __init__
    self.configure(*args, **kwargs)
  File "/workspace/GraphDreamer/threestudio/models/prompt_processors/base.py", line 298, in configure
    with open(os.path.join("load/prompt_library.json"), "r") as f:
FileNotFoundError: [Errno 2] No such file or directory: 'load/prompt_library.json'
GGGHSL commented 6 months ago

Thanks for pointing this out. We have just uploaded the missing file load/prompt_library.json.

adeerkhan commented 6 months ago

Thanks for pointing this out. We have just uploaded the missing file load/prompt_library.json.

How do I resolve the DeepFloyd/IF-I-XL-v1.0 error?

GGGHSL commented 6 months ago

To use DeepFloyd IF you currently need to accept its usage conditions. To do so, make sure to have a Hugging Face account (login in the terminal by huggingface-cli login) and accept the license on the model card of DeepFloyd/IF-I-XL-v1.0. We've also updated the usage instruction, thanks.