tensorflow
-
Python3.7.3安装TensorFlow和OpenCV3
根据python的版本进行下载相应的文件 一、安装TensorFlow 进入网址https://pypi.org/project/tensorflow/#files下载TensorFlow文件 进入下载好的文件目录,在创建的虚拟环境进行安装 最后import tensorflow安装成功 二、安装OpenCV 进入网址https://www.…
-
TensorFlow入门:Graph
TensorFlow的计算都是基于图的。 如果不特殊指定,会使用系统默认图。只要定义了操作,必然会有一个图(自定义的或启动默认的)。 自定义图的方法: g=tf.Graph() 查看系统当前的图: tf.get_default_graph() 如果想讲自定义的图设置为默认图,可使用如下指令: g.as_default() 在某个图内定义变量及操作(’coll…
-
TensorFlow SSD代码的运行,小的修改
原始代码地址 需要注意的地方: 1.需要将checkpoint文件解压,修改代码中checkpoint目录为正确。 2.需要修改img读取地址 改动的地方:原始代码检测后图像分类是数字号,不能直接可读,如下 修改代码后的结果如下: 修改代码文件visualization.py即可。代码如下:(修改部分被注释包裹,主要是读list,按数字查key值,并…
-
AttributeError: module ‘tensorflow’ has no attribute ‘get_default_graph’
解决办法:使用tf.compat.v1.get_default_graph获取图而不是tf.get_default_graph。
-
AttributeError: module ‘tensorflow’ has no attribute ‘placeholder’
用import tensorflow.compat.v1 as tftf.disable_v2_behavior()替换import tensorflow as tf
-
Tensorflow坑之:ImportError: Could not find ‘cudnn64_7.dll’.
问题描述: ImportError: Could not find ‘cudnn64_7.dll’. TensorFlow requires that this DLL be installed in a directory that is named in your %PATH% environment variable. Note that instal…
-
深度学习框架之TensorFlow的概念及安装(ubuntu下基于pip的安装,IDE为Pycharm)
2015年11月9日,Google发布人工智能系统TensorFlow并宣布开源。 TensorFlow 是使用数据流图进行数值计算的开源软件库。也就是说,TensorFlow 使用图(graph)来表示计算任务。图中的节点表示数学运算,边表示运算之间用来交流的多维数组(也就是tensor,张量)。TensorFlow 灵活的架构使得你可以将计算过程部署到一…
-
tensorflow里的stop_if_no_decrease_hook坑
程序里有个bug,提示 early_stopping_hook = tf.contrib.estimator.stop_if_no_decrease_hook(AttributeError: module ‘tensorflow.contrib.estimator’ has no attribute ‘stop_if_no_decrease_hook’ 查看…
-
【pip 安装TensorFlow 】 Could not install packages due to an EnvironmentError: [WinError 5] 拒绝访问。:
【报错】 Could not install packages due to an EnvironmentError: [WinError 5] 拒绝访问。:’C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\pip-uninstall-6z7keac8\\program files\\anaconda3\\lib\\si…
-
如何用Tensorflow训练模型成pb文件和和如何加载已经训练好的模型文件
https://blog.csdn.net/weixin_44388679/article/details/107458536 https://blog.csdn.net/u014432647/article/details/75276718