前言 本文使用tensorflow训练逻辑回归模型,并将其与scikit-learn做比较。数据集来自Andrew Ng的网上公开课程Deep Learning 代码 #!/usr/bin/env python # -*…
分类:TensorFlow
学习笔记TF063:TensorFlow Debugger
TensorFlow Debugger(tfdbg),TensorFlow专用调试器。用断点、计算机图形化展现实时数据流,可视化运行TensorFlow图形内部结构、状态。有助训练推理调试模型错误。https://www…
TensorFlow学习笔记(三)-- feed_dict 使用
个人理解:就是TF的一种输入语法。 跟C语言的scanf(),C++的 cin>> 意思差不多,只是长相奇怪了点而已。 做完下面几个例子,基本也就适应了。 首先占位符申请空间;使用的时候,通过占位符“喂(fe…
TensorFlow MNIST 问题解决
TensorFlow MNIST 问题解决 一、数据集下载错误 错误:IOError: [Errno socket error] [Errno 101] Network is unreachable A: 手动下载: h…
深度学习Tensorflow生产环境部署(下·模型部署篇)
前一篇讲过环境的部署篇,这一次就讲讲从代码角度如何导出pb模型,如何进行服务调用。 1 hello world篇 部署完docker后,如果是cpu环境,可以直接拉取tensorflow/serving,如果是GPU环境…
使用清华开源镜像安装tensorflow
安装tensorflow时,如果使用直接安装速度相对较慢,采取清华大学的镜像会提高速度。GPU版本安装方法:pip install tensorflow-gpu==1.8 -i https://pypi.tun…
tensorflow 控制流操作,条件判断和循环操作
Control flow operations: conditionals and loops When building complex models such as recurrent neural networks…
Tensorflow中的tf.argmax()函数
转载请注明出处:http://www.jianshu.com/p/469789141af7 官方API定义 tf.argmax(input, axis=None, name=None, dimension=None) R…
TensorFlow无法调用
我用的Linux系统,PGU。我的TensorFlow一直正常运行,后来有人不知道改了什么,TensorFlow无法正常调用了,每次调用都显示没有安装TensorFlow。但是在pip list中能看到TensorFlo…
TensorFlow 安装笔记
前言 最近上了几门深度学习的公开课,还是觉得不过瘾,总觉得要搞一个框架来试试。那么caffe,tensorflow,torch等等选哪一个呢?经过一番比较我还是选择tensorflow,首先他是一个更通用的框架,而且对p…
TensorFlow GPU 的使用
一、TensorFlow 设备分配 1、设备分配规则 If a TensorFlow operation has both CPU and GPU implementations, the GPU d…
tensorflow的三种保存格式总结-1(.ckpt)
1.checkpoint(*.ckpt) 1.1文件结构介绍: —checkpoint —model.ckpt-240000.data-00000-of-00001 —model.ck…