We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
File "train.py", line 69, in <module> epochs = int(np.ceil(args.STEPS / len(dataloader))) ZeroDivisionError: division by zero``` my config.yaml ```data: data_location: ./data/ extension: "wav" preprocess: sampling_rate: &samplingrate 16000 signal_length: &signallength 28800000 block_size: &blocksize 256 # must be a power of 2 if using realtime oneshot: false # crop every audio file to exactly signal length out_dir: ./preprocessed/ model: hidden_size: 512 n_harmonic: 100 n_bands: 65 sampling_rate: *samplingrate block_size: *blocksize train: scales: [4096, 2048, 1024, 512, 256, 128] overlap: .75
the len(dataloader) returns a zero instead of the batch size i think, not sure how to fix this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the len(dataloader) returns a zero instead of the batch size i think, not sure how to fix this.
The text was updated successfully, but these errors were encountered: