-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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 partial audio transcription order: #10379
Conversation
wouldn't it be better to enable pre-sorting for partial audio instead (if possible)? |
Thanks for the suggestion @pzelasko, that needs a whole revamp and done that.
|
Signed-off-by: Nithin Rao Koluguri <nithinraok>
Signed-off-by: Nithin Rao Koluguri <nithinraok>
Signed-off-by: Nithin Rao Koluguri <nithinraok>
Signed-off-by: nithinraok <nithinraok@users.noreply.github.com>
Signed-off-by: nithinraok <nithinraok@users.noreply.github.com>
Signed-off-by: Nithin Rao Koluguri <nithinraok>
Signed-off-by: nithinraok <nithinraok@users.noreply.github.com>
Signed-off-by: Nithin Rao Koluguri <nithinraok>
nemo/collections/multimodal/data/neva/neva_energon_dataset.py
Dismissed
Show dismissed
Hide dismissed
014a6d2
to
6dd2f46
Compare
Signed-off-by: Nithin Rao Koluguri <nithinraok>
Signed-off-by: nithinraok <nithinraok@users.noreply.github.com>
Signed-off-by: Nithin Rao Koluguri <nithinraok>
Signed-off-by: Nithin Rao Koluguri <nithinraok>
Signed-off-by: Nithin Rao Koluguri <nithinraok>
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.
Requires minor changes, but overall nice cleanup of partial transcription
@@ -293,7 +284,7 @@ def main(cfg: TranscriptionConfig) -> Union[TranscriptionConfig, List[Hypothesis | |||
elif isinstance(asr_model, EncDecHybridRNNTCTCModel): | |||
if cfg.decoder_type and cfg.decoder_type not in ['ctc', 'rnnt']: | |||
raise ValueError('Hybrid model only support ctc or rnnt decoding!') | |||
else: # rnnt model, there could be other models needs to be addressed. |
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.
Add a else case in case there's a future model type
filepaths, partial_audio = prepare_audio_data(cfg) | ||
filepaths, sorted_manifest_path = prepare_audio_data(cfg) | ||
|
||
remove_path_after_done = sorted_manifest_path if sorted_manifest_path is not None else None |
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.
What does this flag calculate ?
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 was added previously to clean the temporarily created manifest later.
@@ -783,17 +783,6 @@ def _transcribe_on_begin(self, audio, trcfg: MultiTaskTranscriptionConfig): | |||
trcfg._internal.primary_language = self.tokenizer.langs[0] | |||
logging.debug(f"Transcribing with default setting of {trcfg._internal.primary_language}.") | |||
|
|||
elif isinstance(audio, str): |
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.
Why are we removing manifest ability from multi task model ?
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.
its not removing but same check is now already part of TranscriptionMixin to handle manifest
manifest_filepath = config['manifest_filepath'] | ||
batch_size = config['batch_size'] | ||
else: | ||
manifest_filepath = os.path.join(config['temp_dir'], 'manifest.json') |
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.
When is this else case occuring? Can you add a comment ?
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 from the Transcription mixin where temp_dir was created to create a temp manifest when audio files are passed through list to .transcribe(). Added comment!
@@ -480,6 +481,12 @@ def _transcribe_input_processing(self, audio, trcfg: TranscribeConfig): | |||
|
|||
# Check if audio is a list of strings (filepaths or manifests) | |||
if isinstance(audio[0], str): | |||
trcfg._internal.manifest_filepath = None |
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.
You need to add this argument to the internal config of transcribe above
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.
Done, thank you!
Signed-off-by: Nithin Rao Koluguri <nithinraok>
Signed-off-by: nithinraok <nithinraok@users.noreply.github.com>
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.
Looks good on my end, thanks~!
* fix partial audio transcription order: Signed-off-by: Nithin Rao Koluguri <nithinraok> * update transcribe_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * fix canary transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * for filepaths Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * add override config option Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * clean up Signed-off-by: stevehuang52 <heh@nvidia.com> * completely remove partial audio transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * update doc strings Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * support for translate_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * suggested changes from som Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> --------- Signed-off-by: Nithin Rao Koluguri <nithinraok> Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> Signed-off-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Nithin Rao Koluguri <nithinraok> Co-authored-by: nithinraok <nithinraok@users.noreply.github.com> Co-authored-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Pablo Garay <palenq@gmail.com>
* fix partial audio transcription order: Signed-off-by: Nithin Rao Koluguri <nithinraok> * update transcribe_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * fix canary transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * for filepaths Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * add override config option Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * clean up Signed-off-by: stevehuang52 <heh@nvidia.com> * completely remove partial audio transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * update doc strings Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * support for translate_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * suggested changes from som Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> --------- Signed-off-by: Nithin Rao Koluguri <nithinraok> Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> Signed-off-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Nithin Rao Koluguri <nithinraok> Co-authored-by: nithinraok <nithinraok@users.noreply.github.com> Co-authored-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Pablo Garay <palenq@gmail.com> Signed-off-by: George Armstrong <georgea@nvidia.com>
* add parakeet-tdt_ctc-110m model (#10461) * add parakeet-tdt_ctc-110m model Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> --------- Signed-off-by: Nithin Rao Koluguri <nithinraok> Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> Co-authored-by: Nithin Rao Koluguri <nithinraok> Co-authored-by: nithinraok <nithinraok@users.noreply.github.com> * fix partial audio transcription order: (#10379) * fix partial audio transcription order: Signed-off-by: Nithin Rao Koluguri <nithinraok> * update transcribe_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * fix canary transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * for filepaths Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * add override config option Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * clean up Signed-off-by: stevehuang52 <heh@nvidia.com> * completely remove partial audio transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * update doc strings Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * support for translate_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * suggested changes from som Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> --------- Signed-off-by: Nithin Rao Koluguri <nithinraok> Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> Signed-off-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Nithin Rao Koluguri <nithinraok> Co-authored-by: nithinraok <nithinraok@users.noreply.github.com> Co-authored-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Pablo Garay <palenq@gmail.com> --------- Signed-off-by: Nithin Rao Koluguri <nithinraok> Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> Signed-off-by: stevehuang52 <heh@nvidia.com> Co-authored-by: nithinraok <nithinraok@users.noreply.github.com> Co-authored-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Pablo Garay <palenq@gmail.com>
* add parakeet-tdt_ctc-110m model (#10461) * add parakeet-tdt_ctc-110m model Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> --------- Signed-off-by: Nithin Rao Koluguri <nithinraok> Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> Co-authored-by: Nithin Rao Koluguri <nithinraok> Co-authored-by: nithinraok <nithinraok@users.noreply.github.com> * fix partial audio transcription order: (#10379) * fix partial audio transcription order: Signed-off-by: Nithin Rao Koluguri <nithinraok> * update transcribe_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * fix canary transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * for filepaths Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * add override config option Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * clean up Signed-off-by: stevehuang52 <heh@nvidia.com> * completely remove partial audio transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * update doc strings Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * support for translate_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * suggested changes from som Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> --------- Signed-off-by: Nithin Rao Koluguri <nithinraok> Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> Signed-off-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Nithin Rao Koluguri <nithinraok> Co-authored-by: nithinraok <nithinraok@users.noreply.github.com> Co-authored-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Pablo Garay <palenq@gmail.com> --------- Signed-off-by: Nithin Rao Koluguri <nithinraok> Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> Signed-off-by: stevehuang52 <heh@nvidia.com> Co-authored-by: nithinraok <nithinraok@users.noreply.github.com> Co-authored-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Pablo Garay <palenq@gmail.com> Signed-off-by: Alexandros Koumparoulis <akoumparouli@nvidia.com>
* fix partial audio transcription order: Signed-off-by: Nithin Rao Koluguri <nithinraok> * update transcribe_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * fix canary transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * for filepaths Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * add override config option Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * clean up Signed-off-by: stevehuang52 <heh@nvidia.com> * completely remove partial audio transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * update doc strings Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * support for translate_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * suggested changes from som Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> --------- Signed-off-by: Nithin Rao Koluguri <nithinraok> Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> Signed-off-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Nithin Rao Koluguri <nithinraok> Co-authored-by: nithinraok <nithinraok@users.noreply.github.com> Co-authored-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Pablo Garay <palenq@gmail.com>
* fix partial audio transcription order: Signed-off-by: Nithin Rao Koluguri <nithinraok> * update transcribe_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * fix canary transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * for filepaths Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * add override config option Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * clean up Signed-off-by: stevehuang52 <heh@nvidia.com> * completely remove partial audio transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * update doc strings Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * support for translate_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * suggested changes from som Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> --------- Signed-off-by: Nithin Rao Koluguri <nithinraok> Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> Signed-off-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Nithin Rao Koluguri <nithinraok> Co-authored-by: nithinraok <nithinraok@users.noreply.github.com> Co-authored-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Pablo Garay <palenq@gmail.com> Signed-off-by: Lifu Zhang <tomzhanglf@gmail.com>
* fix partial audio transcription order: Signed-off-by: Nithin Rao Koluguri <nithinraok> * update transcribe_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * fix canary transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * for filepaths Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * add override config option Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * clean up Signed-off-by: stevehuang52 <heh@nvidia.com> * completely remove partial audio transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * update doc strings Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * support for translate_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * suggested changes from som Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> --------- Signed-off-by: Nithin Rao Koluguri <nithinraok> Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> Signed-off-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Nithin Rao Koluguri <nithinraok> Co-authored-by: nithinraok <nithinraok@users.noreply.github.com> Co-authored-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Pablo Garay <palenq@gmail.com> Signed-off-by: Lifu Zhang <tomzhanglf@gmail.com>
* fix partial audio transcription order: Signed-off-by: Nithin Rao Koluguri <nithinraok> * update transcribe_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * fix canary transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * for filepaths Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * add override config option Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * clean up Signed-off-by: stevehuang52 <heh@nvidia.com> * completely remove partial audio transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * update doc strings Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * support for translate_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * suggested changes from som Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> --------- Signed-off-by: Nithin Rao Koluguri <nithinraok> Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> Signed-off-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Nithin Rao Koluguri <nithinraok> Co-authored-by: nithinraok <nithinraok@users.noreply.github.com> Co-authored-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Pablo Garay <palenq@gmail.com> Signed-off-by: Hainan Xu <hainanx@nvidia.com>
* fix partial audio transcription order: Signed-off-by: Nithin Rao Koluguri <nithinraok> * update transcribe_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * fix canary transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * for filepaths Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * add override config option Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * clean up Signed-off-by: stevehuang52 <heh@nvidia.com> * completely remove partial audio transcription Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> * update doc strings Signed-off-by: Nithin Rao Koluguri <nithinraok> * remove unused imports Signed-off-by: Nithin Rao Koluguri <nithinraok> * support for translate_speech.py Signed-off-by: Nithin Rao Koluguri <nithinraok> * suggested changes from som Signed-off-by: Nithin Rao Koluguri <nithinraok> * Apply isort and black reformatting Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> --------- Signed-off-by: Nithin Rao Koluguri <nithinraok> Signed-off-by: nithinraok <nithinraok@users.noreply.github.com> Signed-off-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Nithin Rao Koluguri <nithinraok> Co-authored-by: nithinraok <nithinraok@users.noreply.github.com> Co-authored-by: stevehuang52 <heh@nvidia.com> Co-authored-by: Pablo Garay <palenq@gmail.com>
What does this PR do ?
Collection: ASR
Usage
GitHub Actions CI
The Jenkins CI system has been replaced by GitHub Actions self-hosted runners.
The GitHub Actions CI will run automatically when the "Run CICD" label is added to the PR.
To re-run CI remove and add the label again.
To run CI on an untrusted fork, a NeMo user with write access must first click "Approve and run".
Before your PR is "Ready for review"
Pre checks:
PR Type:
If you haven't finished some of the above items you can still open "Draft" PR.
Who can review?
Anyone in the community is free to review the PR once the checks have passed.
Contributor guidelines contains specific people who can review PRs to various areas.
Additional Information