You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't want to perform conditional embedding on the UNet network,It means not passing in the encoder_hidden_state parameter when predicting noise.What should I do? Do I need to modify the [UNet2DConditionModel] source code?
Thank you for your answer, I see that pre trained stable diffusion models are all using UNet2DConditionModel instead of UNet2DModel. Can I use UNet2DModel for latents space?
This seems to require retraining rather than fine-tuning?
If Stable Diffusion models' UNet2DConditionModel have trained with encoder_hidden_states parameter, then I think we have to use it, otherwise it would be another network. Does LDMPipeline help?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
predict the noise residual
model_pred = unet(noisy_latents, timesteps, encoder_hidden_states).sample
I don't want to perform conditional embedding on the UNet network,It means not passing in the encoder_hidden_state parameter when predicting noise.What should I do? Do I need to modify the [UNet2DConditionModel] source code?
All reactions