This repository was archived by the owner on Sep 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 814
IWSLT testing to start from compressed file #1596
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
c7c5dbe
start from outermost tar for consistency and better testing.
erip 25b10dc
fix bug with inner path location and add test splits for better cover…
erip 50f9f7e
fix comment.
erip dbd99b4
incorporate feedback from review.
erip d502709
revert temp_dataset_dir temporarily but add test support for all supp…
erip 2fb3275
fix flake.
erip c4df43e
expand split, src, and tgt appropriately.
erip 9ae1fd3
pass langpair to constructor so appropriate files are searched.
erip 6156ffe
parameterize dev and test sets.
erip d242b4f
fix flake.
erip 264a298
refactor logic so we read previously-cleaned files if they exist so e…
erip 91e2cf2
revert experiment which uses triple as a key since it is unnecessary.
erip 4446af4
fix testing issues
parmeet 386b40b
fix issues with temporary directory
parmeet 1ea385e
create unique base directories for test_iwslt2016_split_argument
parmeet 05a042a
fix comments
parmeet caac508
fix flake
parmeet 7e93369
fix flake
parmeet f66ae99
Revert "fix flake"
parmeet 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
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.
This addition of
temp_dataset_diris actually not necessary anymore now that you're deleting this directory at the end of this function. If the directory wasn't being deleted, this would be relevant since otherwise the caching logic would skip extracting the files (since the files exist within this dir). We can still keep this for consistency with the other tests.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.
that's a good point. let me see where to remove the redundancy.
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.
OK, so I think let's keep it consistent with other datasets test. I just removed the deletion of temp_datset_dir.
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.
Sure that makes sense to me!