Skip to content

Commit

Permalink
Merge pull request keithito#131 from pawelkopec/fix_dataset_name
Browse files Browse the repository at this point in the history
Fix LJSpeech dataset name
  • Loading branch information
keithito authored Mar 18, 2018
2 parents 8edcd55 + 4b6de95 commit e90b96a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Pull requests are welcome!
After unpacking, your tree should look like this for LJ Speech:
```
tacotron
|- LJSpeech-1.0
|- LJSpeech-1.1
|- metadata.csv
|- wavs
```
Expand Down
2 changes: 1 addition & 1 deletion preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def preprocess_blizzard(args):


def preprocess_ljspeech(args):
in_dir = os.path.join(args.base_dir, 'LJSpeech-1.0')
in_dir = os.path.join(args.base_dir, 'LJSpeech-1.1')
out_dir = os.path.join(args.base_dir, args.output)
os.makedirs(out_dir, exist_ok=True)
metadata = ljspeech.build_from_path(in_dir, out_dir, args.num_workers, tqdm=tqdm)
Expand Down

0 comments on commit e90b96a

Please sign in to comment.