patrickvonplaten commited on
Commit
c3310ed
1 Parent(s): 76321e6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +66 -1
README.md CHANGED
@@ -1,3 +1,68 @@
1
  ---
2
- license: openrail
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - stable-diffusion
6
+ - stable-diffusion-diffusers
7
+ - text-to-image
8
+ - art
9
+ - artistic
10
+ - diffusers
11
+ inference: true
12
+ license: creativeml-openrail-m
13
  ---
14
+
15
+ # Protogen_v5.8 by [darkstorm2150](https://instagram.com/officialvictorespinoza)
16
+
17
+ Protogen was warm-started with [Stable Diffusion v1-5](https://huggingface.co/runwayml/stable-diffusion-v1-5) and
18
+ is rebuilt using dreamlikePhotoRealV2.ckpt as a core, adding small amounts during merge checkpoints.
19
+
20
+ ## Space
21
+
22
+ We support a [Gradio](https://github.com/gradio-app/gradio) Web UI:
23
+ [![Open In Spaces](https://camo.githubusercontent.com/00380c35e60d6b04be65d3d94a58332be5cc93779f630bcdfc18ab9a3a7d3388/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f25463025394625413425393725323048756767696e67253230466163652d5370616365732d626c7565)](https://huggingface.co/spaces/darkstorm2150/Stable-Diffusion-Protogen-webui)
24
+ ### CompVis
25
+
26
+ [Download ProtoGen_X5.8.ckpt) (7.2GB)](https://huggingface.co/darkstorm2150/Protogen_v5.8_Official_Release/blob/main/ProtoGen_X5.8.ckpt)
27
+
28
+ ### 🧨 Diffusers
29
+
30
+ This model can be used just like any other Stable Diffusion model. For more information,
31
+ please have a look at the [Stable Diffusion Pipeline](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
32
+
33
+ ```python
34
+ from diffusers import StableDiffusionPipeline, DPMSolverMultistepScheduler
35
+ import torch
36
+
37
+ prompt = (
38
+ "modelshoot style, (extremely detailed CG unity 8k wallpaper), full shot body photo of the most beautiful artwork in the world, "
39
+ "english medieval witch, black silk vale, pale skin, black silk robe, black cat, necromancy magic, medieval era, "
40
+ "photorealistic painting by Ed Blinkey, Atey Ghailan, Studio Ghibli, by Jeremy Mann, Greg Manchess, Antonio Moro, trending on ArtStation, "
41
+ "trending on CGSociety, Intricate, High Detail, Sharp focus, dramatic, photorealistic painting art by midjourney and greg rutkowski"
42
+ )
43
+
44
+ model_id = "darkstorm2150/Protogen_v5.8_Official_Release"
45
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
46
+ pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)
47
+ pipe = pipe.to("cuda")
48
+
49
+ image = pipe(prompt, num_inference_steps=25).images[0]
50
+
51
+ image.save("./result.jpg")
52
+ ```
53
+
54
+ License
55
+
56
+ This model is licesed under a modified CreativeML OpenRAIL-M license.
57
+
58
+ You are not allowed to host, finetune, or do inference with the model or its derivatives on websites/apps/etc. If you want to, please email us at contact@dreamlike.art
59
+
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 Photoreal 2.0) and include the license as well as a link to the model card (https://huggingface.co/dreamlike-art/dreamlike-photoreal-2.0)
61
+
62
+ You are free to use the outputs (images) of the model for commercial purposes in teams of 10 or less
63
+
64
+ You can't use the model to deliberately produce nor share illegal or harmful outputs or content
65
+
66
+ 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
67
+
68
+ 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-photoreal-2.0/blob/main/LICENSE.md