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
I followed the installation of TensorFlow binding for WarpRNNT and finished processing dependencies for warprnnt-tensorflow==0.1. But when I "import warprnnt_tensorflow" to test, I met the following error. Although I "export TF_CXX11_ABI=1" followed by author's answer to baidu-research/warp-ctc#92 and reinstall, the error is still existed. Can anyone solve this? By the way, I used "pip install tensorflow==2.0.0b1" and it works well.
The text was updated successfully, but these errors were encountered:
I've solved this issue by changing std lib to c++17 (in setup.py) with tensorflow==2.10.0. you may try c++14 if this fails.
extra_compile_args = ['-std=c++17', '-fPIC', '-D_GLIBCXX_USE_CXX11_ABI=' + TF_CXX11_ABI]
I followed the installation of TensorFlow binding for WarpRNNT and finished processing dependencies for warprnnt-tensorflow==0.1. But when I "import warprnnt_tensorflow" to test, I met the following error. Although I "export TF_CXX11_ABI=1" followed by author's answer to baidu-research/warp-ctc#92 and reinstall, the error is still existed. Can anyone solve this? By the way, I used "pip install tensorflow==2.0.0b1" and it works well.
The text was updated successfully, but these errors were encountered: