tensorrflow
计算机视觉-Archer
专注于计算机视觉的[显著、伪装物体检测][图像分割][扩散模型]方向,分享“读论文-写论文-写代码”过程的爬坑经验~
展开
-
tensorflow的一些知识
encoder = gdet.create_box_encoder(model_filename, batch_size=1)class ImageEncoder(object): # TODO ImageEncoder def __init__(self, checkpoint_filename, input_name="images", ou...原创 2018-12-17 23:25:08 · 1013 阅读 · 0 评论 -
InternalError: Failed to create session.
版权声明:本文为博主Victor 原创文章,未经博主Victor允许不得转载。This article is written by Blogger Victor, it coule be tranferred to under your name only gotten Victor's Permission. https://blog.csdn.net/u0...原创 2018-12-12 15:17:23 · 1390 阅读 · 0 评论 -
载入tensorflow出现错误,ImportError: libcublas.so.9.0
https://blog.csdn.net/gsch_12/article/details/79368990原创 2018-11-03 23:35:58 · 304 阅读 · 0 评论 -
查看版本号 tensorflow,keras,theano,cuda等
下面是我未来人类笔记本ubuntu16.04目录1 keras2 theano3 tensorflow4 cuda5 numpy6 sklean7 python8 opencv9. 查看cuda版本10 condakeras中查看各类版本号因为在使用keras中难免要升级,所以我们经常要查看自己使用的版本号,命令如下:1.查看k...原创 2018-11-03 22:41:41 · 4042 阅读 · 0 评论 -
ubuntu上安装keras + tensorflow
原作者 https://blog.csdn.net/u012033027/article/details/70314342 keras最近很火,它是一个较高层次的深度学习框架,后端可以使用tensorflow或者theano。尝试着在ubuntu上面安装了keras和tensorflow,过程不算麻...转载 2018-10-18 21:55:57 · 207 阅读 · 0 评论 -
tensorflow讲堂 Saver的用法
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u011500062/article/details/51728830 Saver的用法1. Saver的背景介绍 我们经常在训练完一个模型之后希望保存训练的结果,这些结...转载 2018-10-05 11:06:45 · 198 阅读 · 0 评论 -
tensorflow讲堂 sess.run(tf.global_variables_initializer()) 做了什么?
原 tensorflow学习笔记:sess.run(tf.global_variables_initializer()) 做了什么? 2017年10月20日 09:05:13 ke1th 阅读数:12773更多 <div class...转载 2018-10-05 10:34:11 · 5490 阅读 · 0 评论 -
tensorflow讲堂 tf.expand_dims()
tf.expand_dims()Functiontf.expand_dims(input, axis=None, name=None, dim=None)Inserts a dimension of 1 into a tensor’s shape. 在第axis位置增加一个维度Given a tensor in...转载 2018-10-04 23:05:04 · 318 阅读 · 0 评论 -
tensorflow讲堂 tf.placeholder()
tf.placeholder(dtype, shape=None, name=None)此函数可以理解为形参,用于定义过程,在执行的时候再赋具体的值 参数: dtype:数据类型。常用的是tf.float32,tf.float64等数值类型 shape:数据形状。默认是None,就是一维值,也可以是多维,比如[2,3], [None, 3]表示列是3,行不定 name:名称...转载 2018-10-04 21:50:04 · 156 阅读 · 0 评论 -
anaconda安装完找不到.jupyter目录
https://blog.csdn.net/u010100466/article/details/77543346原文链接 anaconda安装完找不到.jupyter目录 2017年08月24日 23:26:06 binvang 阅读数:3901 ...转载 2018-10-11 18:50:44 · 2503 阅读 · 0 评论 -
TensorFlow 到底有几种模型格式?
用过 TensorFlow 时间较长的同学可能都发现了 TensorFlow 支持多种模型格式,但这些格式都有什么区别?怎样互相转换?今天我们来一一探索。1. CheckPoint(*.ckpt)在训练 TensorFlow 模型时,每迭代若干轮需要保存一次权值到磁盘,称为“checkpoi...转载 2018-09-26 15:14:08 · 749 阅读 · 0 评论 -
tensorflow-gpu安装教程_win7环境
Ben课程,第一周以及9-1视频第一步:准备工作准备1:查看自己电脑显卡支持的cuda版本https://blog.csdn.net/Candy_GL/article/details/79435151准备2:下载cuDNN历史版本方法https://blog.csdn.net/u011669700/article/details/79031268准备3:下载tensor...原创 2018-09-18 20:33:10 · 291 阅读 · 0 评论 -
tf.stack()与tf.unstack()函数 & tf.constant()
tf.stack()是一个矩阵拼接函数,即将秩为 R 的张量列表堆叠成一个秩为 (R+1) 的张量import tensorflow as tfa = tf.constant([[1,2,3],[4,5,6]])b = tf.constant([[7,8,9],[0,1,7]])c = tf.stack([a,b],axis = 0)with tf.Session() as ...原创 2019-08-01 16:59:24 · 271 阅读 · 0 评论