Apocalypse-19
commited on
Commit
•
88a8462
1
Parent(s):
e9a4886
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: creativeml-openrail-m
|
3 |
+
tags:
|
4 |
+
- pytorch
|
5 |
+
- diffusers
|
6 |
+
- stable-diffusion
|
7 |
+
- text-to-image
|
8 |
+
- dreambooth-hackathon
|
9 |
+
- landscape
|
10 |
+
widget:
|
11 |
+
- text: A photo of ggenshin landscape
|
12 |
+
---
|
13 |
+
|
14 |
+
# Dreambooth Model for Landscapes trained on images from Genshin Impact.
|
15 |
+
This is a Stable Diffusion model fine-tuned on the landscape concept with DreamBooth. It can be used by modifying the `instance_prompt`: **A photo of ggenshin landscape**
|
16 |
+
|
17 |
+
This model was created as part of the DreamBooth Hackathon 🔥.
|
18 |
+
|
19 |
+
## Description
|
20 |
+
|
21 |
+
|
22 |
+
Model finetuned on the pictures of Genshin Landscapes, made for the Dreambooth Hackathon,
|
23 |
+
finetuned on Stable diffusion 2.1 Base.
|
24 |
+
|
25 |
+
|
26 |
+
## Usage
|
27 |
+
|
28 |
+
```python
|
29 |
+
from diffusers import StableDiffusionPipeline
|
30 |
+
|
31 |
+
pipeline = StableDiffusionPipeline.from_pretrained('Apocalypse-19/Genshin-Landscape-Diffusion')
|
32 |
+
image = pipeline().images[0]
|
33 |
+
image
|
34 |
+
```
|