-
Notifications
You must be signed in to change notification settings - Fork 54
Dfridman/deepseek v3 #445
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
denys-fridman
wants to merge
9
commits into
mlcommons:master
Choose a base branch
from
denys-fridman:dfridman/deepseek-v3
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Dfridman/deepseek v3 #445
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
607438a
add deepseek constant
denys-fridman d2bf303
add deepseek to compliance check
denys-fridman 28270a6
rm closed_bert.yaml
denys-fridman ff964eb
update deepseek values
denys-fridman 6119f69
rm closed_retinanet.yaml
denys-fridman a071aeb
rm unused configs + update deepseek
denys-fridman 58a5d1e
fix deepseek name
denys-fridman 51db555
fix deepseek name
denys-fridman 039c2fa
+DEEPSEEK_V3 -> +DEEPSEEK_V3_671B
denys-fridman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
74 changes: 74 additions & 0 deletions
74
mlperf_logging/compliance_checker/training_6.0.0/closed_deepseek_v3_671b.yaml
This file contains hidden or 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,74 @@ | ||
| - 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'] == 4096 " | ||
|
|
||
| - KEY: | ||
| NAME: opt_name | ||
| REQ: EXACTLY_ONE | ||
| CHECK: " v['value'] == 'adamw' " | ||
|
|
||
| - KEY: | ||
| NAME: opt_base_learning_rate | ||
| REQ: EXACTLY_ONE | ||
|
|
||
| - KEY: | ||
| NAME: opt_learning_rate_warmup_steps | ||
| REQ: EXACTLY_ONE | ||
|
|
||
| - KEY: | ||
| NAME: opt_learning_rate_decay_steps | ||
| REQ: EXACTLY_ONE | ||
|
|
||
| - KEY: | ||
| NAME: opt_learning_rate_decay_schedule | ||
| REQ: EXACTLY_ONE | ||
| CHECK: " v['value'] == 'cosine with linear warmup' " | ||
|
|
||
| - KEY: | ||
| NAME: opt_adamw_beta_1 | ||
| REQ: EXACTLY_ONE | ||
| CHECK: " v['value'] == 0.9 " | ||
|
|
||
| - KEY: | ||
| NAME: opt_adamw_beta_2 | ||
| REQ: EXACTLY_ONE | ||
| CHECK: " v['value'] == 0.95 " | ||
|
|
||
| - KEY: | ||
| NAME: opt_adamw_epsilon | ||
| REQ: EXACTLY_ONE | ||
| CHECK: " v['value'] == 1e-08 " | ||
|
|
||
| - KEY: | ||
| NAME: opt_adamw_weight_decay | ||
| REQ: EXACTLY_ONE | ||
| CHECK: " v['value'] == 0.1 " | ||
|
|
||
| - 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: eval_samples | ||
| REQ: EXACTLY_ONE | ||
| CHECK: " v['value'] == 1024 " | ||
|
|
||
| - KEY: | ||
| NAME: eval_accuracy | ||
| REQ: AT_LEAST_ONE | ||
| CHECK: | ||
| - "'samples_count' in v['metadata']" | ||
| ATLEAST_ONE_CHECK: "(v['value'] <= 2.7) and v['value'] > 0.0" # TODO(dfridman): Update this once we have the exact value | ||
This file contains hidden or 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
65 changes: 65 additions & 0 deletions
65
mlperf_logging/compliance_checker/training_6.0.0/open_deepseek_v3_671b.yaml
This file contains hidden or 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,65 @@ | ||
| - 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'] == 4096 " | ||
|
|
||
| - KEY: | ||
| NAME: opt_name | ||
| REQ: EXACTLY_ONE | ||
| CHECK: " v['value'] == 'adamw' " | ||
|
|
||
| - KEY: | ||
| NAME: opt_base_learning_rate | ||
| REQ: EXACTLY_ONE | ||
|
|
||
| - KEY: | ||
| NAME: opt_learning_rate_warmup_steps | ||
| REQ: EXACTLY_ONE | ||
|
|
||
| - KEY: | ||
| NAME: opt_learning_rate_decay_schedule | ||
| REQ: EXACTLY_ONE | ||
|
|
||
| - KEY: | ||
| NAME: opt_adamw_beta_1 | ||
| REQ: EXACTLY_ONE | ||
|
|
||
| - KEY: | ||
| NAME: opt_adamw_beta_2 | ||
| REQ: EXACTLY_ONE | ||
|
|
||
| - KEY: | ||
| NAME: opt_adamw_epsilon | ||
| REQ: EXACTLY_ONE | ||
|
|
||
| - KEY: | ||
| NAME: opt_adamw_weight_decay | ||
| REQ: EXACTLY_ONE | ||
|
|
||
| - KEY: | ||
| NAME: opt_gradient_clip_norm | ||
| REQ: EXACTLY_ONE | ||
|
|
||
| - KEY: | ||
| NAME: gradient_accumulation_steps | ||
| REQ: EXACTLY_ONE | ||
| CHECK: " v['value'] > 0 " | ||
|
|
||
| - KEY: | ||
| NAME: eval_samples | ||
| REQ: EXACTLY_ONE | ||
| CHECK: " v['value'] == 1024 " | ||
|
|
||
| - KEY: | ||
| NAME: eval_accuracy | ||
| REQ: AT_LEAST_ONE | ||
| CHECK: | ||
| - "'epoch_num' in v['metadata']" | ||
| ATLEAST_ONE_CHECK: "(v['value'] <= 2.7) and v['value'] > 0.0" # TODO(dfridman): Update this once we have the exact value | ||
|
|
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.