Commit
·
6de7428
1
Parent(s):
9244cee
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: creativeml-openrail-m
|
3 |
+
tags:
|
4 |
+
- pytorch
|
5 |
+
- diffusers
|
6 |
+
- stable-diffusion
|
7 |
+
- text-to-image
|
8 |
+
- diffusion-models-class
|
9 |
+
- dreambooth-hackathon
|
10 |
+
---
|
11 |
+
|
12 |
+
# DreamBooth model with special identifier for my pet rabbit, Nala.
|
13 |
+
|
14 |
+
This is a Stable Diffusion model fine-tuned with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of Nala the bunny in the Acropolis**
|
15 |
+
|
16 |
+
## Description
|
17 |
+
|
18 |
+
|
19 |
+
This is a Stable Diffusion model fine-tuned on images of my pet rabbit, Nala.
|
20 |
+
|
21 |
+
|
22 |
+
## Usage
|
23 |
+
|
24 |
+
```python
|
25 |
+
from diffusers import StableDiffusionPipeline
|
26 |
+
|
27 |
+
pipeline = StableDiffusionPipeline.from_pretrained('benlehrburger/animal-image-generation')
|
28 |
+
image = pipeline().images[0]
|
29 |
+
image
|
30 |
+
```
|