ubuntu tensorflow报错:ValueError:No op named NonMaxSuppressionV3 in defined operations.

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu tensorflow报错:ValueError:No op named NonMaxSuppressionV3 in defined operations.相关的知识,希望对你有一定的参考价值。

参考技术A ubuntu 16.04在tensorflow上测试一个训练好的pb模型时报错:
ValueError:No op named NonMaxSuppressionV3 in defined operations.
原因可能是因为安装的tensorflow版本较低,而调用的pb模型是由更高版本训练得到的,所以需要将原有低版本tf卸载,进行高版本的安装

~$pip uninstall tensorlflow

出现Proceed(y/n)? 输入y即可
Successfully uninstalled tensorflow-1.7.0

查看是否完全卸载
~$pip list
如果列表里没有tensorflow代表卸载完成

安装高版本
pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.12.0-cp36-cp36m-linux_x86_64.whl

然后就等着吧~

安装完成之后查看版本
~$python

Ubuntu编译Protobuf(Base tensorflow-12)报错

 

报错1:

[email protected]:~/dogecoin$ ./autogen.sh
./autogen.sh: 50: ./autogen.sh: autoreconf: not found

参考: https://github.com/dogecoin/dogecoin/issues/529

sudo apt-get install autoconf

 

报错2:

configure.ac:30: error: possibly undefined macro: AC_PROG_LIBTOOL
configure.ac:75 :error: possibly undefined macro: AC_PROG_LIBTOOL If this token is legitimate please use m4_pattern_allow

参考 https://superuser.com/questions/565988/autoconf-libtool-and-an-undefined-ac-prog-libtool

 

in ubuntu:

sudo apt-get install libtool

 




以上是关于ubuntu tensorflow报错:ValueError:No op named NonMaxSuppressionV3 in defined operations.的主要内容,如果未能解决你的问题,请参考以下文章

关于RTX3090,ubuntu20.04环境下安装TensorFlow报错问题

关于RTX3090,ubuntu20.04环境下安装TensorFlow报错问题

关于RTX3090,ubuntu20.04环境下安装TensorFlow报错问题

关于RTX3090,ubuntu20.04环境下安装TensorFlow报错问题

ubuntu tensorflow报错:ValueError:No op named NonMaxSuppressionV3 in defined operations.

Tensorflow报错:InvalidArgumentError: You must feed a value for placeholder tensor 'input_y' wi