File size: 464 Bytes
00db46c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# Main configuration file for SFT training
defaults:
- dataset: default
- model: qwen2.5-3b
- training: default
- _self_
# Output directory for model checkpoints and logs
output_dir: models/sft
hf_repo_id: "Dat1710/countdown-sft-qwen2"
hf_token: ""
training:
resume_from_checkpoint: true
model:
resume_model_id: "Dat1710/countdown-sft-qwen2"
resume_from: "Dat1710/countdown-sft-qwen2"
# Random seed for reproducibility
seed: 42
|