-
Notifications
You must be signed in to change notification settings - Fork 473
Update deepseek recipes to use bridge, add recipe tests #895
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
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
5f31518
update deepseek recipes and add tests
yaoyu-33 61a13d8
api fix
yaoyu-33 b96243e
utils fix
yaoyu-33 98ed0fa
fix recipes and tests
yaoyu-33 71e0347
update dsv3 recipe
yaoyu-33 2ddabf5
disable deepseek v3 pretrain test, taking too long
yaoyu-33 005358f
lint
yaoyu-33 61212fb
update deepseek recipes to match old
yaoyu-33 05d003f
pull back some configs from old recipes
yaoyu-33 f416c26
update dsv3 options
yaoyu-33 4d339bd
Revert "disable deepseek v3 pretrain test, taking too long"
yaoyu-33 b1c0f25
fix test
yaoyu-33 fc995a3
update deepseek v2 recipe
yaoyu-33 c1e76ee
test fix
yaoyu-33 df57818
Merge branch 'refs/heads/main' into yuya/update-deepseek-recipes
yaoyu-33 c5e065f
update old configs
yaoyu-33 d718b2b
temp disable dsv3 test
yaoyu-33 85779ee
lint
yaoyu-33 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| """DeepSeek recipe exports. | ||
|
|
||
| This module re-exports AutoBridge-based pretrain config helpers for DeepSeek | ||
| models (V2, V2-Lite, V3). | ||
| """ | ||
|
|
||
| # DeepSeek V2/V2-Lite | ||
| from .deepseek_v2 import ( | ||
| deepseek_v2_lite_pretrain_config, | ||
| deepseek_v2_pretrain_config, | ||
| ) | ||
|
|
||
| # DeepSeek V3 | ||
| from .deepseek_v3 import ( | ||
| deepseek_v3_pretrain_config, | ||
| deepseek_v3_pretrain_config_32nodes, | ||
| ) | ||
|
|
||
|
|
||
| __all__ = [ | ||
| # DeepSeek V2/V2-Lite | ||
| "deepseek_v2_pretrain_config", | ||
| "deepseek_v2_lite_pretrain_config", | ||
| # DeepSeek V3 | ||
| "deepseek_v3_pretrain_config", | ||
| "deepseek_v3_pretrain_config_32nodes", | ||
| ] |
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.
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.