Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
tags:
|
4 |
+
- pytorch
|
5 |
+
- diffusers
|
6 |
+
- dreambooth
|
7 |
+
---
|
8 |
+
|
9 |
+
# Model Card for Dreambooth
|
10 |
+
|
11 |
+
This model is a diffusion model for unconditional image generation of my cute pet dog Pintu. The token to use is sks .
|
12 |
+
These are the images on which the dreambooth model is trained on
|
13 |
+
|
14 |
+
![sks 0](https://huggingface.co/prajwal13/pintu_dreambooth/resolve/main/concept_images/IMG_20211119_102937.jpg)![sks 1](https://huggingface.co/prajwal13/pintu_dreambooth/resolve/main/concept_images/IMG_20221026_091617.jpg)![sks 2](https://huggingface.co/prajwal13/pintu_dreambooth/resolve/main/concept_images/IMG_20221026_091644.jpg)![sks 3](https://huggingface.co/prajwal13/pintu_dreambooth/resolve/main/concept_images/IMG-20210609-WA0002.jpeg)![sks 4](https://huggingface.co/prajwal13/pintu_dreambooth/resolve/main/concept_images/IMG-20220612-WA0017.jpg)![sks 5](https://huggingface.co/prajwal13/pintu_dreambooth/resolve/main/concept_images/IMG-20220612-WA0006.jpg)
|
15 |
+
|
16 |
+
## Usage
|
17 |
+
|
18 |
+
```python
|
19 |
+
from diffusers import StableDiffusionPipeline
|
20 |
+
|
21 |
+
pipeline = StableDiffusionPipeline.from_pretrained(prajwal13/pintu_dreambooth)
|
22 |
+
image = pipeline('a photo of sks dog').images[0]
|
23 |
+
image
|
24 |
+
```
|