Update README.md
Browse files
README.md
CHANGED
@@ -29,7 +29,7 @@ model_id = "CompVis/stable-diffusion-v1-4"
|
|
29 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
30 |
pipe = pipe.to(device)
|
31 |
|
32 |
-
diffuser_training.load_model(pipe.text_encoder, pipe.tokenizer, pipe.unet, '
|
33 |
|
34 |
prompt = "<new1> cat swimming in a pool"
|
35 |
images = pipe(prompt, num_inference_steps=200, guidance_scale=6., eta=1.).images
|
|
|
29 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
30 |
pipe = pipe.to(device)
|
31 |
|
32 |
+
diffuser_training.load_model(pipe.text_encoder, pipe.tokenizer, pipe.unet, 'cat.bin')
|
33 |
|
34 |
prompt = "<new1> cat swimming in a pool"
|
35 |
images = pipe(prompt, num_inference_steps=200, guidance_scale=6., eta=1.).images
|