prithivMLmods
commited on
Commit
•
b9c4461
1
Parent(s):
4ebd9d8
Update README.md
Browse files
README.md
CHANGED
@@ -131,10 +131,50 @@ base_model: black-forest-labs/FLUX.1-dev
|
|
131 |
instance_prompt: chill guy
|
132 |
license: creativeml-openrail-m
|
133 |
---
|
134 |
-
# Flux-Chill-Guy-Zone
|
135 |
|
136 |
<Gallery />
|
137 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
|
139 |
## Trigger words
|
140 |
|
|
|
131 |
instance_prompt: chill guy
|
132 |
license: creativeml-openrail-m
|
133 |
---
|
134 |
+
# Flux-Chill-Guy-Zone [ He Can Do Anything ]
|
135 |
|
136 |
<Gallery />
|
137 |
|
138 |
+
**The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
|
139 |
+
|
140 |
+
## Model description
|
141 |
+
|
142 |
+
**prithivMLmods/Flux-Chill-Guy-Zone**
|
143 |
+
|
144 |
+
Image Processing Parameters
|
145 |
+
|
146 |
+
| Parameter | Value | Parameter | Value |
|
147 |
+
|---------------------------|--------|---------------------------|--------|
|
148 |
+
| LR Scheduler | constant | Noise Offset | 0.03 |
|
149 |
+
| Optimizer | AdamW | Multires Noise Discount | 0.1 |
|
150 |
+
| Network Dim | 64 | Multires Noise Iterations | 10 |
|
151 |
+
| Network Alpha | 32 | Repeat & Steps | 17 & 2600 |
|
152 |
+
| Epoch | 15 | Save Every N Epochs | 1 |
|
153 |
+
|
154 |
+
Labeling: florence2-en(natural language & English)
|
155 |
+
|
156 |
+
Total Images Used for Training : 18
|
157 |
+
|
158 |
+
## Best Dimensions
|
159 |
+
|
160 |
+
- 768 x 1024 (Best)
|
161 |
+
- 1024 x 1024 (Default)
|
162 |
+
|
163 |
+
## Setting Up
|
164 |
+
```python
|
165 |
+
import torch
|
166 |
+
from pipelines import DiffusionPipeline
|
167 |
+
|
168 |
+
base_model = "black-forest-labs/FLUX.1-dev"
|
169 |
+
pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
|
170 |
+
|
171 |
+
lora_repo = "prithivMLmods/Flux-Chill-Guy-Zone"
|
172 |
+
trigger_word = "chill guy"
|
173 |
+
pipe.load_lora_weights(lora_repo)
|
174 |
+
|
175 |
+
device = torch.device("cuda")
|
176 |
+
pipe.to(device)
|
177 |
+
```
|
178 |
|
179 |
## Trigger words
|
180 |
|