-
Notifications
You must be signed in to change notification settings - Fork 0
/
ds_config_mn_pp.json
41 lines (41 loc) · 1.01 KB
/
ds_config_mn_pp.json
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
{
"train_batch_size": "auto",
"gradient_accumulation_steps": "auto",
"gradient_clipping": 1.0,
"bf16": {
"enabled": true
},
"zero_optimization": {
"stage": 0
},
"optimizer": {
"type": "AdamW",
"params": {
"lr": 1e-3,
"betas": [0.9, 0.95],
"eps": 1e-8,
"weight_decay": 0.0
}
},
"scheduler": {
"type": "WarmupCosineLR",
"params": {
"total_num_steps": "auto",
"warmup_num_steps": "auto",
"warmup_type": "linear",
"warmup_min_ratio": 0.03,
"cos_min_ratio": 0.1
}
},
"pipeline": {
"stages": 32,
"pipe_chunk_size": 1,
"activation_checkpoint_interval": 0,
"pipe_schedule": "interleaved"
},
"data_parallel_size": 1,
"activation_checkpointing": {
"partition_activations": true,
"contiguous_memory_optimization": true
}
}