darkstorm2150 patrickvonplaten commited on
Commit
0a71285
1 Parent(s): 52cb0a6

Add improved model card with examples and sections and link to space (#5)

Browse files

- Add improved model card with examples and sections and link to space (bae58710fdcf76648e66094ea98cda0e276bcb91)


Co-authored-by: Patrick von Platen <patrickvonplaten@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +46 -10
README.md CHANGED
@@ -1,25 +1,25 @@
1
  ---
2
- license: openrail
3
  language:
4
  - en
5
- library_name: diffusers
6
  tags:
 
 
7
  - text-to-image
 
 
 
 
 
8
  ---
9
 
10
- ProtoGen_X5.3 - One Step Closer to Reality
11
-
12
- Research Model
13
-
14
-
15
-
16
- This is ProtoGen_X3.4 revised (the original cocktail mix, with different route taken)
17
 
 
18
  Robodiffusion has been removed and 10% Dreamlike-PhotoReal V.2 added, the result is better sampling at 768px to 1024px of humans and surroundings, The results are immediate!!!
19
 
20
  Also this bad boy comes with a license, so do please read it, thank you!
21
 
22
- Model control
23
 
24
  Now its recommended that you add nude, naked to your negative prompts, its a horny model, well 10% but still....cant be too careful!
25
 
@@ -27,6 +27,42 @@ As for realism, you can use this template
27
 
28
  modelshoot style, (extremely detailed 8k wallpaper),a medium shot photo of a (what you want here), Intricate, High Detail, dramatic
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  License
31
 
32
  This model is licesed under a modified CreativeML OpenRAIL-M license.
 
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.3 - One Step Closer to Reality 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 continued fine-tuned from [darkstorm2150/Protogen_x3.4_Official_Release](https://huggingface.co/darkstorm2150/Protogen_x3.4_Official_Release)
18
  Robodiffusion has been removed and 10% Dreamlike-PhotoReal V.2 added, the result is better sampling at 768px to 1024px of humans and surroundings, The results are immediate!!!
19
 
20
  Also this bad boy comes with a license, so do please read it, thank you!
21
 
22
+ ## Model control
23
 
24
  Now its recommended that you add nude, naked to your negative prompts, its a horny model, well 10% but still....cant be too careful!
25
 
 
27
 
28
  modelshoot style, (extremely detailed 8k wallpaper),a medium shot photo of a (what you want here), Intricate, High Detail, dramatic
29
 
30
+ It should also be very "dreambooth-able", being able to generate high fidelity faces with a little amount of steps (see [dreambooth](https://github.com/huggingface/diffusers/tree/main/examples/dreambooth)).
31
+
32
+ ## Space
33
+
34
+ We support a [Gradio](https://github.com/gradio-app/gradio) Web UI:
35
+ [![Open In Spaces](https://camo.githubusercontent.com/00380c35e60d6b04be65d3d94a58332be5cc93779f630bcdfc18ab9a3a7d3388/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f25463025394625413425393725323048756767696e67253230466163652d5370616365732d626c7565)](https://huggingface.co/spaces/darkstorm2150/Stable-Diffusion-Protogen-webui)
36
+ ### CompVis
37
+
38
+ [Download ProtoGen_X5.3.ckpt) (5.98GB)](https://huggingface.co/darkstorm2150/Protogen_v5.3_Official_Release/blob/main/ProtoGen_X5.3.ckpt)
39
+
40
+ ### 🧨 Diffusers
41
+
42
+ This model can be used just like any other Stable Diffusion model. For more information,
43
+ please have a look at the [Stable Diffusion Pipeline](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
44
+
45
+ ```python
46
+ from diffusers import StableDiffusionPipeline, DPMSolverMultistepScheduler
47
+ import torch
48
+
49
+ prompt = (
50
+ "modelshoot style, (extremely detailed CG unity 8k wallpaper), full shot body photo of the most beautiful artwork in the world, "
51
+ "english medieval witch, black silk vale, pale skin, black silk robe, black cat, necromancy magic, medieval era, "
52
+ "photorealistic painting by Ed Blinkey, Atey Ghailan, Studio Ghibli, by Jeremy Mann, Greg Manchess, Antonio Moro, trending on ArtStation, "
53
+ "trending on CGSociety, Intricate, High Detail, Sharp focus, dramatic, photorealistic painting art by midjourney and greg rutkowski"
54
+ )
55
+
56
+ model_id = "darkstorm2150/Protogen_v5.3_Official_Release"
57
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
58
+ pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)
59
+ pipe = pipe.to("cuda")
60
+
61
+ image = pipe(prompt, num_inference_steps=25).images[0]
62
+
63
+ image.save("./result.jpg")
64
+ ```
65
+
66
  License
67
 
68
  This model is licesed under a modified CreativeML OpenRAIL-M license.