-
Notifications
You must be signed in to change notification settings - Fork 221
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
Add Fisher English #374
Add Fisher English #374
Conversation
Thanks, this looks great! Could you also update the table that lists all available corpora in LMK if it's otherwise ready to merge. |
Added Fisher corpus to |
lhotse/recipes/fisher_english.py
Outdated
output_dir = Path(output_dir) | ||
output_dir.mkdir(parents=True, exist_ok=True) | ||
recordings.to_json(output_dir / 'recordings.json') | ||
supervisions.to_json(output_dir / 'supervisions.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.
Since Fisher is large at ~2000h, I suggest writing both of those as jsonl
instead, like this:
supervisions.to_json(output_dir / 'supervisions.json') | |
supervisions.to_file(output_dir / 'supervisions.jsonl.gz') |
It will enable others to use the lazy manifest mechanism if needed.
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, will change now.
Thanks, great work! |
Fisher English recipe.