TensorFlow
-
tensorflow 入门教程推荐
tensorflow 入门教程 https://github.com/nlintz/TensorFlow-Tutorials https://github.com/aymericd…
-
tensorflow-seq2seq-tutorials
seq2seq 方面比较简洁的教程,比较适合入门看一下。另外作者有个建议: 理解复杂的函数有一个好的方法,那就是学习它的标志-输入和输出。 Nice way to understa…
-
用 seq2seq 建立聊天机器人-学习如何使用 TensorFlow 建立聊天机器人。
用 seq2seq 建立聊天机器人-学习如何使用 TensorFlow 建立聊天机器人。 Chatbots with Seq2Seq-Learn to build a chatbo…
-
practical_seq2seq:Seq2Seq Wrapper for Tensorflow 实用 seq2seq
为了让初学者更加容易的做 seq2seq 模型的实验。阅读作者关于 seq2seq 的文章 实用 seq2seq ,了解更多细节: http://suriyadeepan.gith…
-
Magenta Demos Magenta 实战代码
Magenta 实战代码 这个仓库包含了很多 Magenta 模型的实现。看 Magenta 库以及模型,看我们的主仓库:https://github.com/tensorflow…
-
TensorFlow 神经机器翻译教程-TensorFlow Neural Machine Translation Tutorial
seq2seq 模型在广泛的任务比如机器翻译,语音识别,文本总结中取得了巨大的成功。这个教程给读者 seq2seq 模型一个完整的理解,并且展示如何从原型建立一个有竞争力的 seq…
-
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…
-
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…