Update README.md
Browse files
README.md
CHANGED
@@ -17,8 +17,6 @@ widget:
|
|
17 |
|
18 |
This is a Stable Diffusion model fine-tuned on the trpfrog concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of trpfrog**
|
19 |
|
20 |
-
This model was created as part of the DreamBooth Hackathon 🔥. Visit the [organisation page](https://huggingface.co/dreambooth-hackathon) for instructions on how to take part!
|
21 |
-
|
22 |
## Description
|
23 |
TrpFrog ([@Trpfrog](https://twitter.com/trpfrog?s=21&t=GcDGy74adYhOBYxX9HloOg)) is a famous Japanese Twitter comedian.
|
24 |
|
@@ -44,7 +42,8 @@ pipe = StableDiffusionPipeline.from_pretrained(
|
|
44 |
model_id, torch_dtype=torch.float16
|
45 |
).to(device)
|
46 |
|
47 |
-
image =
|
|
|
48 |
```
|
49 |
|
50 |
## Generated Images
|
|
|
17 |
|
18 |
This is a Stable Diffusion model fine-tuned on the trpfrog concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of trpfrog**
|
19 |
|
|
|
|
|
20 |
## Description
|
21 |
TrpFrog ([@Trpfrog](https://twitter.com/trpfrog?s=21&t=GcDGy74adYhOBYxX9HloOg)) is a famous Japanese Twitter comedian.
|
22 |
|
|
|
42 |
model_id, torch_dtype=torch.float16
|
43 |
).to(device)
|
44 |
|
45 |
+
image = pipe(prompt).images[0]
|
46 |
+
image.save("trpfrog.jpg")
|
47 |
```
|
48 |
|
49 |
## Generated Images
|