Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@
REQ: EXACTLY_ONE
CHECK: " v['value'] == 1.0 "

- KEY:
NAME: moe_aux_loss_coeff
REQ: EXACTLY_ONE
CHECK: " v['value'] == 0.01 "

- KEY:
NAME: gradient_accumulation_steps
REQ: EXACTLY_ONE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@
NAME: opt_gradient_clip_norm
REQ: EXACTLY_ONE

- KEY:
NAME: moe_aux_loss_coeff
REQ: EXACTLY_ONE

- KEY:
NAME: gradient_accumulation_steps
REQ: EXACTLY_ONE
Expand Down
1 change: 1 addition & 0 deletions mlperf_logging/mllog/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@
START_WARMUP_STEP = "start_warmup_step"
INIT_CHECKPOINT_STEP = "init_checkpoint_step"
LORA_ALPHA = "lora_alpha"
MOE_AUX_LOSS_COEFF = "moe_aux_loss_coeff"
# Log keys - misc.
BBOX = "bbox"
SEGM = "segm"
Expand Down
Loading