After run diffusers/scripts/convert_zero123_to_diffusers.py , i got a dir like this.
But when i want to use it in diffusers like this, it is report an Error.
pipe = StableDiffusionControlNetImg2ImgPipeline.from_pretrained( "./model/zero1to3", controlnet=controlnet, torch_dtype=torch.float16, local_files_only = True )
ValueError: Pipeline <class 'diffusers.pipelines.controlnet.pipeline_controlnet_img2img.StableDiffusionControlNetImg2ImgPipeline'> expected {'text_encoder', 'scheduler', 'feature_extractor', 'safety_checker', 'vae', 'controlnet', 'unet', 'tokenizer'}, but only {'scheduler', 'feature_extractor', 'controlnet', 'vae', 'unet'} were passed.
After run diffusers/scripts/convert_zero123_to_diffusers.py , i got a dir like this. But when i want to use it in diffusers like this, it is report an Error.
pipe = StableDiffusionControlNetImg2ImgPipeline.from_pretrained( "./model/zero1to3", controlnet=controlnet, torch_dtype=torch.float16, local_files_only = True )
Any help would be greatly appreciated!