dataautogpt3
commited on
Commit
•
bef080b
1
Parent(s):
d2f3a06
Update README.md
Browse files
README.md
CHANGED
@@ -59,4 +59,38 @@ widget:
|
|
59 |
|
60 |
---
|
61 |
<Gallery />
|
62 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
|
60 |
---
|
61 |
<Gallery />
|
62 |
+
## ProteusV0.1
|
63 |
+
ProteusV0.1 is currently my best model to date.
|
64 |
+
|
65 |
+
|
66 |
+
ProteusV0.1 uses OpenDalleV1.1 as a substantial base to work from in terms of an untuned base model. It further refines said prompt adherence and stylistic capabilities to a measurable degree.
|
67 |
+
tuned on 10k unique examples of high-quality captioned images generated from dalle3 and then further refined using 220k GPTV captioned non-copyright stock images with some anime through in here and there.
|
68 |
+
|
69 |
+
ProteusV0.1 has a noticeable improvement in facial features and skin detailing. while still keeping similar or slightly improved levels of surrealism, anime, and cartoonish styles.
|
70 |
+
|
71 |
+
## Settings for ProteusV0.1
|
72 |
+
|
73 |
+
Use these settings for the best results with OpenDalle v1.1:
|
74 |
+
|
75 |
+
CFG Scale: Use a CFG scale of 8 to 7
|
76 |
+
|
77 |
+
Steps: 20 to 35 steps for more detail, 20 steps for faster results.
|
78 |
+
|
79 |
+
Sampler: DPM 2M++
|
80 |
+
|
81 |
+
Scheduler: Karras
|
82 |
+
|
83 |
+
|
84 |
+
## Use it with 🧨 diffusers
|
85 |
+
```python
|
86 |
+
from diffusers import AutoPipelineForText2Image
|
87 |
+
import torch
|
88 |
+
|
89 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('dataautogpt3/ProteusV0.1', torch_dtype=torch.float16).to('cuda')
|
90 |
+
image = pipeline('black fluffy gorgeous dangerous cat animal creature, large orange eyes, big fluffy ears, piercing gaze, full moon, dark ambiance, best quality, extremely detailed').images[0]
|
91 |
+
```
|
92 |
+
|
93 |
+
please support the work I do through donating to me on:
|
94 |
+
https://www.buymeacoffee.com/DataVoid
|
95 |
+
or
|
96 |
+
https://twitter.com/DataPlusEngine
|