File size: 14,920 Bytes
4839ac2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
{
  "__version": 10,
  "training_method": "LORA",
  "model_type": "FLUX_2",
  "debug_mode": false,
  "debug_dir": "debug",
  "workspace_dir": "workspace/run",
  "cache_dir": "workspace-cache/run",
  "tensorboard": true,
  "tensorboard_expose": false,
  "tensorboard_always_on": false,
  "tensorboard_port": 6006,
  "validation": false,
  "validate_after": 1,
  "validate_after_unit": "EPOCH",
  "continue_last_backup": false,
  "prevent_overwrites": false,
  "include_train_config": "NONE",
  "multi_gpu": false,
  "device_indexes": "",
  "gradient_reduce_precision": "FLOAT_32_STOCHASTIC",
  "fused_gradient_reduce": true,
  "async_gradient_reduce": true,
  "async_gradient_reduce_buffer": 100,
  "base_model_name": "black-forest-labs/FLUX.2-klein-base-9B",
  "output_dtype": "BFLOAT_16",
  "output_model_format": "SAFETENSORS",
  "output_model_destination": "models/fk9_[person_to_train]_v2_onetrainer.safetensors",
  "gradient_checkpointing": "ON",
  "enable_async_offloading": true,
  "enable_activation_offloading": true,
  "layer_offload_fraction": 0.0,
  "force_circular_padding": false,
  "compile": true,
  "concept_file_name": "training_concepts/concepts.json",
  "concepts": [
    {
      "__version": 2,
      "image": {
        "__version": 0,
        "enable_crop_jitter": true,
        "enable_random_flip": false,
        "enable_fixed_flip": false,
        "enable_random_rotate": false,
        "enable_fixed_rotate": false,
        "random_rotate_max_angle": 0.0,
        "enable_random_brightness": false,
        "enable_fixed_brightness": false,
        "random_brightness_max_strength": 0.0,
        "enable_random_contrast": false,
        "enable_fixed_contrast": false,
        "random_contrast_max_strength": 0.0,
        "enable_random_saturation": false,
        "enable_fixed_saturation": false,
        "random_saturation_max_strength": 0.0,
        "enable_random_hue": false,
        "enable_fixed_hue": false,
        "random_hue_max_strength": 0.0,
        "enable_resolution_override": false,
        "resolution_override": "512",
        "enable_random_circular_mask_shrink": false,
        "enable_random_mask_rotate_crop": false
      },
      "text": {
        "__version": 0,
        "prompt_source": "sample",
        "prompt_path": "",
        "enable_tag_shuffling": false,
        "tag_delimiter": ",",
        "keep_tags_count": 1,
        "tag_dropout_enable": false,
        "tag_dropout_mode": "FULL",
        "tag_dropout_probability": 0.0,
        "tag_dropout_special_tags_mode": "NONE",
        "tag_dropout_special_tags": "",
        "tag_dropout_special_tags_regex": false,
        "caps_randomize_enable": false,
        "caps_randomize_mode": "capslock, title, first, random",
        "caps_randomize_probability": 0.0,
        "caps_randomize_lowercase": false
      },
      "name": "",
      "path": "C:/Development/ai-toolkit/datasets/[person_to_train]",
      "seed": -469069486,
      "enabled": true,
      "type": "STANDARD",
      "include_subdirectories": false,
      "image_variations": 1,
      "text_variations": 1,
      "balancing": 1.0,
      "balancing_strategy": "REPEATS",
      "loss_weight": 1.0,
      "concept_stats": {}
    }
  ],
  "aspect_ratio_bucketing": true,
  "latent_caching": true,
  "clear_cache_before_training": true,
  "learning_rate_scheduler": "CONSTANT",
  "custom_learning_rate_scheduler": null,
  "scheduler_params": [],
  "learning_rate": 3e-5,
  "learning_rate_warmup_steps": 200.0,
  "learning_rate_cycles": 1.0,
  "learning_rate_min_factor": 0.0,
  "epochs": 100,
  "batch_size": 2,
  "gradient_accumulation_steps": 1,
  "ema": "OFF",
  "ema_decay": 0.999,
  "ema_update_step_interval": 5,
  "dataloader_threads": 1,
  "train_device": "cuda",
  "temp_device": "cpu",
  "train_dtype": "BFLOAT_16",
  "fallback_train_dtype": "BFLOAT_16",
  "enable_autocast_cache": true,
  "only_cache": false,
  "resolution": "512",
  "frames": "25",
  "mse_strength": 1.0,
  "mae_strength": 0.0,
  "log_cosh_strength": 0.0,
  "huber_strength": 0.0,
  "huber_delta": 1.0,
  "vb_loss_strength": 1.0,
  "loss_weight_fn": "CONSTANT",
  "loss_weight_strength": 5.0,
  "dropout_probability": 0.0,
  "loss_scaler": "NONE",
  "learning_rate_scaler": "NONE",
  "clip_grad_norm": 1.0,
  "offset_noise_weight": 0.0,
  "generalized_offset_noise": false,
  "perturbation_noise_weight": 0.0,
  "rescale_noise_scheduler_to_zero_terminal_snr": false,
  "force_v_prediction": false,
  "force_epsilon_prediction": false,
  "min_noising_strength": 0.0,
  "max_noising_strength": 1.0,
  "timestep_distribution": "LOGIT_NORMAL",
  "noising_weight": 0.0,
  "noising_bias": 0.0,
  "timestep_shift": 1.0,
  "dynamic_timestep_shifting": false,
  "unet": {
    "__version": 0,
    "model_name": "",
    "include": true,
    "train": true,
    "stop_training_after": 0,
    "stop_training_after_unit": "NEVER",
    "learning_rate": null,
    "weight_dtype": "FLOAT_32",
    "dropout_probability": 0.0,
    "train_embedding": true,
    "attention_mask": false,
    "guidance_scale": 1.0
  },
  "prior": {
    "__version": 0,
    "model_name": "",
    "include": true,
    "train": true,
    "stop_training_after": 0,
    "stop_training_after_unit": "NEVER",
    "learning_rate": null,
    "weight_dtype": "FLOAT_32",
    "dropout_probability": 0.0,
    "train_embedding": true,
    "attention_mask": false,
    "guidance_scale": 1.0
  },
  "transformer": {
    "__version": 0,
    "model_name": "",
    "include": true,
    "train": true,
    "stop_training_after": 0,
    "stop_training_after_unit": "NEVER",
    "learning_rate": null,
    "weight_dtype": "INT_W8A8",
    "dropout_probability": 0.0,
    "train_embedding": true,
    "attention_mask": false,
    "guidance_scale": 1.0
  },
  "quantization": {
    "__version": 0,
    "layer_filter": "transformer_block",
    "layer_filter_preset": "blocks",
    "layer_filter_regex": false,
    "svd_dtype": "NONE",
    "svd_rank": 16,
    "cache_dir": "workspace-cache/run/quantization"
  },
  "text_encoder": {
    "__version": 0,
    "model_name": "",
    "include": true,
    "train": false,
    "stop_training_after": 30,
    "stop_training_after_unit": "EPOCH",
    "learning_rate": null,
    "weight_dtype": "FLOAT_8",
    "dropout_probability": 0.0,
    "train_embedding": true,
    "attention_mask": false,
    "guidance_scale": 1.0
  },
  "text_encoder_layer_skip": 0,
  "text_encoder_sequence_length": 512,
  "text_encoder_2": {
    "__version": 0,
    "model_name": "",
    "include": true,
    "train": true,
    "stop_training_after": 30,
    "stop_training_after_unit": "EPOCH",
    "learning_rate": null,
    "weight_dtype": "FLOAT_32",
    "dropout_probability": 0.0,
    "train_embedding": true,
    "attention_mask": false,
    "guidance_scale": 1.0
  },
  "text_encoder_2_layer_skip": 0,
  "text_encoder_2_sequence_length": 77,
  "text_encoder_3": {
    "__version": 0,
    "model_name": "",
    "include": true,
    "train": true,
    "stop_training_after": 30,
    "stop_training_after_unit": "EPOCH",
    "learning_rate": null,
    "weight_dtype": "FLOAT_32",
    "dropout_probability": 0.0,
    "train_embedding": true,
    "attention_mask": false,
    "guidance_scale": 1.0
  },
  "text_encoder_3_layer_skip": 0,
  "text_encoder_4": {
    "__version": 0,
    "model_name": "",
    "include": true,
    "train": true,
    "stop_training_after": 30,
    "stop_training_after_unit": "EPOCH",
    "learning_rate": null,
    "weight_dtype": "FLOAT_32",
    "dropout_probability": 0.0,
    "train_embedding": true,
    "attention_mask": false,
    "guidance_scale": 1.0
  },
  "text_encoder_4_layer_skip": 0,
  "vae": {
    "__version": 0,
    "model_name": "",
    "include": true,
    "train": true,
    "stop_training_after": null,
    "stop_training_after_unit": "NEVER",
    "learning_rate": null,
    "weight_dtype": "FLOAT_32",
    "dropout_probability": 0.0,
    "train_embedding": true,
    "attention_mask": false,
    "guidance_scale": 1.0
  },
  "effnet_encoder": {
    "__version": 0,
    "model_name": "",
    "include": true,
    "train": true,
    "stop_training_after": null,
    "stop_training_after_unit": "NEVER",
    "learning_rate": null,
    "weight_dtype": "FLOAT_32",
    "dropout_probability": 0.0,
    "train_embedding": true,
    "attention_mask": false,
    "guidance_scale": 1.0
  },
  "decoder": {
    "__version": 0,
    "model_name": "",
    "include": true,
    "train": true,
    "stop_training_after": null,
    "stop_training_after_unit": "NEVER",
    "learning_rate": null,
    "weight_dtype": "FLOAT_32",
    "dropout_probability": 0.0,
    "train_embedding": true,
    "attention_mask": false,
    "guidance_scale": 1.0
  },
  "decoder_text_encoder": {
    "__version": 0,
    "model_name": "",
    "include": true,
    "train": true,
    "stop_training_after": null,
    "stop_training_after_unit": "NEVER",
    "learning_rate": null,
    "weight_dtype": "FLOAT_32",
    "dropout_probability": 0.0,
    "train_embedding": true,
    "attention_mask": false,
    "guidance_scale": 1.0
  },
  "decoder_vqgan": {
    "__version": 0,
    "model_name": "",
    "include": true,
    "train": true,
    "stop_training_after": null,
    "stop_training_after_unit": "NEVER",
    "learning_rate": null,
    "weight_dtype": "FLOAT_32",
    "dropout_probability": 0.0,
    "train_embedding": true,
    "attention_mask": false,
    "guidance_scale": 1.0
  },
  "masked_training": false,
  "unmasked_probability": 0.1,
  "unmasked_weight": 0.1,
  "normalize_masked_area_loss": false,
  "masked_prior_preservation_weight": 0.0,
  "custom_conditioning_image": false,
  "layer_filter": "transformer_blocks",
  "layer_filter_preset": "transformer_block",
  "layer_filter_regex": false,
  "embedding_learning_rate": null,
  "preserve_embedding_norm": false,
  "embedding": {
    "__version": 0,
    "uuid": "32cefb93-f7d2-4083-be65-f367c7ebccb5",
    "model_name": "",
    "placeholder": "<embedding>",
    "train": true,
    "stop_training_after": null,
    "stop_training_after_unit": "NEVER",
    "token_count": 1,
    "initial_embedding_text": "*",
    "is_output_embedding": false
  },
  "additional_embeddings": [],
  "embedding_weight_dtype": "FLOAT_32",
  "cloud": {
    "__version": 0,
    "enabled": false,
    "type": "RUNPOD",
    "file_sync": "NATIVE_SCP",
    "create": true,
    "name": "OneTrainer",
    "tensorboard_tunnel": true,
    "sub_type": "",
    "gpu_type": "",
    "volume_size": 100,
    "min_download": 0,
    "remote_dir": "/workspace",
    "huggingface_cache_dir": "/workspace/huggingface_cache",
    "onetrainer_dir": "/workspace/OneTrainer",
    "install_cmd": "git clone https://github.com/Nerogar/OneTrainer",
    "install_onetrainer": true,
    "update_onetrainer": true,
    "detach_trainer": false,
    "run_id": "job1",
    "download_samples": true,
    "download_output_model": true,
    "download_saves": true,
    "download_backups": false,
    "download_tensorboard": false,
    "delete_workspace": false,
    "on_finish": "NONE",
    "on_error": "NONE",
    "on_detached_finish": "NONE",
    "on_detached_error": "NONE"
  },
  "peft_type": "LORA",
  "lora_model_name": "",
  "lora_rank": 16,
  "lora_alpha": 1.0,
  "lora_decompose": false,
  "lora_decompose_norm_epsilon": true,
  "lora_decompose_output_axis": false,
  "lora_weight_dtype": "FLOAT_32",
  "bundle_additional_embeddings": true,
  "oft_block_size": 32,
  "oft_coft": false,
  "coft_eps": 0.0001,
  "oft_block_share": false,
  "optimizer": {
    "__version": 0,
    "optimizer": "ADAMW",
    "adam_w_mode": false,
    "alpha": null,
    "amsgrad": false,
    "beta1": 0.9,
    "beta2": 0.999,
    "beta3": null,
    "bias_correction": false,
    "block_wise": false,
    "capturable": false,
    "centered": false,
    "clip_threshold": null,
    "d0": null,
    "d_coef": null,
    "dampening": null,
    "decay_rate": null,
    "decouple": false,
    "differentiable": false,
    "eps": 1e-8,
    "eps2": null,
    "foreach": false,
    "fsdp_in_use": false,
    "fused": true,
    "fused_back_pass": false,
    "growth_rate": null,
    "initial_accumulator_value": null,
    "initial_accumulator": null,
    "is_paged": false,
    "log_every": null,
    "lr_decay": null,
    "max_unorm": null,
    "maximize": false,
    "min_8bit_size": null,
    "quant_block_size": null,
    "momentum": null,
    "nesterov": false,
    "no_prox": false,
    "optim_bits": null,
    "percentile_clipping": null,
    "r": null,
    "relative_step": false,
    "safeguard_warmup": false,
    "scale_parameter": false,
    "stochastic_rounding": false,
    "use_bias_correction": false,
    "use_triton": false,
    "warmup_init": false,
    "weight_decay": 0.01,
    "weight_lr_power": null,
    "decoupled_decay": false,
    "fixed_decay": false,
    "rectify": false,
    "degenerated_to_sgd": false,
    "k": null,
    "xi": null,
    "n_sma_threshold": null,
    "ams_bound": false,
    "adanorm": false,
    "adam_debias": false,
    "slice_p": null,
    "cautious": false,
    "weight_decay_by_lr": true,
    "prodigy_steps": null,
    "use_speed": false,
    "split_groups": true,
    "split_groups_mean": true,
    "factored": true,
    "factored_fp32": true,
    "use_stableadamw": true,
    "use_cautious": false,
    "use_grams": false,
    "use_adopt": false,
    "d_limiter": true,
    "use_schedulefree": true,
    "use_orthograd": false,
    "nnmf_factor": false,
    "orthogonal_gradient": false,
    "use_atan2": false,
    "use_AdEMAMix": false,
    "beta3_ema": null,
    "alpha_grad": null,
    "beta1_warmup": null,
    "min_beta1": null,
    "Simplified_AdEMAMix": false,
    "cautious_mask": false,
    "grams_moment": false,
    "kourkoutas_beta": false,
    "k_warmup_steps": null,
    "schedulefree_c": null,
    "ns_steps": null,
    "MuonWithAuxAdam": false,
    "muon_hidden_layers": null,
    "muon_adam_regex": false,
    "muon_adam_lr": null,
    "muon_te1_adam_lr": null,
    "muon_te2_adam_lr": null,
    "muon_adam_config": {},
    "rms_rescaling": true,
    "normuon_variant": false,
    "beta2_normuon": null,
    "normuon_eps": null,
    "low_rank_ortho": false,
    "ortho_rank": null,
    "accelerated_ns": false,
    "cautious_wd": false,
    "approx_mars": false,
    "kappa_p": null,
    "auto_kappa_p": false,
    "compile": false
  },
  "optimizer_defaults": {},
  "sample_definition_file_name": "training_samples/samples.json",
  "samples": null,
  "sample_after": 10,
  "sample_after_unit": "MINUTE",
  "sample_skip_first": 0,
  "sample_image_format": "JPG",
  "sample_video_format": "MP4",
  "sample_audio_format": "MP3",
  "samples_to_tensorboard": true,
  "non_ema_sampling": true,
  "backup_after": 30,
  "backup_after_unit": "MINUTE",
  "rolling_backup": true,
  "rolling_backup_count": 2,
  "backup_before_save": true,
  "save_every": 0,
  "save_every_unit": "NEVER",
  "save_skip_first": 0,
  "save_filename_prefix": ""
}