We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
please explain thank you!
The text was updated successfully, but these errors were encountered:
there's a demo in readme. have a look
Sorry, something went wrong.
Where did you put the model?
I get this error
NameError Traceback (most recent call last) [<ipython-input-12-c66704109acf>](https://localhost:8080/#) in <cell line: 7>() 5 state_dict_path = os.path.join(pipeline_model_path,"unet", "/content/control-a-video/model/diffusion_pytorch_model.fp16.bin") 6 state_dict = torch.load(state_dict_path, map_location="cpu") ----> 7 video_controlnet_pipe.unet.load_2d_state_dict(state_dict=state_dict) # reload 2d model. NameError: name 'video_controlnet_pipe' is not defined
from this, what is the video_controlnet_pipe ?
import os import torch pipeline_model_path = "/content/control-a-video/model/diffusion_pytorch_model.fp16.binl" state_dict_path = os.path.join(pipeline_model_path,"unet", "/content/control-a-video/model/diffusion_pytorch_model.fp16.bin") state_dict = torch.load(state_dict_path, map_location="cpu") video_controlnet_pipe.unet.load_2d_state_dict(state_dict=state_dict) # reload 2d model.
No branches or pull requests
please explain
thank you!
The text was updated successfully, but these errors were encountered: