29 lines
876 B
Bash
Executable File
29 lines
876 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# the same as scripts/run_gpt2_124M.sh but with PyTorch
|
|
|
|
# if you wish to train on just a single GPU, simply skip the torchrun part, i.e.
|
|
# python train_gpt2.py ... (all the other arguments the same)
|
|
torchrun --standalone --nproc_per_node=8 train_gpt2.py \
|
|
--input_bin "dev/data/fineweb10B/fineweb_train_*.bin" \
|
|
--input_val_bin "dev/data/fineweb10B/fineweb_val_*.bin" \
|
|
--val_loss_every 250 \
|
|
--sample_every 0 \
|
|
--output_dir pylog_gpt2_124M \
|
|
--write_tensors 0 \
|
|
--model d12 \
|
|
--batch_size 32 \
|
|
--sequence_length 1024 \
|
|
--total_batch_size 524288 \
|
|
--dtype bfloat16 \
|
|
--compile 1 \
|
|
--tensorcores 1 \
|
|
--flash 1 \
|
|
--num_iterations 18865 \
|
|
--weight_decay 0.1 \
|
|
--zero_stage 1 \
|
|
--learning_rate 0.0006 \
|
|
--warmup_iters 700 \
|
|
--learning_rate_decay_frac 0.0 \
|
|
--overfit_single_batch 0
|