pretrain_bert.sh 893 Bytes
Newer Older
Raul Puri's avatar
Raul Puri committed
1
2
3
4
#!/bin/bash

RANK=0
WORLD_SIZE=1
Mohammad's avatar
Mohammad committed
5
6
DATA_PATH=<Specify path and file prefix>_text_sentence
CHECKPOINT_PATH=<Specify path>
Raul Puri's avatar
Raul Puri committed
7
8

python pretrain_bert.py \
9
10
11
12
13
14
       --num-layers 24 \
       --hidden-size 1024 \
       --num-attention-heads 16 \
       --batch-size 4 \
       --seq-length 512 \
       --max-position-embeddings 512 \
Mohammad's avatar
Mohammad committed
15
16
17
18
19
20
       --train-iters 2000000 \
       --save $CHECKPOINT_PATH \
       --load $CHECKPOINT_PATH \
       --data-path $DATA_PATH \
       --vocab-file bert-vocab.txt \
       --data-impl mmap \
21
22
23
       --split 949,50,1 \
       --distributed-backend nccl \
       --lr 0.0001 \
Mohammad's avatar
Mohammad committed
24
       --min-lr 0.00001 \
25
26
27
28
29
       --lr-decay-style linear \
       --lr-decay-iters 990000 \
       --weight-decay 1e-2 \
       --clip-grad 1.0 \
       --warmup .01 \
Mohammad's avatar
Mohammad committed
30
31
32
33
34
       --log-interval 100 \
       --save-interval 10000 \
       --eval-interval 1000 \
       --eval-iters 10 \
       --fp16