You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/OPTIONS.es.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1798,6 +1798,7 @@ Las opciones anteriores aplican en su mayor parte a `config.json`, pero algunas
1798
1798
-`TRAINING_NUM_PROCESSES` debe configurarse al número de GPUs del sistema. Para la mayoría de los casos de uso, esto es suficiente para habilitar entrenamiento DistributedDataParallel (DDP). Usa `num_processes` dentro de `config.json` si prefieres no usar `config.env`.
1799
1799
-`TRAINING_DYNAMO_BACKEND` por defecto es `no` pero puede configurarse a cualquier backend de torch.compile soportado (p. ej., `inductor`, `aot_eager`, `cudagraphs`) y combinarse con `--dynamo_mode`, `--dynamo_fullgraph` o `--dynamo_use_regional_compilation` para un ajuste más fino
1800
1800
-`SIMPLETUNER_LOG_LEVEL` por defecto es `INFO` pero puede configurarse a `DEBUG` para añadir más información para reportes de problemas en `debug.log`
1801
+
-`SIMPLETUNER_ALLOW_MODIFYING_BSZ=1` omite la comprobación de discrepancia de batch_size del sampler al reanudar desde un checkpoint. Úsalo solo si has cambiado intencionalmente `train_batch_size` entre ejecuciones y aceptas el riesgo de estado inconsistente del sampler. Equivalente a `--i_know_what_i_am_doing`.
1801
1802
-`VENV_PATH` puede configurarse a la ubicación de tu entorno virtual de python si no está en la ubicación típica `.venv`
1802
1803
-`ACCELERATE_EXTRA_ARGS` puede dejarse sin configurar o contener argumentos extra como `--multi_gpu` o flags específicos de FSDP
1803
1804
@@ -2410,7 +2411,9 @@ options:
2410
2411
Source device used to generate validation seeds
2411
2412
--i_know_what_i_am_doing [I_KNOW_WHAT_I_AM_DOING]
2412
2413
Unlock experimental overrides and bypass built-in
2413
-
safety limits.
2414
+
safety limits. Also bypasses the sampler batch-size
2415
+
mismatch check on resume (same effect as
2416
+
SIMPLETUNER_ALLOW_MODIFYING_BSZ=1).
2414
2417
--flow_sigmoid_scale FLOW_SIGMOID_SCALE
2415
2418
Scale factor for sigmoid timestep sampling for flow-
-`TRAINING_NUM_PROCESSES` को सिस्टम में GPUs की संख्या पर सेट करें। अधिकांश उपयोग‑मामलों में इससे DistributedDataParallel (DDP) training सक्षम हो जाती है। यदि आप `config.env` उपयोग नहीं करना चाहते, तो `config.json` में `num_processes` उपयोग करें।
1797
1797
-`TRAINING_DYNAMO_BACKEND` डिफ़ॉल्ट रूप से `no` है, लेकिन इसे किसी भी समर्थित torch.compile backend (उदा. `inductor`, `aot_eager`, `cudagraphs`) पर सेट किया जा सकता है और `--dynamo_mode`, `--dynamo_fullgraph`, या `--dynamo_use_regional_compilation` के साथ finer tuning के लिए जोड़ा जा सकता है
1798
1798
-`SIMPLETUNER_LOG_LEVEL` डिफ़ॉल्ट रूप से `INFO` है, लेकिन issue reports के लिए `debug.log` में अधिक जानकारी जोड़ने हेतु इसे `DEBUG` पर सेट किया जा सकता है
1799
+
-`SIMPLETUNER_ALLOW_MODIFYING_BSZ=1` checkpoint से resume करते समय sampler batch_size मेल न खाने की जांच को छोड़ देता है। इसे केवल तभी उपयोग करें जब आपने जानबूझकर `train_batch_size` बदला हो और असंगत sampler state के जोखिम को स्वीकार करते हों। `--i_know_what_i_am_doing` के समकक्ष है।
1799
1800
-`VENV_PATH` को आपके python virtual env की लोकेशन पर सेट किया जा सकता है यदि वह सामान्य `.venv` लोकेशन में नहीं है
1800
1801
-`ACCELERATE_EXTRA_ARGS` को unset छोड़ा जा सकता है, या इसमें `--multi_gpu` या FSDP‑specific flags जैसे अतिरिक्त arguments जोड़े जा सकते हैं
1801
1802
@@ -2408,7 +2409,9 @@ options:
2408
2409
Source device used to generate validation seeds
2409
2410
--i_know_what_i_am_doing [I_KNOW_WHAT_I_AM_DOING]
2410
2411
Unlock experimental overrides and bypass built-in
2411
-
safety limits.
2412
+
safety limits. Also bypasses the sampler batch-size
2413
+
mismatch check on resume (same effect as
2414
+
SIMPLETUNER_ALLOW_MODIFYING_BSZ=1).
2412
2415
--flow_sigmoid_scale FLOW_SIGMOID_SCALE
2413
2416
Scale factor for sigmoid timestep sampling for flow-
Copy file name to clipboardExpand all lines: documentation/OPTIONS.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1802,6 +1802,7 @@ The above options apply for the most part, to `config.json` - but some entries m
1802
1802
-`TRAINING_NUM_PROCESSES` should be set to the number of GPUs in the system. For most use-cases, this is enough to enable DistributedDataParallel (DDP) training. Use `num_processes` inside `config.json` if you prefer to not use `config.env`.
1803
1803
-`TRAINING_DYNAMO_BACKEND` defaults to `no` but can be set to any supported torch.compile backend (e.g. `inductor`, `aot_eager`, `cudagraphs`) and combined with `--dynamo_mode`, `--dynamo_fullgraph`, or `--dynamo_use_regional_compilation` for finer tuning
1804
1804
-`SIMPLETUNER_LOG_LEVEL` defaults to `INFO` but can be set to `DEBUG` to add more information for issue reports into `debug.log`
1805
+
-`SIMPLETUNER_ALLOW_MODIFYING_BSZ=1` bypasses the sampler batch-size mismatch check when resuming from a checkpoint. Use this only if you intentionally changed `train_batch_size` between runs and accept the risk of inconsistent sampler state. Equivalent to passing `--i_know_what_i_am_doing`.
1805
1806
-`VENV_PATH` can be set to the location of your python virtual env, if it is not in the typical `.venv` location
1806
1807
-`ACCELERATE_EXTRA_ARGS` can be left unset, or, contain extra arguments to add like `--multi_gpu` or FSDP-specific flags
1807
1808
@@ -2413,7 +2414,9 @@ options:
2413
2414
Source device used to generate validation seeds
2414
2415
--i_know_what_i_am_doing [I_KNOW_WHAT_I_AM_DOING]
2415
2416
Unlock experimental overrides and bypass built-in
2416
-
safety limits.
2417
+
safety limits. Also bypasses the sampler batch-size
2418
+
mismatch check on resume (same effect as
2419
+
SIMPLETUNER_ALLOW_MODIFYING_BSZ=1).
2417
2420
--flow_sigmoid_scale FLOW_SIGMOID_SCALE
2418
2421
Scale factor for sigmoid timestep sampling for flow-
Copy file name to clipboardExpand all lines: documentation/OPTIONS.pt-BR.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1794,6 +1794,7 @@ As opcoes acima se aplicam em grande parte ao `config.json` — mas algumas entr
1794
1794
-`TRAINING_NUM_PROCESSES` deve ser definido para o numero de GPUs no sistema. Para a maioria dos casos, isso basta para habilitar treino DDP. Use `num_processes` no `config.json` se preferir nao usar `config.env`.
1795
1795
-`TRAINING_DYNAMO_BACKEND` padrao e `no`, mas pode ser definido para qualquer backend suportado do torch.compile (ex.: `inductor`, `aot_eager`, `cudagraphs`) e combinado com `--dynamo_mode`, `--dynamo_fullgraph` ou `--dynamo_use_regional_compilation` para ajuste fino.
1796
1796
-`SIMPLETUNER_LOG_LEVEL` padrao e `INFO`, mas pode ser definido para `DEBUG` para adicionar mais informacoes de issues no `debug.log`.
1797
+
-`SIMPLETUNER_ALLOW_MODIFYING_BSZ=1` ignora a verificação de incompatibilidade de batch_size do sampler ao retomar de um checkpoint. Use apenas se intencionalmente alterou `train_batch_size` entre execuções e aceita o risco de estado inconsistente do sampler. Equivalente a `--i_know_what_i_am_doing`.
1797
1798
-`VENV_PATH` pode ser definido para o caminho do seu virtual env python, se nao estiver no local tipico `.venv`.
1798
1799
-`ACCELERATE_EXTRA_ARGS` pode ficar vazio ou conter argumentos extras como `--multi_gpu` ou flags especificas do FSDP.
1799
1800
@@ -2405,7 +2406,9 @@ options:
2405
2406
Source device used to generate validation seeds
2406
2407
--i_know_what_i_am_doing [I_KNOW_WHAT_I_AM_DOING]
2407
2408
Unlock experimental overrides and bypass built-in
2408
-
safety limits.
2409
+
safety limits. Also bypasses the sampler batch-size
2410
+
mismatch check on resume (same effect as
2411
+
SIMPLETUNER_ALLOW_MODIFYING_BSZ=1).
2409
2412
--flow_sigmoid_scale FLOW_SIGMOID_SCALE
2410
2413
Scale factor for sigmoid timestep sampling for flow-
0 commit comments