valhalla commited on
Commit
1077d86
1 Parent(s): ff52f97

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - stable-diffusion
6
+ - text-to-image
7
+ license: bigscience-bloom-rail-1.0
8
+ inference: false
9
+
10
+ ---
11
+
12
+ # stable-diffusion-wikiart
13
+
14
+ sd-wikiart-v2 is a stable diffusion model that has been fine-tuned on the [wikiart dataset](https://huggingface.co/datasets/fusing/wikiart_captions) to generate artistic images in different style and genres.
15
+
16
+ # Gradio
17
+
18
+ [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1i7HJlTzVPEirNedDV-TcR5Ok2_8QI6zC?usp=sharing)
19
+
20
+ <img src=https://cdn.discordapp.com/attachments/930559077170421800/1017265913231327283/unknown.png width=40% height=40%>
21
+
22
+ ## Model Description
23
+
24
+ The model originally used for fine-tuning is [Stable Diffusion V1-4](https://huggingface.co/CompVis/stable-diffusion-v1-4), which is a latent image diffusion model trained on [LAION2B-en](https://huggingface.co/datasets/laion/laion2B-en).
25
+
26
+ The current model has been fine-tuned with a learning rate of 1e-05 for 1 epoch on 81K text-image pairs from wikiart dataset. Only the attention layers of the model are fine-tuned
27
+
28
+ ## Training Data
29
+ TODO
30
+
31
+ ## License
32
+
33
+ This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
34
+ The CreativeML OpenRAIL License specifies:
35
+
36
+ 1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content
37
+ 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
38
+ 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)
39
+ [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)
40
+
41
+ ## Downstream Uses
42
+
43
+ This model can be used for entertainment purposes and as a generative art assistant.
44
+
45
+ ## Example Code
46
+
47
+ ```python
48
+ import torch
49
+ from diffusers import StableDiffusionPipeline
50
+
51
+ model_id = "valhalla/sd-wikiart-v2"
52
+ device = "cuda"
53
+
54
+ pipe = StableDiffusionPipeline.from_pretrained(
55
+ model_id,
56
+ torch_dtype=torch.float16,
57
+ )
58
+ pipe = pipe.to(device)
59
+
60
+ prompt = "a painting of eiffel tower in the style of impressionism"
61
+ with torch.autocast("cuda"):
62
+ image = pipe(prompt, guidance_scale=7.5).images[0]
63
+
64
+ image.save("eiffel_impressionism.png")
65
+ ```