mirror of https://github.com/hpcaitech/ColossalAI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
688 B
36 lines
688 B
from colossalai.legacy.amp import AMP_TYPE
|
|
|
|
# hyper-parameters
|
|
TRAIN_ITERS = 10
|
|
DECAY_ITERS = 4
|
|
WARMUP_FRACTION = 0.01
|
|
GLOBAL_BATCH_SIZE = 32 # dp world size * sentences per GPU
|
|
EVAL_ITERS = 10
|
|
EVAL_INTERVAL = 10
|
|
LR = 0.0001
|
|
MIN_LR = 1e-05
|
|
WEIGHT_DECAY = 0.01
|
|
SEQ_LENGTH = 128
|
|
|
|
# BERT config
|
|
DEPTH = 4
|
|
NUM_ATTENTION_HEADS = 4
|
|
HIDDEN_SIZE = 128
|
|
|
|
# model config
|
|
ADD_BINARY_HEAD = False
|
|
|
|
# random seed
|
|
SEED = 1234
|
|
|
|
# pipeline config
|
|
# only enabled when pipeline > 1
|
|
NUM_MICRO_BATCHES = 4
|
|
|
|
# colossalai config
|
|
parallel = dict(pipeline=1, tensor=dict(size=2, mode="sequence"))
|
|
|
|
fp16 = dict(mode=AMP_TYPE.NAIVE, verbose=True)
|
|
|
|
gradient_handler = [dict(type="SequenceParallelGradientHandler")]
|