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