diffusers icon indicating copy to clipboard operation
diffusers copied to clipboard

Train a model on a prior trained model

Open charliewang789 opened this issue 3 years ago • 0 comments

I know it can support fine tune based on a pre-trained model,

pipe = StableDiffusionPipeline.from_pretrained("./stable-diffusion-v1-5") pipe = pipe.to("cuda")

This is a trained model from huggingface.

let's say I generated a new model - stable-diffusion-me-v1.

can I then train it based on this model with other dataset?

pipe = StableDiffusionPipeline.from_pretrained("./stable-diffusion-me-v1") pipe = pipe.to("cuda")

charliewang789 avatar Jan 18 '23 22:01 charliewang789