Open snowflakewang opened 1 month ago
In the _custum_3d_diffusion/custum_pipeline/unifield_pipelineimg2mvimg.py, There is an error related to
_noise_pred = self.unet(latent_model_input, t, encoder_hidden_states=image_embeddings, condition_latents=cond_latents, noisy_condition_input=False, cond_pixels_clip=imagepixels).sample.
The error is TypeError: forward() got an unexpected keyword argument 'condition_latents'.
I have used diffusers==0.27.2. And these arguments: condition_latents, noisy_condition_input, cond_pixels_clip, are quite unfamiliar in diffusers.
I want to know how to fix.
Thanks a lot!
@snowflakewang diffusers>=0.26.3 check requeriments, on 0.27.2 I guess this params aren't supported
In the _custum_3d_diffusion/custum_pipeline/unifield_pipelineimg2mvimg.py, There is an error related to
_noise_pred = self.unet(latent_model_input, t, encoder_hidden_states=image_embeddings, condition_latents=cond_latents, noisy_condition_input=False, cond_pixels_clip=imagepixels).sample.
The error is TypeError: forward() got an unexpected keyword argument 'condition_latents'.
I have used diffusers==0.27.2. And these arguments: condition_latents, noisy_condition_input, cond_pixels_clip, are quite unfamiliar in diffusers.
I want to know how to fix.
Thanks a lot!