[WIP] Bettter model card

#8
Files changed (1) hide show
  1. README.md +62 -4
README.md CHANGED
@@ -1,7 +1,65 @@
1
  ---
2
- license: creativeml-openrail-m
 
 
3
  tags:
4
- - stable-diffusion
5
- - text-to-image
6
- pinned: true
 
 
 
 
7
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: other
5
  tags:
6
+ - stable-diffusion
7
+ - stable-diffusion-diffusers
8
+ - text-to-image
9
+ - art
10
+ - artistic
11
+ - diffusers
12
+ inference: true
13
  ---
14
+
15
+ # Protogen_x3.4
16
+
17
+ Protogen was warm-started with [Stable Diffusion v1-5](https://huggingface.co/runwayml/stable-diffusion-v1-5) and fine-tuned on various high quality image datasets.
18
+ Version 3.4 continued training from [ProtoGen v2.2](https://huggingface.co/darkstorm2150/Protogen_v2.2_Official_Release) with added photorealism.
19
+
20
+ ## Space
21
+
22
+ We support a [Gradio](https://github.com/gradio-app/gradio) Web UI to run dreamlike-diffusion-1.0:
23
+ [![Open In Spaces](https://camo.githubusercontent.com/00380c35e60d6b04be65d3d94a58332be5cc93779f630bcdfc18ab9a3a7d3388/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f25463025394625413425393725323048756767696e67253230466163652d5370616365732d626c7565)](https://huggingface.co/spaces/akhaliq/dreamlike-diffusion-1.0)
24
+
25
+ ### CompVis
26
+
27
+ [Download dreamlike-diffusion-1.0.ckpt (2.13GB)](https://huggingface.co/dreamlike-art/dreamlike-diffusion-1.0/resolve/main/dreamlike-diffusion-1.0.ckpt)
28
+
29
+ ### 🧨 Diffusers
30
+
31
+ This model can be used just like any other Stable Diffusion model. For more information,
32
+ please have a look at the [Stable Diffusion Pipeline](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
33
+
34
+ ```python
35
+ from diffusers import StableDiffusionPipeline
36
+ import torch
37
+
38
+ prompt = (
39
+ "modelshoot style, (extremely detailed CG unity 8k wallpaper), full shot body photo of the most beautiful artwork in the world,"
40
+ "english medieval witch, black silk vale, pale skin, black silk robe, black cat, necromancy magic, medieval era,"
41
+ "photorealistic painting by Ed Blinkey, Atey Ghailan, Studio Ghibli, by Jeremy Mann, Greg Manchess, Antonio Moro, trending on ArtStation,"
42
+ "trending on CGSociety, Intricate, High Detail, Sharp focus, dramatic, photorealistic painting art by midjourney and greg rutkowski"
43
+ )
44
+
45
+ model_id = "dreamlike-art/dreamlike-diffusion-1.0"
46
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
47
+ pipe = pipe.to("cuda")
48
+
49
+ prompt = "dreamlikeart, a grungy woman with rainbow hair, travelling between dimensions, dynamic pose, happy, soft eyes and narrow chin, extreme bokeh, dainty figure, long hair straight down, torn kawaii shirt and baggy jeans, In style of by Jordan Grimmer and greg rutkowski, crisp lines and color, complex background, particles, lines, wind, concept art, sharp focus, vivid colors"
50
+ image = pipe(prompt).images[0]
51
+
52
+ image.save("./result.jpg")
53
+ ```
54
+
55
+ # License
56
+
57
+ This model is licesed under a **modified** CreativeML OpenRAIL-M license.
58
+
59
+ - **You can't host or use the model or its derivatives on websites/apps/etc., from which you earn, will earn, or plan to earn revenue or donations. If you want to, please email us at contact@dreamlike.art**
60
+ - **You are free to host the model card and files (Without any actual inference or finetuning) on both commercial and non-commercial websites/apps/etc. Please state the full model name (Dreamlike Diffusion 1.0) and include a link to the model card (https://huggingface.co/dreamlike-art/dreamlike-diffusion-1.0)**
61
+ - **You are free to host the model or its derivatives on completely non-commercial websites/apps/etc (Meaning you are not getting ANY revenue or donations). Please state the full model name (Dreamlike Diffusion 1.0) and include a link to the model card (https://huggingface.co/dreamlike-art/dreamlike-diffusion-1.0)**
62
+ - **You are free to use the outputs of the model or the outputs of the model's derivatives for commercial purposes in teams of 10 or less**
63
+ - You can't use the model to deliberately produce nor share illegal or harmful outputs or content
64
+ - 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
65
+ - You may re-distribute the weights. 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 **modified** CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully) Please read the full license here: https://huggingface.co/dreamlike-art/dreamlike-diffusion-1.0/blob/main/LICENSE.md