Antiraedus
commited on
Commit
•
c0ec718
1
Parent(s):
d5f6a1c
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: a photo of a beautiful anime city in vioeva style
|
13 |
+
---
|
14 |
+
|
15 |
+
# DreamBooth model for the vioeva concept trained by Antiraedus on the Antiraedus/Violet-Evergarden dataset.
|
16 |
+
|
17 |
+
This is a Stable Diffusion model fine-tuned on the vioeva concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of a girl in vioeva style**
|
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 |
+
Violet Evergarden!!!!
|
23 |
+
Dataset [is located here](https://huggingface.co/datasets/Antiraedus/Violet-Evergarden)
|
24 |
+
|
25 |
+
|
26 |
+
This is a Stable Diffusion model fine-tuned on `style` images for the wildcard theme.
|
27 |
+
|
28 |
+
|
29 |
+
## Examples
|
30 |
+
"a photo of a beautiful anime city in vioeva style"
|
31 |
+
|
32 |
+
|
33 |
+
## Usage
|
34 |
+
|
35 |
+
```python
|
36 |
+
from diffusers import StableDiffusionPipeline
|
37 |
+
|
38 |
+
pipeline = StableDiffusionPipeline.from_pretrained('Antiraedus/Violet-Evergarden-Style')
|
39 |
+
image = pipeline().images[0]
|
40 |
+
image
|
41 |
+
```
|