dataautogpt3 commited on
Commit
090d156
1 Parent(s): a3d292b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +74 -1
README.md CHANGED
@@ -1,3 +1,76 @@
1
  ---
2
- license: gpl
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pipeline_tag: text-to-image
3
+ license: gpl-3.0
4
  ---
5
+ <Gallery />
6
+ ## ProteusV0.4: The Style Update Lightning Edition
7
+
8
+ This update enhances stylistic capabilities, similar to Midjourney's approach, rather than advancing prompt comprehension. Methods used do not infringe on any copyrighted material.
9
+
10
+ ## Proteus
11
+
12
+ Proteus serves as a sophisticated enhancement over OpenDalleV1.1, leveraging its core functionalities to deliver superior outcomes. Key areas of advancement include heightened responsiveness to prompts and augmented creative capacities. To achieve this, it was fine-tuned using approximately 220,000 GPTV captioned images from copyright-free stock images (with some anime included), which were then normalized. Additionally, DPO (Direct Preference Optimization) was employed through a collection of 10,000 carefully selected high-quality, AI-generated image pairs.
13
+
14
+ In pursuit of optimal performance, numerous LORA (Low-Rank Adaptation) models are trained independently before being selectively incorporated into the principal model via dynamic application methods. These techniques involve targeting particular segments within the model while avoiding interference with other areas during the learning phase. Consequently, Proteus exhibits marked improvements in portraying intricate facial characteristics and lifelike skin textures, all while sustaining commendable proficiency across various aesthetic domains, notably surrealism, anime, and cartoon-style visualizations.
15
+
16
+
17
+ ## Settings for ProteusV0.4-Lightning
18
+ Use these settings for the best results with ProteusV0.4-Lightning :
19
+
20
+ CFG Scale: Use a CFG scale of 1 to 2
21
+
22
+ Steps: 4 to 10 steps for more detail, 8 steps for faster results.
23
+
24
+ Sampler: eular
25
+
26
+ Scheduler: normal
27
+
28
+ Resolution: 1280x1280 or 1024x1024
29
+
30
+ please also consider using these keep words to improve your prompts:
31
+ best quality, HD, `~*~aesthetic~*~`.
32
+
33
+ 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
34
+
35
+ ## Use it with 🧨 diffusers
36
+ ```python
37
+ import torch
38
+ from diffusers import (
39
+ StableDiffusionXLPipeline,
40
+ EulerAncestralDiscreteScheduler,
41
+ AutoencoderKL
42
+ )
43
+
44
+ # Load VAE component
45
+ vae = AutoencoderKL.from_pretrained(
46
+ "madebyollin/sdxl-vae-fp16-fix",
47
+ torch_dtype=torch.float16
48
+ )
49
+
50
+ # Configure the pipeline
51
+ pipe = StableDiffusionXLPipeline.from_pretrained(
52
+ "dataautogpt3/ProteusV0.4-Lightning",
53
+ vae=vae,
54
+ torch_dtype=torch.float16
55
+ )
56
+ pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
57
+ pipe.to('cuda')
58
+
59
+ # Define prompts and generate image
60
+ prompt = "black fluffy gorgeous dangerous cat animal creature, large orange eyes, big fluffy ears, piercing gaze, full moon, dark ambiance, best quality, extremely detailed"
61
+ 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"
62
+
63
+ image = pipe(
64
+ prompt,
65
+ negative_prompt=negative_prompt,
66
+ width=1024,
67
+ height=1024,
68
+ guidance_scale=2,
69
+ num_inference_steps=8
70
+ ).images[0]
71
+ ```
72
+
73
+ please support the work I do through donating to me on:
74
+ https://www.buymeacoffee.com/DataVoid
75
+ or following me on
76
+ https://twitter.com/DataPlusEngine