
Tensorflow
张欣-男
人,最宝贵的是生命;它,给予我们只有一次。人的一生,应当这样度过:当他回首往事时,不因虚度年华而悔恨,也不因碌碌无为而羞耻;这样在他临死的时候,他就能够说:我已经把我的整个生命和全部精力,都献给了这个世界上最壮丽的事业——为了人类的解放而斗争
展开
-
TensorFlow Serving 02 serving_basic
服务于TensorFlow模型本教程将向您展示如何使用TensorFlow服务组件导出已训练的TensorFlow模型,并使用标准tensorflow_model_server进行服务。 如果您已经熟悉TensorFlow服务,并且想了解更多关于服务器内部部件的工作原理,请参阅TensorFlow服务高级教程。本教程使用TensorFlow教程中介绍的简单的Softmax回归模型,用于手写图像(MN翻译 2017-07-19 23:55:49 · 806 阅读 · 0 评论 -
unicodeDecodeError utf-8 codec cant byte 0xff
问题 Exception in thread Thread-12: Traceback (most recent call last): File "/home/work/anaconda3/envs/py36_tf/lib/python3.6/threading.py", line 916, in _bootstrap_inner self.run() File "/home/w...原创 2019-01-03 14:22:29 · 362 阅读 · 0 评论 -
TypeError RGB has type str, but expected one of bytes
问题 Exception in thread Thread-12: Traceback (most recent call last): File "/home/work/anaconda3/envs/py36_tf/lib/python3.6/threading.py", line 916, in _bootstrap_inner self.run() File "/home/w...原创 2019-01-03 14:22:05 · 898 阅读 · 1 评论 -
tensorflow-slim使用问题——range返回对象不是列表
问题 shuffled_index = range(len(filenames)) 说明 python3 中range返回的是一个可迭代对象,所以要用list转成列表。 解决方法 shuffled_index = list(range(len(filenames)))原创 2019-01-03 14:21:37 · 335 阅读 · 0 评论 -
TensorFlow-Slim_00 使用介绍
目录: 1 安装和设置 2 准备数据集 3 使用训练好的模型 4 从头训练 5 微调一个新任务 6 评价性能 7 导出前向图 8 问题 0 前言 TF-slim是Tensorflow的一个新的轻量级的高级API,用来定义、训练、评价复杂模型。这个目录包含了使用tf-slim训练和评价几个广泛使用的CNN图像分类模型的代码。它包含了一些脚本,可以让你来重新或者从已经训练好的权重微调来训练模型。它...原创 2019-01-03 14:20:28 · 280 阅读 · 0 评论 -
外星人dl踩坑记04——tensorflow
运行slim下的例子报错: device:GPU:0' because no supported kernel for GPU devices is available. 详细错误: InvalidArgumentError (see above for traceback): Cannot assign a device for operation 'InceptionV3/P...原创 2018-07-25 16:02:44 · 2214 阅读 · 4 评论 -
外星人dl踩坑记03——win10_powershell
使用anaconda,但是又不想用它的prompt,那么选择powershell。 在Powershell中使用Conda的activate BCSharp/PSCondaEnvs Implementation of Conda’s activate/deactivate functions in Powershell. 1. conda install -n root -c ...原创 2018-07-25 16:02:07 · 336 阅读 · 0 评论 -
外星人dl踩坑记02——win10_cuda
1. 确保windows正常使用 2. 下载安装cuda,并安装 win10下安装就特别简单了,双击exe,其他默认就可以了。 安装完成后命令行执行nvcc -V看是否安装成功。 问题: 1. 这里存在一个疑问,安装 cuda前需要不需要卸载所有nvidia的东西??? 如果出现 不兼容,则参考 Win10 安装Tensorflow-GPU版教程(附CUDA安装 could no...原创 2018-07-25 16:01:29 · 932 阅读 · 0 评论 -
外星人dl踩坑记01——双系统
2016年曾经在京东上配了一个带GTX 1070的主机,主机共花费8500元。去年实在受不了主机太大太占空间太麻烦扯线,于是卖掉,卖了6600元。 念叨了一年多,2018在自己31岁生日前买个外星人笔记本(17寸,gtx1070),这三年一直用macbook pro,实在是被AlienWare的重量震撼了————太大太重了! 一、安装双系统 win10 + ubuntu 16.04 自带...原创 2018-07-25 15:59:25 · 3335 阅读 · 1 评论 -
TensorFlow 数据读取
详解tensorflow数据读取机制tensorflow读取机制图解tensorflow使用文件名队列+内存队列双队列的形式读入文件,可以很好地管理epoch。tensorflow读取数据机制的对应函数文件名队列,我们使用tf.train.string_input_producer函数。这个函数需要传入一个文件名list,系统会自动将它转为一个文件名队列。string_input_producer(翻译 2017-11-07 17:06:40 · 345 阅读 · 0 评论 -
TensorFlow Serving 01 安装
安装依赖编译和使用TensorFlow Serving, 需要先解决一些先决条件。BazelgRPC从源码安装Clone the TensorFlow Serving repositorygit clone --recurse-submodules https://github.com/tensorflow/serving cd servingInstall prerequisitescd tens翻译 2017-07-19 22:49:11 · 1458 阅读 · 0 评论 -
TensorFlow Serving 00 前言
TensorFlow Serving 是一个灵活的,高性能的机器学习模型的服务系统,专为生产环境而设计。 TensorFlow服务可以轻松部署新的算法和实验,同时保持相同的服务器体系结构和API。 TensorFlow服务提供与TensorFlow模型的即开即用集成,但可以轻松扩展到其他类型的模型和数据。参考资料: TensorFlow Serving翻译 2017-07-19 22:41:01 · 362 阅读 · 0 评论 -
创建不包含bounding box的imagenet数据
问题 不使用bounding box 解决方法 注释掉一行代码 # image_to_bboxes = _build_bounding_box_lookup(FLAGS.bounding_box_file) image_to_bboxes = {}原创 2019-01-03 14:22:53 · 268 阅读 · 0 评论