Skip to content

Commit

Permalink
add description about data path in config (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
seungwonpark committed Nov 10, 2019
1 parent 16c3c10 commit e6b28a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ pip install -r requirements.txt

## Train & Tensorboard

- `python trainer.py -c [config yaml file] -n [name of the run]`
- `python trainer.py -c [config yaml file] -n [name of the run]
- `cp config/default.yaml config/config.yaml` and then edit `config.yaml`
- Write down the root path of train/validation files to 2nd/3rd line.
- Each path should contain pairs of `*.wav` with corresponding (preprocessed) `*.mel` file.
- The data loader parses list of files within the path recursively.
- `tensorboard --logdir logs/`

## Pretrained model
Expand Down
2 changes: 1 addition & 1 deletion config/default.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
data: # root path of train/validation data (in absolute path)
data: # root path of train/validation data (either relative/absoulte path is ok)
train: ''
validation: ''
---
Expand Down

0 comments on commit e6b28a5

Please sign in to comment.