-
Notifications
You must be signed in to change notification settings - Fork 27k
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
fix: Change is_last chunk calc and add conditional break in chunk_iter #21612
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
36db690
fix: Change is_last chunk calc and add conditional break
750c914
format fix
0440ddf
account for 0 and full stride_rights, add comment
5ebeceb
add new test
b85c150
make style
0239965
update slow whisper asr test timestamps
a87c9f1
use nested_simplify on output and round timestamp to hundreths place
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 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 |
---|---|---|
|
@@ -526,7 +526,7 @@ def test_whisper_timestamp_prediction(self): | |
|
||
output = pipe(array, chunk_length_s=10) | ||
self.assertDictEqual( | ||
output, | ||
nested_simplify(output), | ||
{ | ||
"chunks": [ | ||
{"text": " A man said to the universe, Sir, I exist.", "timestamp": (0.0, 5.5)}, | ||
|
@@ -548,11 +548,11 @@ def test_whisper_timestamp_prediction(self): | |
}, | ||
{ | ||
"text": " the thousands of spectators, retrievality is not worth thinking about.", | ||
"timestamp": (19.6, 24.98), | ||
"timestamp": (19.6, 26.66), | ||
}, | ||
{ | ||
"text": " His instant panic was followed by a small, sharp blow high on his chest.", | ||
"timestamp": (24.98, 30.98), | ||
"timestamp": (26.66, 31.06), | ||
}, | ||
], | ||
"text": ( | ||
|
@@ -1110,6 +1110,11 @@ def test_chunk_iterator_stride(self): | |
self.assertEqual([o["stride"] for o in outs], [(90, 0, 0), (30, 20, 0)]) | ||
self.assertEqual([o["input_values"].shape for o in outs], [(1, 90), (1, 30)]) | ||
|
||
outs = list(chunk_iter(inputs, feature_extractor, 36, 6, 6, ratio)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Roughly scaled down params from the example in the issue |
||
self.assertEqual(len(outs), 4) | ||
self.assertEqual([o["stride"] for o in outs], [(36, 0, 6), (36, 6, 6), (36, 6, 6), (28, 6, 0)]) | ||
self.assertEqual([o["input_values"].shape for o in outs], [(1, 36), (1, 36), (1, 36), (1, 28)]) | ||
|
||
inputs = torch.LongTensor([i % 2 for i in range(100)]) | ||
input_values = feature_extractor(inputs, sampling_rate=feature_extractor.sampling_rate, return_tensors="pt")[ | ||
"input_values" | ||
|
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 is the "biggest" change, and yeah, makes sense.