s3nh commited on
Commit
5cc2d01
1 Parent(s): 9c2f3ae

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -0
README.md CHANGED
@@ -1,3 +1,60 @@
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
+ ### Zdzislaw Beksinski Art Diffusion Model
9
+
10
+ I present you fine tuned model of stable-diffusion-v1-5, which heavily based of
11
+ work of great artworks from Arcane.
12
+ Use the tokens **_arcane style_** in your prompts for the effect.
13
+
14
+ Model was trained using the diffusers library, which based on Dreambooth implementation.
15
+ Training steps included:
16
+
17
+ - prior preservation loss
18
+ - train-text-encoder fine tuning
19
+
20
+ ### 🧨 Diffusers
21
+
22
+ This model can be used just like any other Stable Diffusion model. For more information,
23
+ please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
24
+
25
+ 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]().
26
+
27
+ ```python
28
+ #!pip install diffusers transformers scipy torch
29
+ from diffusers import StableDiffusionPipeline
30
+ import torch
31
+ model_id = "s3nh/artwork-arcane-stable-diffusion"
32
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
33
+ pipe = pipe.to("cuda")
34
+ prompt = "Rain forest, arcane style"
35
+ image = pipe(prompt).images[0]
36
+ image.save("./example_output.png")
37
+ ```
38
+
39
+ # Gallery
40
+
41
+ ## Rain forest, arcane style
42
+ ![image](https://huggingface.co/s3nh/artwork-arcane-stable-diffusion/resolve/main/rain_forest_1.png)
43
+ ![image](https://huggingface.co/s3nh/artwork-arcane-stable-diffusion/resolve/main/rain_forest_2.png)
44
+
45
+
46
+ ## Car traffic, arcane style
47
+ ![image](https://huggingface.co/s3nh/artwork-arcane-stable-diffusion/resolve/main/traffic_jam_1.png)
48
+ ![image](https://huggingface.co/s3nh/artwork-arcane-stable-diffusion/resolve/main/traffic_jam_2.png)
49
+
50
+
51
+
52
+ ## License
53
+
54
+ This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
55
+ The CreativeML OpenRAIL License specifies:
56
+
57
+ 1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content
58
+ 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
59
+ 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)
60
+ [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)