-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
[Hackathon 7th] fix Voc5/Jets/TTS2 with CSMSC #3906
Conversation
Thanks for your contribution! |
# split data into 3 sections | ||
num_train = 9800 | ||
num_dev = 100 | ||
# split data into 3 sections, the max number of dev/test is 10% or 100 |
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.
在数据集固定的情况下,不建议进行修改
# split data into 3 sections, the max number of dev/test is 10% or 100 | ||
num_dev = min(int(len(wav_files) * 0.1), 100) | ||
num_train = len(wav_files) - num_dev * 2 |
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.
# split data into 3 sections, the max number of dev/test is 10% or 100 | |
num_dev = min(int(len(wav_files) * 0.1), 100) | |
num_train = len(wav_files) - num_dev * 2 | |
# split data into 3 sections | |
num_train = 9800 | |
num_dev = 100 |
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.
LGTM
PR types
Others
PR changes
Others
Describe