Commit
·
dc1e29c
1
Parent(s):
d31bade
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: creativeml-openrail-m
|
3 |
+
tags:
|
4 |
+
- pytorch
|
5 |
+
- diffusers
|
6 |
+
- stable-diffusion
|
7 |
+
- text-to-image
|
8 |
+
- dreambooth-hackathon
|
9 |
+
- cat
|
10 |
+
widget:
|
11 |
+
- text: vishu
|
12 |
+
---
|
13 |
+
|
14 |
+
## Description
|
15 |
+
|
16 |
+
|
17 |
+
Model finetuned on the pictures of our cat named Vishu, made for the Dreambooth Hackathon
|
18 |
+
|
19 |
+
|
20 |
+
## Usage
|
21 |
+
|
22 |
+
```python
|
23 |
+
from diffusers import StableDiffusionPipeline
|
24 |
+
|
25 |
+
pipeline = StableDiffusionPipeline.from_pretrained('Apocalypse-19/dreambooth-vishu')
|
26 |
+
image = pipeline().images[0]
|
27 |
+
image
|
28 |
+
```
|