c语言sscanf函数的用法是什么
318
2022-08-26
mac安装warpctc-pytorch
最近在做语音识别项目的训练,发现需要安装pytorch版本的ctc,这个包需要编译,这里我来分享一下我的安装过程:
git clone warp-ctcmkdir build; cd buildcmake ..
你可能会遇见下面的错误:
zsh: command not found: cmake
需要安装一下cmake:
brew install cmake
安装过程看网速了;然后:
make -j4
你可能会遇见下面的错误:
Scanning dependencies of target warpctc[ 20%] Building CXX object CMakeFiles/warpctc.dir/src/ctc_entrypoint.cpp.oclang: error: unsupported option '-fopenmp'make[2]: *** [CMakeFiles/warpctc.dir/src/ctc_entrypoint.cpp.o] Error 1make[1]: *** [CMakeFiles/warpctc.dir/all] Error 2make: *** [all] Error 2
解决方法:
build/CMakeCache.txt//compile warp-ctc with openmp.// ON -> OFFWITH_OMP:BOOL=OFF
然后运行:
cd ..cd pytorch_bindingpython setup.py install
你可能会遇见下面的问题:
warning: include path for stdlibc++ headers not found; pass '-stdlib=libc++' on the command line to use the libc++ standard library instead [-Wstdlibcxx-not-found]src/binding.cpp:1:10: fatal error: 'iostream' file not found#include
在安装之前指定一下target和CXX参数就行了:
MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py install
参考文献
[1]. PyTorch bindings for Warp-CTC on MacOS
[2].src/binding.cpp:1:10: fatal error: 'iostream' file not found. https://github.com/SeanNaren/warp-ctc/issues/129
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~