Skip to content

voidgit/models

 
 

Repository files navigation

After forked from https://github.com/tensorflow/models (insturction added below is intended for personal usage and provided "as is"):

Exapmle was done by following instructions from: ENG: https://blog.kovalevskyi.com/rnn-based-chatbot-for-6-hours-b847d2d92c43 , RU: https://www.youtube.com/watch?v=Oo3DgYTL-Nw&list=PLsQAG1V_t58COuo7oRYsvdvwa9mfUK8RS&index=6 / https://habrahabr.ru/post/317732/

Everything was executed on local machine - Win 10 x64/Nvidia 1070/tensorflow-gpu

Model was trained for 1-2h. Should be trained at much more. Please check links above.



  • Install tenosrflow (or tensorflow-gpu) per https://www.tensorflow.org/install/ (currently TensorFlow 1.3)
  • Clone this git repository
  • cd /tutorials/rnn/translate
  • Unarchive directory 'train' from https://files.fm/u/f4jnppq4 or from https://ufile.io/owfs2 (File: train.zip CRC-32: b0a486a5 MD4: abb1f343193ce57fc4bf9150da3a843c MD5: 35b86a7a57358dafb24f9fce1bb43871 SHA-1: 11f157a68bfb22673185698d5e0a26a2fcbe5c0b)
  • To continue training model 'python ./translate.py --en_vocab_size=40000 --fr_vocab_size=40000 --data_dir=./train --train_dir=./train'
  • To run model (it was not trained enough so do not expect much): 'python ./translate.py --en_vocab_size=40000 --fr_vocab_size=40000 --data_dir=./train --train_dir=./train --decode' (P.S. do not run both training and execution on default configuration at the same time)

P.S. changes include

TensorFlow Models

This repository contains a number of different models implemented in TensorFlow:

The official models are a collection of example models that use TensorFlow's high-level APIs. They are intended to be well-maintained, tested, and kept up to date with the latest stable TensorFlow API. They should also be reasonably optimized for fast performance while still being easy to read. We especially recommend newer TensorFlow users to start here.

The research models are a large collection of models implemented in TensorFlow by researchers.

The tutorial models are models described in the TensorFlow tutorials.

About

Models built with TensorFlow

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 78.6%
  • C++ 16.0%
  • HTML 1.9%
  • Shell 1.1%
  • Protocol Buffer 1.0%
  • Jupyter Notebook 0.9%
  • Other 0.5%