-
Notifications
You must be signed in to change notification settings - Fork 5
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
How to train with my own data #1
Comments
@todalex thanks for trying this repo! |
@tarepan thanks for you're answer here is the code i used to make a dataset from my audio data: class AudioDataset(data.Dataset):
I do create my Dataset_A and Dataset_B with this implementation of torch.utils.data.Dataset dataset_full = NonParallelSpecDataset() NameError: name 'n_full' is not defined I think problem is with my implementation of Dataset class |
OK, I understand the situation. Can I check our preassumption? |
@tarepan with some changes,yes i changed the dataset download part because it had some error so i changed it like this: NpVCC2016_spec(train=True, download_corpus=True, speakers=["SF1"]) and in the next cell i had some error for Dataset and LightningDataModule so i imported them befor that cell : from torch.utils.data import Dataset and after importing ,the things i copied the DataLoaderPerformance class that is needed in NonParallelSpecDataModule: class DataLoaderPerformance:
and in the next cell because i was unable to have the argparser part i called the DataLoaderPerformance like this: loader_perf = DataLoaderPerformance( in the last cell for training i am running in colab so the import part will have error because of the sys path so i mounted my drive and added the sys path: after all it worked and started traininng |
Hello everyone
I want to start a training for my own data and i ran into problems
I used audioDataloader to make a dataset with torch from the link below
https://github.com/muhdhuz/audioDataloader
and then passed dataset_A and B to NonParallelSpecDataset
after all these works i call tha train(args_scpt, datamodule) but its not working
pleas help me use my own data and tell me what should i do from beginning
The text was updated successfully, but these errors were encountered: