dataautogpt3 commited on
Commit
f504490
1 Parent(s): 93c8a63

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +134 -0
README.md CHANGED
@@ -1,3 +1,137 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ pipeline_tag: text-to-image
4
+ widget:
5
+ - text: >-
6
+ black fluffy gorgeous dangerous cat animal creature, large orange eyes,
7
+ big fluffy ears, piercing gaze, full moon, dark ambiance, best quality,
8
+ extremely detailed
9
+ output:
10
+ url: ComfyUI_02614_.png
11
+ - text: >-
12
+ (impressionistic realism by csybgh), a 50 something male, working in
13
+ banking, very short dyed dark curly balding hair, Afro-Asiatic ancestry,
14
+ talks a lot but listens poorly, stuck in the past, wearing a suit, he has
15
+ a certain charm, bronze skintone, sitting in a bar at night, he is smoking
16
+ and feeling cool, drunk on plum wine, masterpiece, 8k, hyper detailed,
17
+ smokey ambiance, perfect hands AND fingers
18
+ output:
19
+ url: 2024-01-18-140016_0_01_02_03_04.png
20
+ - text: >-
21
+ high quality pixel art, a pixel art silhouette of an anime space-themed girl in a space-punk steampunk style, lying in her bed by the window of a spaceship, smoking, with a rustic feel. The image should embody epic portraiture and double exposure, featuring an isolated landscape visible through the window. The colors should primarily be dynamic and action-packed, with a strong use of negative space. The entire artwork should be in pixel art style, emphasizing the characters shape and set against a white background. Silhouette
22
+ output:
23
+ url: aaaaaaaaaaaaa.png
24
+ - text: >-
25
+ The image features an older man, a long white beard and mustache, He has a stern expression, giving the impression of a wise and experienced individual. The mans beard and mustache are prominent, adding to his distinguished appearance. The close-up shot of the mans face emphasizes his facial features and the intensity of his gaze.
26
+ output:
27
+ url: 2024-01-18-140752_0_01_02.png
28
+ - text: >-
29
+ Super Closeup Portrait, action shot, Profoundly dark whitish meadow, glass
30
+ flowers, Stains, space grunge style, Jeanne d'Arc wearing White Olive
31
+ green used styled Cotton frock, Wielding thin silver sword, Sci-fi vibe,
32
+ dirty, noisy, Vintage monk style, very detailed, hd
33
+ output:
34
+ url: 2024-01-18-135912_0_01.png
35
+ - text: >-
36
+ cinematic film still of Kodak Motion Picture Film: (Sharp Detailed Image)
37
+ An Oscar winning movie for Best Cinematography a woman in a kimono
38
+ standing on a subway train in Japan Kodak Motion Picture Film Style,
39
+ shallow depth of field, vignette, highly detailed, high budget, bokeh,
40
+ cinemascope, moody, epic, gorgeous, film grain, grainy
41
+ output:
42
+ url: 2024-01-18-140403_0_01_02_03.png
43
+ - text: >-
44
+ in the style of artgerm, comic style,3D model, mythical seascape, negative
45
+ space, space quixotic dreams, temporal hallucination, psychedelic,
46
+ mystical, intricate details, very bright neon colors, (vantablack
47
+ background:1.5), pointillism, pareidolia, melting, symbolism, very high
48
+ contrast, chiaroscuro
49
+ parameters:
50
+ negative_prompt: >-
51
+ bad quality, bad anatomy, worst quality, low quality, low resolutions,
52
+ extra fingers, blur, blurry, ugly, wrongs proportions, watermark, image
53
+ artifacts, lowres, ugly, jpeg artifacts, deformed, noisy image
54
+ output:
55
+ url: ComfyUI_02698_.png
56
+ - text: 1980s anime portrait of a character glitching. His face is separated from his body by heavy static. His face is deformed by pain. Dream-like, analog horror, glitch, terrifying
57
+ output:
58
+ url: GEH0sZIXAAABVsj.jpeg
59
+ - text: Text Logo Proteus (best quality, HD, ~*~aesthetic~*~:1)
60
+ output:
61
+ url: ComfyUI_02778_.png
62
+
63
  ---
64
+ <Gallery />
65
+ ## ProteusV0.2
66
+
67
+ merged with RealCartoonXL to fix issues with inability to understand tags related to anime or cartoon styles at just a weight of 0.5% out of 100% using custom scripts with slerp like methods.
68
+
69
+ ## Settings for ProteusV0.2
70
+
71
+ Use these settings for the best results with ProteusV0.2:
72
+
73
+ CFG Scale: Use a CFG scale of 8 to 7
74
+
75
+ Steps: 20 to 40 steps for more detail, 20 steps for faster results.
76
+
77
+ Sampler: DPM++ 3M SDE
78
+
79
+ Scheduler: Karras
80
+
81
+ please also consider using these keep words to improve your prompts:
82
+ best quality, HD, "~*~aesthetic~*~".
83
+
84
+ if you are having trouble coming up with prompts you can use this GPT I put together to help you refine the prompt. https://chat.openai.com/g/g-RziQNoydR-diffusion-master
85
+
86
+ ## Use it with 🧨 diffusers
87
+ ```python
88
+ import torch
89
+ from diffusers import (
90
+ StableDiffusionXLPipeline,
91
+ KDPM2AncestralDiscreteScheduler,
92
+ AutoencoderKL
93
+ )
94
+
95
+ # Load VAE component
96
+ vae = AutoencoderKL.from_pretrained(
97
+ "madebyollin/sdxl-vae-fp16-fix",
98
+ torch_dtype=torch.float16
99
+ )
100
+
101
+ # Configure the pipeline
102
+ pipe = StableDiffusionXLPipeline.from_pretrained(
103
+ "dataautogpt3/ProteusV0.2",
104
+ vae=vae,
105
+ torch_dtype=torch.float16
106
+ )
107
+ pipe.scheduler = KDPM2AncestralDiscreteScheduler.from_config(pipe.scheduler.config)
108
+ pipe.to('cuda')
109
+
110
+ # Define prompts and generate image
111
+ prompt = "black fluffy gorgeous dangerous cat animal creature, large orange eyes, big fluffy ears, piercing gaze, full moon, dark ambiance, best quality, extremely detailed"
112
+ negative_prompt = "nsfw, bad quality, bad anatomy, worst quality, low quality, low resolutions, extra fingers, blur, blurry, ugly, wrongs proportions, watermark, image artifacts, lowres, ugly, jpeg artifacts, deformed, noisy image"
113
+
114
+ image = pipe(
115
+ prompt,
116
+ negative_prompt=negative_prompt,
117
+ width=1024,
118
+ height=1024,
119
+ guidance_scale=7,
120
+ num_inference_steps=20
121
+ ).images[0]
122
+ ```
123
+ You are free to:
124
+
125
+ Share — copy and redistribute the material in any medium or format for any purpose. this model does not premit commercial use without direct consultation from the author.
126
+
127
+ Adapt — remix, transform, and build upon the material for any purpose. this model does not permit commercial use without direct consultation from the author.
128
+
129
+ The licensor cannot revoke these freedoms as long as you follow the license terms.
130
+
131
+ Under the following terms:
132
+
133
+ Attribution — You must give appropriate credit , provide a link to the license, and indicate if changes were made . You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
134
+ please support the work I do through donating to me on:
135
+ https://www.buymeacoffee.com/DataVoid
136
+ or following me on
137
+ https://twitter.com/DataPlusEngine