dataautogpt3 commited on
Commit
e1b5aa4
1 Parent(s): 3c12586

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +80 -1
README.md CHANGED
@@ -1,3 +1,82 @@
1
  ---
2
- license: gpl
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pipeline_tag: text-to-image
3
+ widget:
4
+ - text: >-
5
+ Anime full body portrait of a swordsman holding his weapon in front of him. He is facing the camera with a fierce look on his face. Anime key visual (best quality, HD, ~+~aesthetic~+~:1.2)
6
+ output:
7
+ url: upscaled_image.png
8
+ license: gpl-3.0
9
  ---
10
+ <Gallery />
11
+ ## ProteusV0.4: The Style Update
12
+
13
+ This update enhances stylistic capabilities, similar to Midjourney's approach, rather than advancing prompt comprehension. Methods used do not infringe on any copyrighted material.
14
+
15
+ ## Proteus
16
+
17
+ 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.
18
+
19
+ 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.
20
+
21
+
22
+ ## Settings for ProteusV0.4
23
+
24
+ Use these settings for the best results with ProteusV0.4:
25
+
26
+ CFG Scale: Use a CFG scale of 8 to 7
27
+
28
+ Steps: 20 to 60 steps for more detail, 20 steps for faster results.
29
+
30
+ Sampler: DPM++ 2M SDE
31
+
32
+ Scheduler: Karras
33
+
34
+ Resolution: 1280x1280 or 1024x1024
35
+
36
+ please also consider using these keep words to improve your prompts:
37
+ best quality, HD, `~*~aesthetic~*~`.
38
+
39
+ 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
40
+
41
+ ## Use it with 🧨 diffusers
42
+ ```python
43
+ import torch
44
+ from diffusers import (
45
+ StableDiffusionXLPipeline,
46
+ KDPM2AncestralDiscreteScheduler,
47
+ AutoencoderKL
48
+ )
49
+
50
+ # Load VAE component
51
+ vae = AutoencoderKL.from_pretrained(
52
+ "madebyollin/sdxl-vae-fp16-fix",
53
+ torch_dtype=torch.float16
54
+ )
55
+
56
+ # Configure the pipeline
57
+ pipe = StableDiffusionXLPipeline.from_pretrained(
58
+ "dataautogpt3/ProteusV0.4",
59
+ vae=vae,
60
+ torch_dtype=torch.float16
61
+ )
62
+ pipe.scheduler = KDPM2AncestralDiscreteScheduler.from_config(pipe.scheduler.config)
63
+ pipe.to('cuda')
64
+
65
+ # Define prompts and generate image
66
+ prompt = "black fluffy gorgeous dangerous cat animal creature, large orange eyes, big fluffy ears, piercing gaze, full moon, dark ambiance, best quality, extremely detailed"
67
+ 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"
68
+
69
+ image = pipe(
70
+ prompt,
71
+ negative_prompt=negative_prompt,
72
+ width=1024,
73
+ height=1024,
74
+ guidance_scale=7,
75
+ num_inference_steps=20
76
+ ).images[0]
77
+ ```
78
+
79
+ please support the work I do through donating to me on:
80
+ https://www.buymeacoffee.com/DataVoid
81
+ or following me on
82
+ https://twitter.com/DataPlusEngine