OSError: /CompVis/stable-diffusion-v1-4/ does not appear to have a file named config.json.
I downloaded the model file to my local directory and loaded it from there, throwing this error“ /CompVis/stable-diffusion-v1-4-fp16/ does not appear to have a file named config.json”. My transformers library is the latest version and my code is as follows:
HfFolder.save_token("xxxx")
model_path = "/xxx/"
config = AutoConfig.from_pretrained(model_path)
pipe = StableDiffusionPipeline.from_pretrained(model_path, use_auth_token=True,config=config)
Can anyone tell me how to solve this issue?
@kafai-chan Hey! I can't see your comment because it's hidden. Could you tell me what you replied?
@Kayell Hey! I have the same issue. I have researched the issue online and someone said it can be solved by updating the transformers to the latest version. But I have the version of 4.36.0 and it still happened. Do you solve the question? If you've worked it out, could you please tell me the solution?
Hi, I have solved the issue. The problem is I didn't log in to the huggingface. I use the command huggingface-cli login and the pretrained model can be downloaded successfully.