Skip to content
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/update audio to text dataset #12045

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
Open
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion nemo/collections/asr/data/audio_to_text_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,8 @@ def get_tarred_dataset(
logging.warning(f"dataset does not have explicitly defined labels")

if 'max_utts' in config:
raise ValueError('"max_utts" parameter is not supported for tarred datasets')
logging.warning('"max_utts" parameter is not supported for tarred datasets')
# raise ValueError('"max_utts" parameter is not supported for tarred datasets')
nithinraok marked this conversation as resolved.
Show resolved Hide resolved

for dataset_idx, (tarred_audio_filepath, manifest_filepath) in enumerate(
zip(tarred_audio_filepaths, manifest_filepaths)
Expand Down
Loading