albert-xxlarge-v1 / README.md
astachowicz's picture
Update README.md
334cb31 verified
|
raw
history blame
2.21 kB
metadata
license: apache-2.0

Optimum Habana is the interface between the Hugging Face Transformers and Diffusers libraries and Habana's Gaudi processor (HPU). It provides a set of tools enabling easy and fast model loading, training and inference on single- and multi-HPU settings for different downstream tasks. Learn more about how to take advantage of the power of Habana HPUs to train and deploy Transformers and Diffusers models at hf.co/hardware/habana.

ALBERT XXLarge model HPU configuration

This model only contains the GaudiConfig file for running the albert-xxlarge-v1 model on Habana's Gaudi processors (HPU).

This model contains no model weights, only a GaudiConfig.

This enables to specify:

  • use_torch_autocast: whether to use PyTorch's autocast mixed precision
  • use_fused_adam: whether to use Habana's custom AdamW implementation
  • use_fused_clip_norm: whether to use Habana's fused gradient norm clipping operator

Usage

The model is instantiated the same way as in the Transformers library. The only difference is that there are a few new training arguments specific to HPUs.

Here is a question-answering example script to fine-tune a model on SQuAD. You can run it with ALBERT XXL with the following command:

PT_HPU_LAZY_MODE=0 PT_ENABLE_INT64_SUPPORT=1 python run_qa.py \
  --model_name_or_path albert-xxlarge-v1 \
  --gaudi_config_name Habana/albert-xxlarge-v1
  --dataset_name squad \
  --do_train \
  --do_eval \
  --per_device_train_batch_size 16 \
  --per_device_eval_batch_size 2 \
  --learning_rate 7e-05 \
  --num_train_epochs 2 \
  --max_seq_length 384 \
  --output_dir /tmp/squad/ \
  --use_habana \
  --use_lazy_mode false \
  --torch_compile \
  --torch_compile_backend hpu_backend \
  --throughput_warmup_steps 3 \
  --bf16 \
  --save_strategy no \
  --doc_stride 128 \
  --overwrite_output_di

Check the documentation out for more advanced usage and examples.