File size: 481 Bytes
3b2d368
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
defaults:
  - _base
  - _self_

# Identity
training_name: medium
use_ddp: true

# Training
max_epochs: 5
warmup_steps: 500

# Precision and Compilation
precision: bfloat16
compile: true
compile_mode: default

# Learning Rate + LR Search
lr: 2e-4

# Data Loading
batch_size: 70
num_workers: 8
use_sliding_window: true

# Gradient Accumulation and Step Tracking
use_grad_accum: true
grad_accum_steps: auto
tokens_per_step: 1036000     # ~1m

# Validation Steps
validation_steps: 1000