Skip to content

Commit 4e7fa2d

Browse files
authored
Merge pull request #1389 from bghira/features/pony-v7
Auraflow training support
2 parents 5cc9358 + 23e96bc commit 4e7fa2d

File tree

14 files changed

+3021
-35
lines changed

14 files changed

+3021
-35
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,14 @@ HiDream has not been tested on 16G cards, but with aggressive quantisation and p
198198

199199
Flux prefers being trained with multiple large GPUs but a single 16G card should be able to do it with quantisation of the transformer and text encoders.
200200

201+
### Auraflow
202+
203+
- A100-80G (Full tune with DeepSpeed)
204+
- A100-40G (LoRA, LoKr)
205+
- 3090 24G (LoRA, LoKr)
206+
- 4060 Ti 16G, 4070 Ti 16G, 3080 16G (int8, LoRA, LoKr)
207+
- 4070 Super 12G, 3080 10G, 3060 12GB (nf4, LoRA, LoKr)
208+
201209
### SDXL, 1024px
202210

203211
- A100-80G (EMA, large batches, LoRA @ insane batch sizes)

configure.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"deepfloyd",
3030
"omnigen",
3131
"hidream",
32+
"auraflow",
3233
],
3334
"lora": [
3435
"flux",
@@ -40,6 +41,7 @@
4041
"ltxvideo",
4142
"wan",
4243
"deepfloyd",
44+
"auraflow",
4345
],
4446
"controlnet": ["sdxl", "sd1x", "sd2x"],
4547
}
@@ -56,7 +58,10 @@
5658
"sana": "terminusresearch/sana-1.6b-1024px",
5759
"ltxvideo": "Lightricks/LTX-Video",
5860
"wan": "Wan-AI/Wan2.1-T2V-1.3B-Diffusers",
59-
"hidream": "HiDream-ai/HiDream-I1-Full"
61+
"hidream": "HiDream-ai/HiDream-I1-Full",
62+
"auraflow": "terminusresearch/auraflow-v0.3",
63+
"deepfloyd": "DeepFloyd/DeepFloyd-IF-I-XL-v1.0",
64+
"omnigen": "Shitao/OmniGen-v1-diffusers",
6065
}
6166

6267
default_cfg = {
@@ -70,6 +75,10 @@
7075
"hidream": 2.5,
7176
"wan": 4.0,
7277
"sana": 3.8,
78+
"omnigen": 3.2,
79+
"deepfloyd": 6.0,
80+
"sd2x": 7.0,
81+
"sd1x": 6.0,
7382
}
7483

7584
model_labels = {

0 commit comments

Comments
 (0)