tensorflow 入门教程 https://github.com/nlintz/TensorFlow-Tutorials https://github.com/aymericd…
Read Moretensorflow-seq2seq-tutorials
seq2seq 方面比较简洁的教程,比较适合入门看一下。另外作者有个建议: 理解复杂的函数有一个好的方法,那就是学习它的标志-输入和输出。 Nice way to understa…
Read Moregensim word2vec demo
gensim word2vec demo import gensim sentences = [[‘first’, ‘sentence’], [‘second’, ‘sentenc…
Read Moregensim word2vec 参数说明
def __init__( self, sentences=None, size=100, alpha=0.025, window=5, min_count=5, max_voca…
Read More用 seq2seq 建立聊天机器人-学习如何使用 TensorFlow 建立聊天机器人。
用 seq2seq 建立聊天机器人-学习如何使用 TensorFlow 建立聊天机器人。 Chatbots with Seq2Seq-Learn to build a chatbo…
Read Morepractical_seq2seq:Seq2Seq Wrapper for Tensorflow 实用 seq2seq
为了让初学者更加容易的做 seq2seq 模型的实验。阅读作者关于 seq2seq 的文章 实用 seq2seq ,了解更多细节: http://suriyadeepan.gith…
Read MoreMagenta Demos Magenta 实战代码
Magenta 实战代码 这个仓库包含了很多 Magenta 模型的实现。看 Magenta 库以及模型,看我们的主仓库:https://github.com/tensorflow…
Read MoreTensorFlow 神经机器翻译教程-TensorFlow Neural Machine Translation Tutorial
seq2seq 模型在广泛的任务比如机器翻译,语音识别,文本总结中取得了巨大的成功。这个教程给读者 seq2seq 模型一个完整的理解,并且展示如何从原型建立一个有竞争力的 seq…
Read MoreTensorFlow 基本变量定义,基本操作,矩阵基本操作
使用 TensorFlow 进行基本操作的实例,这个实例主要是使用 TensorFlow 进行了加法运算。 包括使用 constant 常量进行加法运算和使用 placeholde…
Read More最简单的 TensorFlow 代码,TensorFlow Hello World 。
# -*- coding:utf-8 -*- from __future__ import print_function ”’ HelloWorld example using …
Read More