├── .DS_Store ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── _img └── mainpage │ ├── CNNs.png │ ├── RNN.png │ ├── RNN2.svg │ ├── RNNs1.png │ ├── TensorFlow_World.gif │ ├── autoencoder.png │ ├── books.jpg │ ├── booksubscribe.png │ ├── follow-twitter.gif │ ├── generative_model.png │ ├── gettingstarted.gif │ ├── goingdeep.gif │ ├── installation.gif │ ├── logisticregression.png │ ├── models.png │ ├── multiple_gpu.png │ ├── online.png │ ├── readingdata.gif │ ├── subscribe.gif │ ├── tesnorflowroadmapcover.png │ ├── tutorial.png │ ├── utility.gif │ ├── utility.png │ ├── utility2.gif │ └── variables.gif ├── conf.py ├── docs ├── .DS_Store ├── Makefile ├── make.bat └── source │ ├── .DS_Store │ ├── _ext │ └── djangodocs.py │ ├── _img │ ├── tflogo.gif │ └── tflogo.svg │ ├── conf.py │ ├── content │ ├── books.rst │ ├── howtocode.rst │ ├── projects.rst │ ├── tutorials.rst │ └── warmup.rst │ ├── credentials │ ├── CODE_OF_CONDUCT.rst │ ├── CONTRIBUTING.rst │ └── LICENSE.rst │ ├── index.rst │ ├── intro │ └── intro.rst │ └── saved │ ├── conf (another copy).py │ ├── conf (copy).py │ ├── conf-2.py │ └── conf.py └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/.DS_Store -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/README.rst -------------------------------------------------------------------------------- /_img/mainpage/CNNs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/CNNs.png -------------------------------------------------------------------------------- /_img/mainpage/RNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/RNN.png -------------------------------------------------------------------------------- /_img/mainpage/RNN2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/RNN2.svg -------------------------------------------------------------------------------- /_img/mainpage/RNNs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/RNNs1.png -------------------------------------------------------------------------------- /_img/mainpage/TensorFlow_World.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/TensorFlow_World.gif -------------------------------------------------------------------------------- /_img/mainpage/autoencoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/autoencoder.png -------------------------------------------------------------------------------- /_img/mainpage/books.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/books.jpg -------------------------------------------------------------------------------- /_img/mainpage/booksubscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/booksubscribe.png -------------------------------------------------------------------------------- /_img/mainpage/follow-twitter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/follow-twitter.gif -------------------------------------------------------------------------------- /_img/mainpage/generative_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/generative_model.png -------------------------------------------------------------------------------- /_img/mainpage/gettingstarted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/gettingstarted.gif -------------------------------------------------------------------------------- /_img/mainpage/goingdeep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/goingdeep.gif -------------------------------------------------------------------------------- /_img/mainpage/installation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/installation.gif -------------------------------------------------------------------------------- /_img/mainpage/logisticregression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/logisticregression.png -------------------------------------------------------------------------------- /_img/mainpage/models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/models.png -------------------------------------------------------------------------------- /_img/mainpage/multiple_gpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/multiple_gpu.png -------------------------------------------------------------------------------- /_img/mainpage/online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/online.png -------------------------------------------------------------------------------- /_img/mainpage/readingdata.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/readingdata.gif -------------------------------------------------------------------------------- /_img/mainpage/subscribe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/subscribe.gif -------------------------------------------------------------------------------- /_img/mainpage/tesnorflowroadmapcover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/tesnorflowroadmapcover.png -------------------------------------------------------------------------------- /_img/mainpage/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/tutorial.png -------------------------------------------------------------------------------- /_img/mainpage/utility.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/utility.gif -------------------------------------------------------------------------------- /_img/mainpage/utility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/utility.png -------------------------------------------------------------------------------- /_img/mainpage/utility2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/utility2.gif -------------------------------------------------------------------------------- /_img/mainpage/variables.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/_img/mainpage/variables.gif -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/conf.py -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/.DS_Store -------------------------------------------------------------------------------- /docs/source/_ext/djangodocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/_ext/djangodocs.py -------------------------------------------------------------------------------- /docs/source/_img/tflogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/_img/tflogo.gif -------------------------------------------------------------------------------- /docs/source/_img/tflogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/_img/tflogo.svg -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/content/books.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/content/books.rst -------------------------------------------------------------------------------- /docs/source/content/howtocode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/content/howtocode.rst -------------------------------------------------------------------------------- /docs/source/content/projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/content/projects.rst -------------------------------------------------------------------------------- /docs/source/content/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/content/tutorials.rst -------------------------------------------------------------------------------- /docs/source/content/warmup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/content/warmup.rst -------------------------------------------------------------------------------- /docs/source/credentials/CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/credentials/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /docs/source/credentials/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/credentials/CONTRIBUTING.rst -------------------------------------------------------------------------------- /docs/source/credentials/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/credentials/LICENSE.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/intro/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/intro/intro.rst -------------------------------------------------------------------------------- /docs/source/saved/conf (another copy).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/saved/conf (another copy).py -------------------------------------------------------------------------------- /docs/source/saved/conf (copy).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/saved/conf (copy).py -------------------------------------------------------------------------------- /docs/source/saved/conf-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/saved/conf-2.py -------------------------------------------------------------------------------- /docs/source/saved/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instillai/TensorFlow-Roadmap/HEAD/docs/source/saved/conf.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-coveralls 2 | sphinx_rtd_theme 3 | --------------------------------------------------------------------------------