refiners/tests/training_utils/mock_config_2_models.toml

25 lines
352 B
TOML
Raw Normal View History

2024-02-12 13:17:51 +00:00
[mock_model1]
requires_grad = true
learning_rate = 1e-5
2024-02-12 13:17:51 +00:00
[mock_model2]
requires_grad = true
[clock]
verbose = false
[training]
duration = "100:epoch"
seed = 0
batch_size = 4
2024-04-24 16:50:27 +00:00
gradient_accumulation = 4
gradient_clipping_max_norm = 1.0
[optimizer]
optimizer = "SGD"
learning_rate = 1
2024-02-15 09:48:12 +00:00
[lr_scheduler]
type = "ConstantLR"
2024-04-18 14:41:57 +00:00
update_interval = "1:iteration"