quincyqiang
commited on
Commit
•
f3ad441
1
Parent(s):
9a7f37a
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
- wildcard
|
11 |
+
widget:
|
12 |
+
- text: wonderland,trees
|
13 |
+
---
|
14 |
+
|
15 |
+
# DreamBooth model for the dashdash concept trained by quincyqiang.
|
16 |
+
|
17 |
+
This is a Stable Diffusion model fine-tuned on the dashdash concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of dashdash wonderland**
|
18 |
+
|
19 |
+
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!
|
20 |
+
|
21 |
+
## Description
|
22 |
+
|
23 |
+
|
24 |
+
This is a Stable Diffusion model fine-tuned on `wonderland` images for the wildcard theme,
|
25 |
+
for the Hugging Face DreamBooth Hackathon, from the HF CN Community,
|
26 |
+
corporated with the HeyWhale.
|
27 |
+
|
28 |
+
|
29 |
+
## Usage
|
30 |
+
|
31 |
+
```python
|
32 |
+
from diffusers import StableDiffusionPipeline
|
33 |
+
|
34 |
+
pipeline = StableDiffusionPipeline.from_pretrained('quincyqiang/dashdash-wonderland-heywhale')
|
35 |
+
image = pipeline().images[0]
|
36 |
+
image
|
37 |
+
```
|