All Questions
2 questions
1
vote
1
answer
239
views
Shapes mismatch while training diffusers/UNet2DConditionModel
I am trying to train diffusers/UNet2DConditionModel from scratch. Currently I have error on unet forwarding: mat1 and mat2 shapes cannot be multiplied (288x512 and 1280x512). I noticed that mat1 first ...
-2
votes
1
answer
715
views
I use Diffusers to train LoRA. Training images are my photos, but the result image is not like me
Here is my training code.
from accelerate.utils import write_basic_config
write_basic_config()
import os
os.environ["MODEL_NAME"] = "runwayml/stable-diffusion-v1-5"
os.environ[&...