Views
No views yet
0.6.01base_model: meta-llama/Llama-3.2-1B
2# Automatically upload checkpoint and final model to HF
3hub_model_id: axolotl-ai-co/numina-3b-ep3-lr3e-5-sft
4
5plugins:
6 # - axolotl.integrations.kd.KDPlugin
7 - axolotl.integrations.liger.LigerPlugin
8
9liger_rms_norm: true
10liger_glu_activation: true
11
12torch_compile: true
13
14strict: false
15
16chat_template: llama3
17
18dataloader_prefetch_factor: 512
19dataloader_num_workers: 8
20dataloader_pin_memory: true
21
22datasets:
23- field_messages: messages
24 message_field_content: content
25 message_field_role: role
26 path: AI-MO/NuminaMath-CoT
27 type: chat_template
28 split: train
29
30dataset_prepared_path: last_run_prepared
31val_set_size: 0.0
32output_dir: ./outputs/out
33
34sequence_len: 8192
35sample_packing: true
36pad_to_sequence_len: true
37
38wandb_project: numina-kd-experiment
39wandb_entity: axolotl-ai
40wandb_watch:
41wandb_name:
42wandb_log_model:
43
44gradient_accumulation_steps: 1
45micro_batch_size: 4
46num_epochs: 3
47optimizer: adamw_8bit
48lr_scheduler: cosine
49learning_rate: 3e-5
50save_safetensors: true
51
52train_on_inputs: false
53group_by_length: false
54bf16: auto
55fp16:
56tf32: true
57
58gradient_checkpointing: true
59gradient_checkpointing_kwargs:
60 use_reentrant: false
61early_stopping_patience:
62resume_from_checkpoint:
63logging_steps: 1
64xformers_attention:
65flash_attention: true
66
67warmup_steps: 100
68evals_per_epoch: 2
69eval_table_size:
70saves_per_epoch: 1
71debug:
72 # deepspeed: deepspeed_configs/zero1.json
73weight_decay: 0.0
74_fsdp:
75 - full_shard
76 - auto_wrap
77_fsdp_config:
78 fsdp_limit_all_gathers: true
79 fsdp_sync_module_states: true
80 fsdp_offload_params: true
81 fsdp_use_orig_params: false
82 fsdp_cpu_ram_efficient_loading: true
83 fsdp_auto_wrap_policy: TRANSFORMER_BASED_WRAP
84 fsdp_transformer_layer_cls_to_wrap: LlamaDecoderLayer
85 fsdp_state_dict_type: FULL_STATE_DICT
86 fsdp_sharding_strategy: FULL_SHARD
87 fsdp_backward_prefetch: BACKWARD_PRE
88special_tokens:
89 pad_token: <|finetune_right_pad_id|>
90 eos_token: <|eot_id|>
91
92