python
无言*
这个作者很懒,什么都没留下…
展开
-
使用keras.layers.CuDNNGRU训练,在cpu上测试
在GPU上训练使用了keras.layers.CuDNNGRU(dim)在CPU上测试时,将keras.layers.CuDNNGRU(dim)进行了如下替换keras.layers.GRU(dim,reset_after=True)原创 2021-02-23 11:50:18 · 1956 阅读 · 0 评论 -
使用keras.backend.batch_dot获取的shape不匹配问题
import keras.backend as Kimport numpy as npw = K.variable(np.random.randint(10,size=(64, 128, 4, 8)))k = K.variable(np.random.randint(10,size=(64, 128, 8, 16)))z = K.batch_dot(w,k)print(z.shape) #(64, 128, 4, 16)使用K.batch_dot(qw, kw)时,我们想要z的shape.原创 2021-01-18 18:55:15 · 358 阅读 · 0 评论 -
AttributeError: module ‘ahocorasick‘ has no attribute ‘Automaton‘
在使用ahocorasick.Automaton()时,总是提示AttributeError: module 'ahocorasick' has no attribute 'Automaton'原本安装的模块是ahocorasick-python,而ahocorasick.Automaton()用的是pyahocorasick安装pyahocorasick,pip install pyahocorasick,安装后运行还是有这个错误,需要卸载ahocorasick-python...原创 2021-01-14 18:35:36 · 2538 阅读 · 4 评论 -
openvino .pd文件编译.xml,.bin文件
1、yolov3python /app/intel/openvino/deployment_tools/model_optimizer/mo_tf.py --input_model frozen_yolov3_model.pb --tensorflow_use_custom_operations_config /app/intel/openvino/deployment_tools/mode...原创 2019-11-08 17:22:17 · 926 阅读 · 0 评论 -
ValueError: Cannot find the variable that is an input to the ReadVariableOp.
在.h5转 .pb文件时,graph_util.convert_variables_to_constants出现下图错误当时keras的版本是2.3,降低keras版本pip install keras==2.2,将问题解决原创 2019-11-05 11:08:46 · 2336 阅读 · 3 评论 -
openVINO CMake Error: Could not create named generator Visual Studio
安装完openvino,运行demo_squeezenet_download_convert_run.bat、demo_security_barrier_camera.bat1、一直提示CMake Error: Could not create named generator Visual Studio,如下图所示本机win64 vs2017 openvino R3,将demo_squ...原创 2019-10-09 18:50:26 · 2850 阅读 · 4 评论 -
‘ _jb_nosetest_runner.py: error: unrecognized arguments: ’
将 args = parser.parse_args() 替换为:args, unknown = parser.parse_known_args()原创 2019-08-28 15:15:06 · 4140 阅读 · 1 评论 -
pip install autokeras 时出现No matching distribution found for torch==1.0.1.post2 错误
Could not find a version that satisfies the requirement torch==1.0.1.post2 (from autokeras) (from versions: 0.1.2, 0.1.2.post1) No matching distribution found for torch==1.0.1.post2 (from autokeras)...原创 2019-06-18 17:51:28 · 23672 阅读 · 0 评论 -
windows下python建立c++库:unable to find vcvarsall.bat
我是参考https://www.cnblogs.com/charlieroro/p/8482561.html解决的在搭建tf-openpose-estimation时,在运行:swig -python -c++ pafprocess.i && python3 setup.py build_ext --inplace我是参考https://www.cnb...原创 2019-05-13 10:18:04 · 976 阅读 · 1 评论 -
Microsoft Visual C++ 14.0 is required (Unable to find vcvarsall.bat)
使用pip install安装模块的时候,一直提示Microsoft Visual C++ 14.0 is required (Unable to find vcvarsall.bat)而vs是2017版本的我是通过更新setuptools解决的 pip install --upgrade setuptools...原创 2019-05-06 19:52:40 · 211 阅读 · 0 评论 -
could not install packages due to an EnvironmentError
在pip安装过程中经常会遇到下图问题遇到这个问题后,直接在install 后面加一个--user就可以了例如 pip install --user pkuseg原创 2019-02-12 19:47:57 · 1168 阅读 · 0 评论 -
调用librosa.load() 显示audioread.NoBackendError
windows环境下调用librosa.load读取语音文件时,出现audioread.NoBackendError错误是由ffmpeg造成的,用pip安装每次都安装成功,where ffmpeg查找路径的时候总是提示“用提供的模式无法找到文件”只好通过下面这种方式重新安装一下ffmpeg1、ffmpeg下载地址:https://ffmpeg.zeranoe.com/build...原创 2018-12-08 21:40:37 · 6699 阅读 · 1 评论