nasty bandaid if there's no validation dataset specified during training (for example, during finetunes)
This commit is contained in:
parent
7f4388e591
commit
5c8694db8e
|
@ -1,3 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
until $@; do echo retrying && pkill python3; done
|
||||
until $@; do echo retrying; done
|
||||
|
|
|
@ -163,6 +163,11 @@ class Dataset(_Dataset):
|
|||
self.training = training
|
||||
self.dataset_type = "training" if self.training else "validation"
|
||||
self.dataset = cfg.dataset.training if self.training else cfg.dataset.validation
|
||||
|
||||
# to-do: do not do validation if there's nothing in the validation
|
||||
# this just makes it be happy
|
||||
if len(self.dataset) == 0:
|
||||
self.dataset = cfg.dataset.training
|
||||
|
||||
self.paths_by_spkr_name = _load_paths(self.dataset, self.dataset_type)
|
||||
self.paths = list(itertools.chain.from_iterable(self.paths_by_spkr_name.values()))
|
||||
|
|
Loading…
Reference in New Issue
Block a user