机器学习
-
TensorFlow 基本变量定义,基本操作,矩阵基本操作
使用 TensorFlow 进行基本操作的实例,这个实例主要是使用 TensorFlow 进行了加法运算。 包括使用 constant 常量进行加法运算和使用 placeholde…
-
最简单的 TensorFlow 代码,TensorFlow Hello World 。
# -*- coding:utf-8 -*- from __future__ import print_function ”’ HelloWorld example using …
-
TensorFlow 训练好模型参数的保存和恢复代码
TensorFlow 训练好模型参数的保存和恢复代码,之前就在想模型不应该每次要个结果都要重新训练一遍吧,应该训练一次就可以一直使用吧。 TensorFlow 提供了 Saver …
-
基于TensorFlow打造强化学习API:TensorForce是怎样炼成的?
本文将围绕一个实际的问题进行介绍:应用强化学习的社区可以如何从对脚本和单个案例的收集更进一步,实现一个强化学习 API——一个用于强化学习的 tf-learn 或 skikit-l…
-
TensorFlow RNN 教程和代码
分析: 看 TensorFlow 也有一段时间了,准备按照 GitHub 上的教程,敲出来,顺便整理一下思路。 RNN部分 定义参数,包括数据相关,训练相关。 定义模型,损失函数,…
-
TensorFlow 神经机器翻译教程-TensorFlow Neural Machine Translation Tutorial
seq2seq 模型在多领域的任务中已经取得了巨大的成功,比如说机器翻译,语音识别,文字总结。这个教程给读者 seq2seq 模型一个完整的理解,并且表明如何从草稿构建一个有竞争力…
-
安装tensorflow GPU版本时遇到的DLL load failed 解决方法
装好 TensorFlow GPU 之后速度有肉眼可见的提升,之前 i5 升 i7 几乎没有变化。 众所周知,在tensorflow的两个版本中GPU版的速度比CPU版快了不少,在…
-
TensorFlow 实现最简单的 RNN
最简单的 RNN ,TensorFlow 实现。 代码来自:《Hands-On Machine Learning with Scikit-Learn and TensorFlow》…
-
TensorFlow FastGFile 和 max_pool 代码样例
TensorFlow FastGFile 和 max_pool 代码样例。 效果图: #!/usr/bin/env python # -*- coding: utf-8 -*- i…
-
推荐机器学习方面的视频:莫烦Python
简介:这个频道也是我闲暇时间的爱好,上传各种 python 的学习视频, 包括神经网络,机器学习等等.和大家交流学习经验是我最开心的事.我在2013年接触到了 python, 也是…
-
TensorFlow Python API 可以直接访问
TensorFlow Python API 可以直接访问。 http://devdocs.io/tensorflow~python/
-
Tensorflow中的tf.argmax()函数
官方API定义 tf.argmax(input, axis=None, name=None, dimension=None) Returns the index with the …
-
tf.reshape TensorFlow reshape 函数
tf.reshape reshape( tensor, shape, name=None ) 调整一个张量 传入一个张量,这个操作返回一个张量,返回的张量…
-
TensorFlow 模型的保存和恢复代码
代码参考《TensorFlow:实战Google深度学习框架》,本地手打,调试后复制出来,和原文会有差别。 不同于普通的保存和读取,读取的时候还是需要定义一下数据。之前想着 Ten…
-
tf.nn.conv2d 这个函数的功能是:给定4维的input和filter,计算出一个2维的卷积结果。
这个函数的功能是:给定4维的input和filter,计算出一个2维的卷积结果。 conv2d(input, filter, strides, padding, use_cudnn…
-
tf.Session.run() 执行操作,计算张量值
函数参数 run( fetches, feed_dict=None, options=None, run_metadata=None ) tf.Se…
-
基于 TensorFlow 的第一个神经网络
基于 TensorFlow 的第一个神经网络 代码参考《TensorFlow:实战Google深度学习框架》,本地手打,调试后复制出来,和原文会有差别。 #!/usr/bin/en…
-
plt.imshow 图像读取,展示
#!/usr/bin/env python # -*- coding: utf-8 -*- import matplotlib.pyplot as plt from scipy i…
-
输出 TensorFlow 中的张量
代码参考《TensorFlow:实战Google深度学习框架》,本地手打,调试后复制出来,和原文会有差别。 #!/usr/bin/env python # -*- coding: …
-
TensorFlow 不同图中定义和使用变量
代码参考《TensorFlow:实战Google深度学习框架》,本地手打,调试后复制出来,和原文会有差别。 #!/usr/bin/env python # -*- coding: …