Views
No views yet
meta-llama/Llama-3.1-8B-Instructmeta-llama/Llama-3.2-3B-Instruct1python distill.py \
2 --teacher-model meta-llama/Llama-3.1-8B-Instruct \
3 --student-model meta-llama/Llama-3.2-3B-Instruct \
4 --train-file data/train.jsonl \
5 --val-file data/test.jsonl \
6 --output-dir llama3_3B_distilled \
7 --batch-size 8 \
8 --gradient-accumulation-steps 1 \
9 --num-epochs 1 \
10 --learning-rate 1e-5 \
11 --warmup-steps 300 \
12 --max-length 1024 \
13 --temperature 2.0 \
14 --alpha 0.5 \
15 --save-steps 2000 \
16 --eval-steps 200 \
17 --logging-steps 5 \
18 --bf16