Replies: 1 comment
-
>>> reuben |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
>>> scarlettsix
[June 12, 2019, 11:32pm]
I am using my own data try to train, I wrote a shell script as follows: slash
slash #!/bin/sh slash
set -xe slash
if slash [ ! -f DeepSpeech.py slash ]; then slash
echo 'Please make sure you run this from DeepSpeech's top level
directory.' slash
exit 1 slash
fi; slash
if slash [ -d ' slash ${COMPUTE_KEEP_DIR}' slash ]; then slash
checkpoint_dir= slash $COMPUTE_KEEP_DIR slash
else slash
checkpoint_dir= slash $(python -c 'from xdg import BaseDirectory as xdg;
print(xdg.save_data_path('DeepSpeech/ slash $yihong'))') slash
fi slash
python -u DeepSpeech.py slash
' slash $' slash
However, I got this error: slash
InvalidArgumentError (see above for traceback): Multiple OpKernel
registrations match NodeDef slash 'node tensors/component_0 (defined at
/home/tom/DeepSpeech/util/feeding.py:95) slash ': 'op: 'Const' device_type:
'GPU' constraint { name: 'dtype' allowed_values { list { type: DT_INT32
} } }' and 'op: 'Const' device_type: 'GPU' constraint { name: 'dtype'
allowed_values { list { type: DT_INT32 } } } host_memory_arg: 'output'' slash
slash [ slash [node tensors/component_0 (defined at
/home/tom/DeepSpeech/util/feeding.py:95) slash ] slash ] slash
It seems like tensorflow seq2seq problem. slash
Can anyone help me to figure out? slash
Thank you
[This is an archived TTS discussion thread from discourse.mozilla.org/t/invalidargument-error-for-deepspeech]
Beta Was this translation helpful? Give feedback.
All reactions