Checkpoint step 402996
Browse files- training_config.json +58 -0
training_config.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"learning_rate": 0.0001,
|
| 3 |
+
"weight_decay": 0.01,
|
| 4 |
+
"betas": [
|
| 5 |
+
0.9,
|
| 6 |
+
0.95
|
| 7 |
+
],
|
| 8 |
+
"grad_clip": 1.0,
|
| 9 |
+
"optimizer": "adamw",
|
| 10 |
+
"warmup_steps": 500,
|
| 11 |
+
"total_steps": 417059,
|
| 12 |
+
"max_epochs": 100,
|
| 13 |
+
"lr_scheduler": "constant",
|
| 14 |
+
"min_lr": 1e-06,
|
| 15 |
+
"warmup_type": "linear",
|
| 16 |
+
"gradient_accumulation": 8,
|
| 17 |
+
"gradient_checkpointing": false,
|
| 18 |
+
"compile_mode": null,
|
| 19 |
+
"ema_decay": 0.9999,
|
| 20 |
+
"shift": 3.0,
|
| 21 |
+
"use_snr_weighting": true,
|
| 22 |
+
"snr_gamma": 5.0,
|
| 23 |
+
"use_huber_loss": true,
|
| 24 |
+
"huber_delta": 0.1,
|
| 25 |
+
"logit_normal_sampling": true,
|
| 26 |
+
"logit_mean": 0.0,
|
| 27 |
+
"logit_std": 1.0,
|
| 28 |
+
"enable_lune": true,
|
| 29 |
+
"lune_weight": 0.1,
|
| 30 |
+
"lune_warmup_steps": 1000,
|
| 31 |
+
"lune_dropout": 0.1,
|
| 32 |
+
"lune_mode": "cosine",
|
| 33 |
+
"enable_sol": true,
|
| 34 |
+
"sol_weight": 0.05,
|
| 35 |
+
"sol_warmup_steps": 2000,
|
| 36 |
+
"sol_dropout": 0.1,
|
| 37 |
+
"use_spatial_weighting": false,
|
| 38 |
+
"text_dropout": 0.1,
|
| 39 |
+
"checkpoint_dir": "./checkpoints",
|
| 40 |
+
"save_every_steps": 1562,
|
| 41 |
+
"keep_last_n_steps": 5,
|
| 42 |
+
"save_every_epochs": 1,
|
| 43 |
+
"keep_last_n_epochs": 3,
|
| 44 |
+
"log_every": 20,
|
| 45 |
+
"tensorboard_dir": "./logs",
|
| 46 |
+
"sample_every": 500,
|
| 47 |
+
"sample_prompts": [
|
| 48 |
+
"subject, object, a red cube on a blue sphere",
|
| 49 |
+
"subject, a golden retriever sitting on grass",
|
| 50 |
+
"subject, object, a coffee cup next to a laptop",
|
| 51 |
+
"subject, a woman with short hair smiling"
|
| 52 |
+
],
|
| 53 |
+
"sample_dir": "./samples",
|
| 54 |
+
"dtype": "torch.bfloat16",
|
| 55 |
+
"hf_repo_id": "AbstractPhil/tiny-flux-deep",
|
| 56 |
+
"upload_every_steps": 1562,
|
| 57 |
+
"upload_every_epochs": 0
|
| 58 |
+
}
|