Views
No views yet
GaudiConfig file for running the albert-xxlarge-v1 model on Habana's Gaudi processors (HPU).use_torch_autocast: whether to use PyTorch's autocast mixed precisionuse_fused_adam: whether to use Habana's custom AdamW implementationuse_fused_clip_norm: whether to use Habana's fused gradient norm clipping operator1python run_qa.py \
2 --model_name_or_path albert-xxlarge-v1 \
3 --gaudi_config_name Habana/albert-xxlarge-v1 \
4 --dataset_name squad \
5 --do_train \
6 --do_eval \
7 --per_device_train_batch_size 12 \
8 --per_device_eval_batch_size 2 \
9 --learning_rate 5e-6 \
10 --num_train_epochs 2 \
11 --max_seq_length 384 \
12 --output_dir /tmp/squad/ \
13 --use_habana \
14 --use_lazy_mode \
15 --throughput_warmup_steps 3 \
16 --bf16