harpomaxx commited on
Commit
c787063
1 Parent(s): cc910fe

Update README.md

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