Skip to content

Commit

Permalink
fix reinfo train data
Browse files Browse the repository at this point in the history
  • Loading branch information
ntt123 committed May 6, 2021
1 parent a93daad commit b86fc00
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
train_data/
test_data/
assets/reinfo/
# IDE files
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Download reinfo dataset
-----------------------

```sh
bash ./scripts/download_reinfo_dataset.sh
bash ./scripts/download_aligned_reinfo_dataset.sh
```


Expand Down
7 changes: 7 additions & 0 deletions scripts/download_aligned_reinfo_dataset.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
data_root="./train_data" # modify this
pushd .
mkdir -p $data_root
cd $data_root
gdown --id 1Pe-5lKT_lZsliv2WxQDai2mjhI9ZMFlj -O reinfo.zip
unzip reinfo.zip
popd
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

__version__ = '0.1'
__version__ = '0.1.1'
url = 'https://github.com/ntt123/vietTTS'

install_requires = ['tabulate', 'optax', 'jax', 'jaxlib', 'einops', 'librosa',
Expand Down
2 changes: 1 addition & 1 deletion vietTTS/nat/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class FLAGS(Namespace):
# ckpt
ckpt_dir = Path('assets/reinfo/nat')
data_dir = Path('assets/reinfo/data')
data_dir = Path('test_data')
data_dir = Path('train_data')


class DurationInput(NamedTuple):
Expand Down

0 comments on commit b86fc00

Please sign in to comment.