
tensorflow
Lisa_Ren_123
这个作者很懒,什么都没留下…
展开
-
tensorflow 报错unitialized value 解决方法
Attempting to use uninitialized value mean_squared_error/total如图:原因一:使用了tf.metrics.mean_squared_error(labels, predictions)解决方法:1.将其换成tf.losses.mean_squared_error(labels, preditions)或者2.加一个tf.lacal_var...原创 2018-05-04 19:10:07 · 911 阅读 · 0 评论 -
python3 slim微调时 数据转TFRecord和tf.ConfigProto设置问题
采用InceptionV3来微调自己的数据一.GPU问题Cannot assign a device for operation 'InceptionV3/AuxLogits/Conv2d_2b_1x1/weights/RMSProp1': Could not satisfy explicit device specification '/device:GPU:0' because no supp...原创 2018-05-04 19:21:07 · 1695 阅读 · 10 评论 -
谷歌Object Detection API(一):protoc Windows安装与使用
1.从https://github.com/tensorflow/models下载项目,也可以通过git下载:git clone https://github.com/tensorflow/models.git2.解压后:\models-master\research\object_detection\protos里面有很多proto文件。关于proto文件,可以查看官方文档https://dev...原创 2018-05-04 23:13:44 · 726 阅读 · 0 评论 -
import tensorflow遇到的问题 ImportError: Could not find 'msvcp140.dll'
ImportError: Could not find ‘msvcp140.dll’. TensorFlow requires that this DLL be installed in a directory that is named in your %PATH% environment variable. You may install this DLL by downloading Vis...原创 2018-07-31 13:44:01 · 10014 阅读 · 7 评论 -
tensorflow各种初始化函数
def transformAngle(alpha, theta, beta): """ return transform matrix """ Z = np.array([[cos(alpha), -sin(alpha), 0, 0], [sin(alpha), cos(alpha), 0, 0], ..原创 2019-01-23 15:05:35 · 809 阅读 · 0 评论