tensorflow
bt_
这个作者很懒,什么都没留下…
展开
-
Ubuntu系统建立TensorFlow开发环境_基于PyCharm
Ubuntu系统建立TensorFlow开发环境_基于PyCharm 文章目录Ubuntu系统建立TensorFlow开发环境_基于PyCharm软件环境安装Python安装PyCharm安装TensorFlow 软件环境 Ubuntu Kylin 18.04.1 Python 3.5.6 PyCharm Community 2018.2.4 TensorFlow 版本待查 安装Python ...原创 2018-10-03 11:35:25 · 623 阅读 · 0 评论 -
TensorFlow学习记录:计划
计划 Python入门之后,对TensorFlow先做初步了解,然后根据教程或者网上示例练习代码,同步学习李飞飞的CNN课程。 目前的教程包括: TensorFlow:实战Google深度学习框架 TensorFlow实战 TensorFlow技术解析与实战 CNN课程来自网易云课堂,斯坦福CS321n李飞飞计算机觉 开发环境: 操作系统:Win10 GPU:GTX1060 开发工具:PyC...原创 2018-11-01 07:39:54 · 259 阅读 · 0 评论 -
TensorFlow学习记录:Win10安装TensorFlow GPU开发环境
Win10安装TensorFlow GPU开发环境 TensorFlow用于实际开发,最好使用GPU版本。 安装NVidia的驱动,推荐使用GeForce Experience安装 安装Visual Studio 2015 update3,纯TensorFlow暂时用不上,未来使用CUDA进行图像处理需要 安装CUDA,安装前在TensorFlow科学官网查找当前TensorFlow GPU版本...原创 2018-11-01 07:40:49 · 346 阅读 · 0 评论 -
理解TensorFlow的shape,rank,dimension
TensorFlow中用tensor表示数据。可以将tensor理解为n维(n-dimensional)序列。 参考以下代码: import tensorflow as tf a = tf.constant(5) # Tensor.shape返回类型为TensorShape # a.shape等效于a.get_shape() shape = a.shape.as_list() # 用Tenso...原创 2018-12-14 10:03:45 · 4264 阅读 · 0 评论 -
TensorFlow网络模型的保存与载入
保存 用tf.train.Saver类保存模型 import tensorflow as tf a = tf.Variable(2, dtype=tf.float32) print(a) # <tf.Variable 'Variable:0' shape=() dtype=float32_ref> b = tf.multiply(a, 3) print(b) # Tensor(...原创 2018-12-20 09:46:10 · 575 阅读 · 0 评论 -
从LabelImg建立TFRecord格式的训练样本
文章目录图像样本转化为TFRecord图像数据处理用OpenCV读取图像数据用TensorFlow读取图像数据TFRecord文件的数据读写方法TFRecord的写入TFRecord的读出LabelImg标注文件的格式与解析将LabelImg的标注及对应的图像文件保存为TFRecord验证 图像样本转化为TFRecord 图像数据处理 用OpenCV读取图像数据 用OpenCV读取图像数据的格式为...原创 2018-12-14 16:58:45 · 2741 阅读 · 3 评论 -
PyCharm安装LabelImg
按正常流程建立PyCharm工程之后按下方流程操作 从File菜单打开Settings,进入Project Interpreter页,添加labelImg包、lxml包和PyQt5包 在当前工程文件夹的venv/Lib/site-packages/labelImg文件夹内打开labelImg.py,将import reources改成from . import resources 在当前工程文件...原创 2018-12-12 09:23:43 · 5223 阅读 · 3 评论 -
TensorFlow进行目标检测_从样本至失败
1. 功能描述 用TensorFlow实现视频内的目标检测,识别并且标示位置: 用OpenCV从视频中取出视频帧图像(后续用LabelImg进行手动标注) 将标注数据转化成TFRecord格式 TensorFlow建立深度网络使用TFRecord数据进行训练(使用TensorBoard监视训练效果) 2. 总体设计 硬件环境(小米游戏本): Intel Core i7-8750H CPU 1...原创 2018-12-19 09:26:30 · 1096 阅读 · 0 评论