Views
No views yet
0.15.01# ── Continued Pretraining: 32B on 8×A40 (48GB) ──
2base_model: allenai/Olmo-3-1125-32B
3tokenizer_type: AutoTokenizer
4
5# ── Data ──
6 - path: data/1b/all-removedemos.jsonl
7 type: completion
8 field: completion
9dataset_prepared_path: last_run_prepared
10
11# ── Sequence / packing ──
12sequence_len: 2048
13sample_packing: true
14pad_to_sequence_len: true
15
16# ── Batch sizing ──
17micro_batch_size: 4
18gradient_accumulation_steps: 4
19
20# ── Training ──
21train_on_inputs: true
22optimizer: adamw_8bit
23lr_scheduler: cosine
24learning_rate: 2e-4
25warmup_ratio: 0.003
26num_epochs: 90
27weight_decay: 0.01
28
29# ── Precision / memory ──
30bf16: auto
31tf32: true
32flash_attention: true
33gradient_checkpointing: true
34
35# ── DeepSpeed ZeRO Stage 2 ──
36deepspeed: train/axolotl-cpt/ds_32b.json
37
38# ── Logging ──
39logging_steps: 1
40save_strategy: steps
41save_steps: 20
42save_total_limit: 40
43use_wandb: true
44wandb_name: "olmo3-32b-exp1b-phase2"
45wandb_project: "out-of-context-chatbots"
46
47# ── QLoRA ──
48load_in_8bit: false
49load_in_4bit: false
50adapter: lora
51lora_r: 64
52use_rslora: true
53lora_alpha: 32
54lora_target_linear: true
55lora_target_modules:
56 - gate_proj
57 - down_proj
58 - up_proj
59 - q_proj
60 - v_proj
61 - k_proj
62 - o_proj
63