s3nh commited on
Commit
209b150
1 Parent(s): 41ab31d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +67 -0
README.md CHANGED
@@ -1,3 +1,70 @@
1
  ---
2
  license: creativeml-openrail-m
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: creativeml-openrail-m
3
+ tags:
4
+ - stable-diffusion
5
+ - text-to-image
6
  ---
7
+
8
+ Buy me a coffee if you like this project ;)
9
+ <a href="https://www.buymeacoffee.com/s3nh"><img src="https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-1.svg" alt=""></a>
10
+
11
+ ### Arcane based Artwork Diffusion Model
12
+
13
+ I present you fine tuned model of stable-diffusion-v1-5, which heavily based of
14
+ work of great artworks from Legend of Zelda: Breath of The Wild.
15
+ Use the tokens **_botw style_** in your prompts for the effect.
16
+
17
+ Model was trained using the diffusers library, which based on Dreambooth implementation.
18
+ Training steps included:
19
+
20
+ - prior preservation loss
21
+ - train-text-encoder fine tuning
22
+
23
+ ### 🧨 Diffusers
24
+
25
+ This model can be used just like any other Stable Diffusion model. For more information,
26
+ please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
27
+
28
+ You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().
29
+
30
+ ```python
31
+ #!pip install diffusers transformers scipy torch
32
+ from diffusers import StableDiffusionPipeline
33
+ import torch
34
+ model_id = "s3nh/s3nh/zelda-botw-stable-diffusion"
35
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
36
+ pipe = pipe.to("cuda")
37
+ prompt = "Rain forest, botw style"
38
+ image = pipe(prompt).images[0]
39
+ image.save("./example_output.png")
40
+ ```
41
+
42
+ # Gallery
43
+
44
+ ## Grumpy cat, botw style
45
+
46
+ <img src = "https://huggingface.co/s3nh/zelda-botw-stable-diffusion/resolve/main/grumpy cat0.png">
47
+
48
+ <img src = "https://huggingface.co/s3nh/zelda-botw-stable-diffusion/resolve/main/grumpy cat1.png">
49
+
50
+ <img src = "https://huggingface.co/s3nh/zelda-botw-stable-diffusion/resolve/main/grumpy cat2.png">
51
+
52
+ <img src = "https://huggingface.co/s3nh/zelda-botw-stable-diffusion/resolve/main/grumpy cat3.png">
53
+
54
+
55
+
56
+ ## Landscape, botw style
57
+ ![image](https://huggingface.co/s3nh/zelda-botw-stable-diffusion/resolve/main/landscape0.png)
58
+ ![image](https://huggingface.co/s3nh/zelda-botw-stable-diffusion/resolve/main/landscape1.png)
59
+ ![image](https://huggingface.co/s3nh/zelda-botw-stable-diffusion/resolve/main/landscape2.png)
60
+ ![image](https://huggingface.co/s3nh/zelda-botw-stable-diffusion/resolve/main/landscape3.png)
61
+
62
+ ## License
63
+
64
+ This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
65
+ The CreativeML OpenRAIL License specifies:
66
+
67
+ 1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content
68
+ 2. The authors claims no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in the license
69
+ 3. You may re-distribute the weights and use the model commercially and/or as a service. If you do, please be aware you have to include the same use restrictions as the ones in the license and share a copy of the CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully)
70
+ [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)