forked from mlcommons/logging
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'mlcommons:master' into unet3d-rcp-fix-v3.0
- Loading branch information
Showing
14 changed files
with
210 additions
and
28 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# These owners will be the default owners for everything in the repo. | ||
# Unless a later match takes precedence,they will be requested for review when someone opens a pull request. | ||
* @mlcommons/wg-benchmark-infra @mlcommons/wg-training |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
83 changes: 83 additions & 0 deletions
83
mlperf_logging/compliance_checker/training_3.0.0/closed_gpt3.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
- KEY: | ||
NAME: global_batch_size | ||
REQ: EXACTLY_ONE | ||
POST: > | ||
s['global_batch_size'] = v['value'] | ||
- KEY: | ||
NAME: max_sequence_length | ||
REQ: EXACTLY_ONE | ||
CHECK: " v['value'] == 2048 " | ||
|
||
- KEY: | ||
NAME: opt_name | ||
REQ: EXACTLY_ONE | ||
CHECK: " v['value'] == 'adam' " | ||
|
||
- KEY: | ||
NAME: opt_base_learning_rate | ||
REQ: EXACTLY_ONE | ||
CHECK: " v['value'] == 2e-5 or v['value'] == 3e-5 " | ||
|
||
- KEY: | ||
NAME: opt_end_learning_rate | ||
REQ: EXACTLY_ONE | ||
|
||
- KEY: | ||
NAME: opt_learning_rate_decay_steps | ||
REQ: EXACTLY_ONE | ||
|
||
- KEY: | ||
NAME: opt_learning_rate_warmup_steps | ||
REQ: EXACTLY_ONE | ||
|
||
- KEY: | ||
NAME: opt_learning_rate_decay_schedule | ||
REQ: EXACTLY_ONE | ||
CHECK: " v['value'] == 'cosine with linear warmup' " | ||
|
||
- KEY: | ||
NAME: opt_adam_beta_1 | ||
REQ: EXACTLY_ONE | ||
CHECK: " v['value'] == 0.9 " | ||
|
||
- KEY: | ||
NAME: opt_adam_beta_2 | ||
REQ: EXACTLY_ONE | ||
CHECK: " v['value'] == 0.95 " | ||
|
||
- KEY: | ||
NAME: opt_adam_epsilon | ||
REQ: EXACTLY_ONE | ||
CHECK: " v['value'] == 1e-8 " | ||
|
||
- KEY: | ||
NAME: opt_gradient_clip_norm | ||
REQ: EXACTLY_ONE | ||
CHECK: " v['value'] == 1.0 " | ||
|
||
- KEY: | ||
NAME: gradient_accumulation_steps | ||
REQ: EXACTLY_ONE | ||
CHECK: " v['value'] > 0 " | ||
|
||
- KEY: | ||
NAME: trained_samples | ||
REQ: EXACTLY_ONE | ||
|
||
- KEY: | ||
NAME: eval_samples | ||
REQ: EXACTLY_ONE | ||
|
||
- KEY: | ||
NAME: eval_accuracy | ||
REQ: AT_LEAST_ONE | ||
CHECK: | ||
- "'epoch_num' in v['metadata']" | ||
ATLEAST_ONE_CHECK: "(v['value'] <= 2.69) and v['value'] > 2.6" | ||
|
||
- KEY: | ||
NAME: init_checkpoint_step | ||
REQ: EXACTLY_ONE | ||
CHECK: " v['value'] > 0 " | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
{ | ||
|
||
"gpt3_ref_1536": | ||
{ | ||
"Benchmark": "gpt3", | ||
"Creator": "Google & NVIDIA", | ||
"When": "Prior to 3.0 submission", | ||
"Platform": "TPU-v4-1536 / PaxML, 1024 A100-80GB / Megatron-LM", | ||
"BS": 1536, | ||
"Hyperparams": { | ||
"opt_base_learning_rate": 2e-5 | ||
}, | ||
"Epochs to converge": [ | ||
1157627904, 1157627904, 1157627904, 1258291200, 1207959552, 1258291200 | ||
] | ||
}, | ||
|
||
"gpt3_ref_2048": | ||
{ | ||
"Benchmark": "gpt3", | ||
"Creator": "Google & NVIDIA", | ||
"When": "Prior to 3.0 submission", | ||
"Platform": "TPU-v4-2048 / PaxML, 1024 A100-80GB / Megatron-LM", | ||
"BS": 2048, | ||
"Hyperparams": { | ||
"opt_base_learning_rate": 2e-5 | ||
}, | ||
"Epochs to converge": [ | ||
1157627904, 1207959552, 1157627904, 1207959552, 1207959552, 1157627904 | ||
] | ||
}, | ||
|
||
"gpt3_ref_3072": | ||
{ | ||
"Benchmark": "gpt3", | ||
"Creator": "Google & NVIDIA", | ||
"When": "Prior to 3.0 submission", | ||
"Platform": "TPU-v4-1536 / PaxML, 1024 A100-80GB / Megatron-LM", | ||
"BS": 3072, | ||
"Hyperparams": { | ||
"opt_base_learning_rate": 2e-5 | ||
}, | ||
"Epochs to converge": [ | ||
1258291200, 1207959552, 1207959552, 1207959552, 1207959552, 1207959552 | ||
] | ||
}, | ||
|
||
"gpt3_ref_4096": | ||
{ | ||
"Benchmark": "gpt3", | ||
"Creator": "Google & NVIDIA", | ||
"When": "Prior to 3.0 submission", | ||
"Platform": "TPU-v4-2048 / PaxML, 1024 A100-80GB / Megatron-LM", | ||
"BS": 4096, | ||
"Hyperparams": { | ||
"opt_base_learning_rate": 3e-5 | ||
}, | ||
"Epochs to converge": [ | ||
1258291200, 1258291200, 1308622848, 1258291200, 1258291200, 1258291200 | ||
] | ||
}, | ||
|
||
"gpt3_ref_8192": | ||
{ | ||
"Benchmark": "gpt3", | ||
"Creator": "Google & NVIDIA", | ||
"When": "Prior to 3.0 submission", | ||
"Platform": "TPU-v4-2048 / PaxML, 1024 A100-80GB / Megatron-LM", | ||
"BS": 8192, | ||
"Hyperparams": { | ||
"opt_base_learning_rate": 3e-5 | ||
}, | ||
"Epochs to converge": [ | ||
1610612736, 1660944384, 1660944384, 1610612736, 1610612736, 1610612736 | ||
] | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.