Skip to content
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

len(dataloader) is zero #34

Open
cliffordmanasseh opened this issue Aug 1, 2022 · 0 comments
Open

len(dataloader) is zero #34

cliffordmanasseh opened this issue Aug 1, 2022 · 0 comments

Comments

@cliffordmanasseh
Copy link

cliffordmanasseh commented Aug 1, 2022

  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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant