-
Notifications
You must be signed in to change notification settings - Fork 73
[Parakeet] QVAC-13814 feat: add automated benchmarks for parakeet ctc, eou and sortformer models #991
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
[Parakeet] QVAC-13814 feat: add automated benchmarks for parakeet ctc, eou and sortformer models #991
Changes from 7 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
598c92a
feat: add automated benchmarks for parakeet ctc, eou and sortformer m…
ece2e69
fix: make prebuilds step non-fatal with npm fallback
d511901
fix: use python 3.13 for benchmark client compatibility
f28238d
fix: add named model paths in benchmark server for ctc/eou/sortformer
5905d82
fix: spread named paths at config top level, not inside parakeetConfig
6884c1c
fix: use public cgus repo for sortformer model download
d5b7cef
chore: remove redundant trigger-benchmark-all.sh
0fe11b8
chore: remove scheduled cron trigger from benchmark workflow
11e7df5
fix: correct workflow fallback default and remove dead code in trigge…
e548b49
Merge branch 'main' into feat/parakeet-benchmark-all-models
sharmaraju352 bdf67c0
Merge branch 'main' into feat/parakeet-benchmark-all-models
sharmaraju352 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
25 changes: 25 additions & 0 deletions
25
packages/qvac-lib-infer-parakeet/benchmarks/client/config/config-ctc.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,25 @@ | ||
| server: | ||
| url: "http://localhost:8080/run" | ||
| timeout: 60 | ||
| batch_size: 10 | ||
| lib: "@qvac/transcription-parakeet" | ||
| dataset: | ||
| dataset_type: "librispeech" | ||
| speaker_group: "clean" | ||
| language: "english" | ||
| max_samples: 0 | ||
| wer: | ||
| enabled: true | ||
| cer: | ||
| enabled: true | ||
| model: | ||
| path: "./models/parakeet-ctc-0.6b-onnx" | ||
| sample_rate: 16000 | ||
| audio_format: "s16le" | ||
| model_type: "ctc" | ||
| max_threads: 4 | ||
| use_gpu: false | ||
| caption_enabled: false | ||
| timestamps_enabled: true | ||
| streaming: false | ||
| streaming_chunk_size: 64000 |
25 changes: 25 additions & 0 deletions
25
packages/qvac-lib-infer-parakeet/benchmarks/client/config/config-eou.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,25 @@ | ||
| server: | ||
| url: "http://localhost:8080/run" | ||
| timeout: 120 | ||
| batch_size: 10 | ||
| lib: "@qvac/transcription-parakeet" | ||
| dataset: | ||
| dataset_type: "librispeech" | ||
| speaker_group: "clean" | ||
| language: "english" | ||
| max_samples: 0 | ||
| wer: | ||
| enabled: true | ||
| cer: | ||
| enabled: true | ||
| model: | ||
| path: "./models/parakeet-eou-120m-v1-onnx" | ||
| sample_rate: 16000 | ||
| audio_format: "s16le" | ||
| model_type: "eou" | ||
| max_threads: 4 | ||
| use_gpu: false | ||
| caption_enabled: false | ||
| timestamps_enabled: true | ||
| streaming: true | ||
| streaming_chunk_size: 64000 |
25 changes: 25 additions & 0 deletions
25
packages/qvac-lib-infer-parakeet/benchmarks/client/config/config-sortformer.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,25 @@ | ||
| server: | ||
| url: "http://localhost:8080/run" | ||
| timeout: 180 | ||
| batch_size: 10 | ||
| lib: "@qvac/transcription-parakeet" | ||
| dataset: | ||
| dataset_type: "librispeech" | ||
| speaker_group: "clean" | ||
| language: "english" | ||
| max_samples: 0 | ||
| wer: | ||
| enabled: false | ||
| cer: | ||
| enabled: false | ||
| model: | ||
| path: "./models/sortformer-4spk-v2-onnx" | ||
| sample_rate: 16000 | ||
| audio_format: "s16le" | ||
| model_type: "sortformer" | ||
| max_threads: 4 | ||
| use_gpu: false | ||
| caption_enabled: false | ||
| timestamps_enabled: true | ||
| streaming: false | ||
| streaming_chunk_size: 64000 |
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.