-
Notifications
You must be signed in to change notification settings - Fork 0
/
ds_config_mn.json
57 lines (57 loc) · 1.54 KB
/
ds_config_mn.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"train_batch_size": "auto",
"gradient_accumulation_steps": "auto",
"gradient_clipping": 1.0,
"bf16": {
"enabled": true
},
"zero_optimization": {
"stage": 3,
"offload_param": {
"device": "cpu",
"pin_memory": true
},
"offload_optimizer": {
"device": "cpu",
"pin_memory": true
},
"overlap_comm": true,
"contiguous_gradients": true,
"reduce_bucket_size": "auto",
"stage3_prefetch_bucket_size": 5e8,
"stage3_param_persistence_threshold": 1e6,
"allgather_partitions": true,
"allgather_bucket_size": 5e8,
"reduce_scatter": true
},
"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": {
"pipeline_model_parallel_size": 32,
"activation_checkpoint_interval": 1,
"prescale_gradients": true,
"stages": 32
},
"data_parallel_size": 1,
"activation_checkpointing": {
"partition_activations": true,
"contiguous_memory_optimization": true
}
}