-
Notifications
You must be signed in to change notification settings - Fork 40
Improve sample packing #347
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
sfc-gh-truwase
wants to merge
16
commits into
main
Choose a base branch
from
sfc-gh-truwase/sample_packing
base: main
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
Changes from 13 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
14b90bd
Plot DS wall clock timers in W&B
sfc-gh-truwase ff821ba
BC safety
sfc-gh-truwase e47c58c
Fix bug
sfc-gh-truwase e20671e
Debug sample lens
sfc-gh-truwase 61fb86e
Merge branch 'main' of https://github.com/snowflakedb/ArcticTraining …
sfc-gh-truwase 5cc68ec
Sample packing improvements
sfc-gh-truwase 41c56e7
Cleanup
sfc-gh-truwase 12a4fbf
Formatting and cleanup
sfc-gh-truwase 4b8f8f6
Formatting and cleanup
sfc-gh-truwase 9945e6a
Formatting
sfc-gh-truwase b0a2c65
UT fix
sfc-gh-truwase e5b8e4d
Update arctic_training/data/sft_factory.py
sfc-gh-truwase 982daaa
Fix naming and cleanup
sfc-gh-truwase f1c13e7
Local sorting
sfc-gh-truwase fa91599
PR feedback
sfc-gh-truwase cf1b04a
Merge branch 'main' into sfc-gh-truwase/sample_packing
sfc-gh-truwase 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
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to require a new method for this? Why not extend the existing
create_dataloader? This would avoid the need to add this new method for each data factory (_validate_class_method(cls, "create_dataloader_no_shuffle", ["self", "dataset"]))There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I previously extended the
create_dataloaderwith optionalshuffleflag. However, this caused UT failure onArcticTraining/arctic_training/data/factory.py
Line 75 in f472557
It seems the validation does not support optional args, or at least I don't know how to achieve that.
I also didn't want
shuffleto be mandatory forcreate_dataloader. But if this is preferred, I can make that change.What do you prefer?