-
Notifications
You must be signed in to change notification settings - Fork 230
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
creating dataset #26
Comments
Hi @taylerpauls, I'm also working through this repo at the moment! If I understand you correctly, I think all you have to do is put your audio files (.mp3s etc) in a new folder under train_samples. So when you instantiate WavenetDataset, you call it like this:
|
Thank you!!
Could you help me understand how the audio_data.py splits up the training vs testing data set ?
Also , if I load a model that is snapshotted would I load the same data file used to train to also validate ?
… On May 12, 2019, at 5:55 AM, thinking-tower ***@***.***> wrote:
Hi @taylerpauls <https://github.com/taylerpauls>, I'm also working through this repo at the moment!
If I understand you correctly, I think all you have to do is put your audio files (.mp3s etc) in a new folder under train_samples. So in when you instantiate WavenetDataset, you call it like this:
data = WavenetDataset(dataset_file='train_samples/<insert_folder>', item_length=model.receptive_field + model.output_length - 1, target_length=model.output_length, file_location='train_samples/<insert_folder>', test_stride=500)
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#26 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AH6VJQYRA7WQKIMEHJKQ5NLPU7SSJANCNFSM4HLJYEEQ>.
|
I'm not too sure about how that works yet... Sorry. |
Hi !!
if I want to use several different examples in my own dataset (ex. 4 different audio clips)
do I need to concatenate them and then put them in a npz file ?
-Tayler
The text was updated successfully, but these errors were encountered: