-
Notifications
You must be signed in to change notification settings - Fork 1
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
Feature/data processing #110
base: main
Are you sure you want to change the base?
Conversation
…ainst/coral into feature/data_processing
…ature/data_processing
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! Nice better default for dataset probabilities as well. Only have a minor change.
Also, do we know for sure that the do_normalize
argument works for both Wav2vec and Whisper models?
audio_column: str | None, | ||
convert_numerals: bool, | ||
normalize_audio: bool = False, |
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.
No need to include a default here, as you're including the argument explicitly when calling the function. Keeping it as a default could lead to silent errors:
normalize_audio: bool = False, | |
normalize_audio: bool, |
added support for audio normalization and changed default sampling probs for multi-dataset trainings