Commit
·
9b6cb91
1
Parent(s):
05588f7
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
- science
|
11 |
+
widget:
|
12 |
+
- text: a zoomed out photo of a daffodil, with tryp22 pattern in the background, HD
|
13 |
+
---
|
14 |
+
|
15 |
+
# DreamBooth model for the tryp22 concept trained by nazianafis on the nazianafis/trypa22 dataset.
|
16 |
+
|
17 |
+
This is a Stable Diffusion model fine-tuned on the tryp22 concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a tryp22 pattern**
|
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 22 images that might trigger Trypophibia in some, for the science theme.
|
25 |
+
|
26 |
+
Trypophobia refers to a strong fear or disgust of closely packed holes. The name combines the Greek words “trypa” (punching or drilling holes) and “phobia” (fear or aversion).
|
27 |
+
|
28 |
+
The exact cause of trypophobia is unknown, as research in this area is limited.
|
29 |
+
|
30 |
+
|
31 |
+
## Usage
|
32 |
+
|
33 |
+
```python
|
34 |
+
from diffusers import StableDiffusionPipeline
|
35 |
+
|
36 |
+
pipeline = StableDiffusionPipeline.from_pretrained('nazianafis/tryp22-pattern')
|
37 |
+
image = pipeline().images[0]
|
38 |
+
image
|
39 |
+
```
|