tensorflow入门不错的资源

mark一些tensorflow入门不错的资源:


tensorflow的源码,官方文档:

https://github.com/tensorflow/tensorflow

https://www.tensorflow.org/api_docs/python/tf/nn/static_bidirectional_rnn

大部分问题这两个地方都能找到:

https://github.com/tensorflow/tensorflow/issues

https://stackoverflow.com/questions/tagged/tensorflow


练习例子:

这里的例子最近已经更新到tf1.5.0+版本

https://github.com/aymericdamien/TensorFlow-Examples


seq2seq:

https://github.com/suriyadeepan/practical_seq2seq

这个seq2seq模型很简洁,没有多余封装,适合初学时重现,报错也很少。


简单chatbot:

https://github.com/Conchylicultor/DeepQA

比较早的版本

https://github.com/lc222

基于前者简化的,这个chatbot优点的是分batch,cpu训练速度很快,而且对beam search可以修改

https://github.com/thormacy/SimpleChatbot

update到tf1.5.0版本

猜你喜欢

转载自blog.csdn.net/thormas1996/article/details/80776063