You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 8, 2019. It is now read-only.
Hi, I am having an issue running ./run-vctk.sh in my ubuntu 18.04 machine. It outputs this:
All data and model will be saved at /home/eman
Processing dataset ... Process training ./run-vctk.sh: line 29: 14789 Killed python3 $REPO_VCTK_DIR/preprocess.py --data_dir $VCTK_DIR --output_dir $VCTK_PROCESSED_DIR Writing train TFRecord ... /usr/local/lib/python3.6/dist-packages/h5py/__init__.py:37: FutureWarning: Conversion of the second argument of issubdtype from floattonp.floatingis deprecated. In future, it will be treated asnp.float64 == np.dtype(float).type`.
from ._conv import register_converters as _register_converters
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/numpy/lib/npyio.py", line 428, in load
return pickle.load(fid, **pickle_kwargs)
EOFError: Ran out of input
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "./vctk/write_tfrecord.py", line 29, in
inputs = np.load(args.inputs).item()
File "/usr/local/lib/python3.6/dist-packages/numpy/lib/npyio.py", line 431, in load
"Failed to interpret file %s as a pickle" % repr(file))
OSError: Failed to interpret file '/home/eman/VCTK-Corpus/processed/train.feat.npy' as a pickle
Writing test TFRecord ...
/usr/local/lib/python3.6/dist-packages/h5py/init.py:37: FutureWarning: Conversion of the second argument of issubdtype from float to np.floating is deprecated. In future, it will be treated as np.float64 == np.dtype(float).type.
from ._conv import register_converters as _register_converters
Traceback (most recent call last):
File "./vctk/write_tfrecord.py", line 29, in
inputs = np.load(args.inputs).item()
File "/usr/local/lib/python3.6/dist-packages/numpy/lib/npyio.py", line 372, in load
fid = open(file, "rb")
FileNotFoundError: [Errno 2] No such file or directory: '/home/eman/VCTK-Corpus/processed/test.feat.npy'
Building Vocab table
Traceback (most recent call last):
File "./vctk/build_vocab.py", line 7, in
f = np.load(sys.argv[1]).item()
File "/usr/local/lib/python3.6/dist-packages/numpy/lib/npyio.py", line 372, in load
fid = open(file, "rb")
FileNotFoundError: [Errno 2] No such file or directory: '/home/eman/VCTK-Corpus/processed/train.label.npy'
Training ...
/usr/local/lib/python3.6/dist-packages/h5py/init.py:37: FutureWarning: Conversion of the second argument of issubdtype from float to np.floating is deprecated. In future, it will be treated as np.float64 == np.dtype(float).type.
from ._conv import register_converters as _register_converters
Traceback (most recent call last):
File "train.py", line 116, in
main(args)
File "train.py", line 80, in main
vocab_list = utils.load_vocab(args.vocab)
File "/home/eman/listen-attend-and-spell/utils/vocab_utils.py", line 24, in load_vocab
with open(filename, 'r') as f:
FileNotFoundError: [Errno 2] No such file or directory: '/home/eman/VCTK-Corpus/tfdata/vocab.table'
`
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi, I am having an issue running
./run-vctk.sh
in my ubuntu 18.04 machine. It outputs this:All data and model will be saved at /home/eman
Processing dataset ... Process training ./run-vctk.sh: line 29: 14789 Killed python3 $REPO_VCTK_DIR/preprocess.py --data_dir $VCTK_DIR --output_dir $VCTK_PROCESSED_DIR Writing train TFRecord ... /usr/local/lib/python3.6/dist-packages/h5py/__init__.py:37: FutureWarning: Conversion of the second argument of issubdtype from
floatto
np.floatingis deprecated. In future, it will be treated as
np.float64 == np.dtype(float).type`.from ._conv import register_converters as _register_converters
Traceback (most recent call last):
File "/usr/local/lib/python3.6/dist-packages/numpy/lib/npyio.py", line 428, in load
return pickle.load(fid, **pickle_kwargs)
EOFError: Ran out of input
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "./vctk/write_tfrecord.py", line 29, in
inputs = np.load(args.inputs).item()
File "/usr/local/lib/python3.6/dist-packages/numpy/lib/npyio.py", line 431, in load
"Failed to interpret file %s as a pickle" % repr(file))
OSError: Failed to interpret file '/home/eman/VCTK-Corpus/processed/train.feat.npy' as a pickle
Writing test TFRecord ...
/usr/local/lib/python3.6/dist-packages/h5py/init.py:37: FutureWarning: Conversion of the second argument of issubdtype from
float
tonp.floating
is deprecated. In future, it will be treated asnp.float64 == np.dtype(float).type
.from ._conv import register_converters as _register_converters
Traceback (most recent call last):
File "./vctk/write_tfrecord.py", line 29, in
inputs = np.load(args.inputs).item()
File "/usr/local/lib/python3.6/dist-packages/numpy/lib/npyio.py", line 372, in load
fid = open(file, "rb")
FileNotFoundError: [Errno 2] No such file or directory: '/home/eman/VCTK-Corpus/processed/test.feat.npy'
Building Vocab table
Traceback (most recent call last):
File "./vctk/build_vocab.py", line 7, in
f = np.load(sys.argv[1]).item()
File "/usr/local/lib/python3.6/dist-packages/numpy/lib/npyio.py", line 372, in load
fid = open(file, "rb")
FileNotFoundError: [Errno 2] No such file or directory: '/home/eman/VCTK-Corpus/processed/train.label.npy'
Training ...
/usr/local/lib/python3.6/dist-packages/h5py/init.py:37: FutureWarning: Conversion of the second argument of issubdtype from
float
tonp.floating
is deprecated. In future, it will be treated asnp.float64 == np.dtype(float).type
.from ._conv import register_converters as _register_converters
Traceback (most recent call last):
File "train.py", line 116, in
main(args)
File "train.py", line 80, in main
vocab_list = utils.load_vocab(args.vocab)
File "/home/eman/listen-attend-and-spell/utils/vocab_utils.py", line 24, in load_vocab
with open(filename, 'r') as f:
FileNotFoundError: [Errno 2] No such file or directory: '/home/eman/VCTK-Corpus/tfdata/vocab.table'
`
The text was updated successfully, but these errors were encountered: