├── requirements.txt ├── .DS_Store ├── .gitattributes ├── docs ├── .DS_Store ├── source │ ├── .DS_Store │ ├── _img │ │ ├── tflogo.gif │ │ └── tflogo.svg │ ├── _ext │ │ └── djangodocs.py │ ├── index.rst │ ├── credentials │ │ ├── LICENSE.rst │ │ ├── CONTRIBUTING.rst │ │ └── CODE_OF_CONDUCT.rst │ ├── conf.py │ ├── saved │ │ ├── conf (copy).py │ │ ├── conf (another copy).py │ │ ├── conf-2.py │ │ └── conf.py │ ├── intro │ │ └── intro.rst │ └── content │ │ ├── projects.rst │ │ ├── books.rst │ │ ├── warmup.rst │ │ ├── howtocode.rst │ │ └── tutorials.rst ├── Makefile └── make.bat ├── _img └── mainpage │ ├── RNN.png │ ├── CNNs.png │ ├── RNNs1.png │ ├── books.jpg │ ├── models.png │ ├── online.png │ ├── tutorial.png │ ├── utility.gif │ ├── utility.png │ ├── utility2.gif │ ├── autoencoder.png │ ├── goingdeep.gif │ ├── readingdata.gif │ ├── subscribe.gif │ ├── variables.gif │ ├── installation.gif │ ├── multiple_gpu.png │ ├── TensorFlow_World.gif │ ├── follow-twitter.gif │ ├── generative_model.png │ ├── gettingstarted.gif │ ├── logisticregression.png │ ├── tesnorflowroadmapcover.pdf │ └── RNN2.svg ├── .travis.yml ├── LICENSE ├── CONTRIBUTING.rst ├── .gitignore ├── conf.py ├── CODE_OF_CONDUCT.rst └── README.rst /requirements.txt: -------------------------------------------------------------------------------- 1 | python-coveralls 2 | sphinx_rtd_theme 3 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | 2 | docs/* linguist-documentation 3 | _img/* linguist-vendored 4 | 5 | -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /_img/mainpage/RNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/RNN.png -------------------------------------------------------------------------------- /docs/source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/docs/source/.DS_Store -------------------------------------------------------------------------------- /_img/mainpage/CNNs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/CNNs.png -------------------------------------------------------------------------------- /_img/mainpage/RNNs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/RNNs1.png -------------------------------------------------------------------------------- /_img/mainpage/books.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/books.jpg -------------------------------------------------------------------------------- /_img/mainpage/models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/models.png -------------------------------------------------------------------------------- /_img/mainpage/online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/online.png -------------------------------------------------------------------------------- /_img/mainpage/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/tutorial.png -------------------------------------------------------------------------------- /_img/mainpage/utility.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/utility.gif -------------------------------------------------------------------------------- /_img/mainpage/utility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/utility.png -------------------------------------------------------------------------------- /_img/mainpage/utility2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/utility2.gif -------------------------------------------------------------------------------- /_img/mainpage/autoencoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/autoencoder.png -------------------------------------------------------------------------------- /_img/mainpage/goingdeep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/goingdeep.gif -------------------------------------------------------------------------------- /_img/mainpage/readingdata.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/readingdata.gif -------------------------------------------------------------------------------- /_img/mainpage/subscribe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/subscribe.gif -------------------------------------------------------------------------------- /_img/mainpage/variables.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/variables.gif -------------------------------------------------------------------------------- /docs/source/_img/tflogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/docs/source/_img/tflogo.gif -------------------------------------------------------------------------------- /_img/mainpage/installation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/installation.gif -------------------------------------------------------------------------------- /_img/mainpage/multiple_gpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/multiple_gpu.png -------------------------------------------------------------------------------- /_img/mainpage/TensorFlow_World.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/TensorFlow_World.gif -------------------------------------------------------------------------------- /_img/mainpage/follow-twitter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/follow-twitter.gif -------------------------------------------------------------------------------- /_img/mainpage/generative_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/generative_model.png -------------------------------------------------------------------------------- /_img/mainpage/gettingstarted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/gettingstarted.gif -------------------------------------------------------------------------------- /_img/mainpage/logisticregression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/logisticregression.png -------------------------------------------------------------------------------- /_img/mainpage/tesnorflowroadmapcover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astorfi/TensorFlow-World-Resources/HEAD/_img/mainpage/tesnorflowroadmapcover.pdf -------------------------------------------------------------------------------- /docs/source/_ext/djangodocs.py: -------------------------------------------------------------------------------- 1 | def setup(app): 2 | app.add_crossref_type( 3 | directivename="setting", 4 | rolename="setting", 5 | indextemplate="pair: %s; setting", 6 | ) 7 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- 1 | # Minimal makefile for Sphinx documentation 2 | # 3 | 4 | # You can set these variables from the command line. 5 | SPHINXOPTS = 6 | SPHINXBUILD = sphinx-build 7 | SPHINXPROJ = TensoFlow-World-Resources 8 | SOURCEDIR = source 9 | BUILDDIR = build 10 | 11 | # Put it first so that "make" without argument is like "make help". 12 | help: 13 | @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) 14 | 15 | .PHONY: help Makefile 16 | 17 | # Catch-all target: route all unknown targets to Sphinx using the new 18 | # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). 19 | %: Makefile 20 | @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | python: 3 | - "2.7" 4 | - "3.4" 5 | - "3.5" 6 | - "3.6" 7 | 8 | # command to install dependencies 9 | install: 10 | - pip install -r requirements.txt 11 | - pip install coveralls flake8 12 | 13 | before_script: 14 | # stop the build if there are Python syntax errors or undefined names 15 | - flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics 16 | # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide 17 | - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics 18 | 19 | script: 20 | - coverage run --omit=*.virtualenvs*,*virtualenv* docs/source/conf.py test 21 | 22 | 23 | after_success: 24 | coveralls 25 | 26 | sudo: enabled 27 | dist: trusty 28 | -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- 1 | .. TensoFlow-World-Resources documentation master file, created by 2 | sphinx-quickstart on Wed Jul 5 16:28:45 2017. 3 | You can adapt this file completely to your liking, but it should at least 4 | contain the root `toctree` directive. 5 | 6 | Welcome to TensoFlow-World-Resources's documentation! 7 | ===================================================== 8 | 9 | .. toctree:: 10 | :maxdepth: 2 11 | :caption: Foreword 12 | 13 | intro/intro 14 | 15 | .. toctree:: 16 | :maxdepth: 2 17 | :caption: Content 18 | 19 | content/warmup 20 | content/howtocode 21 | content/tutorials 22 | content/projects 23 | content/books 24 | 25 | .. toctree:: 26 | :maxdepth: 2 27 | :caption: Document Credentials 28 | 29 | credentials/LICENSE 30 | -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | pushd %~dp0 4 | 5 | REM Command file for Sphinx documentation 6 | 7 | if "%SPHINXBUILD%" == "" ( 8 | set SPHINXBUILD=sphinx-build 9 | ) 10 | set SOURCEDIR=source 11 | set BUILDDIR=build 12 | set SPHINXPROJ=TensoFlow-World-Resources 13 | 14 | if "%1" == "" goto help 15 | 16 | %SPHINXBUILD% >NUL 2>NUL 17 | if errorlevel 9009 ( 18 | echo. 19 | echo.The 'sphinx-build' command was not found. Make sure you have Sphinx 20 | echo.installed, then set the SPHINXBUILD environment variable to point 21 | echo.to the full path of the 'sphinx-build' executable. Alternatively you 22 | echo.may add the Sphinx directory to PATH. 23 | echo. 24 | echo.If you don't have Sphinx installed, grab it from 25 | echo.http://sphinx-doc.org/ 26 | exit /b 1 27 | ) 28 | 29 | %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% 30 | goto end 31 | 32 | :help 33 | %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% 34 | 35 | :end 36 | popd 37 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE 2 | ======== 3 | 4 | MIT License 5 | 6 | Copyright (c) 2017 Amirsina Torfi 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in all 16 | copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 24 | SOFTWARE. 25 | -------------------------------------------------------------------------------- /docs/source/credentials/LICENSE.rst: -------------------------------------------------------------------------------- 1 | LICENSE 2 | ======== 3 | 4 | MIT License 5 | 6 | Copyright (c) 2019 Amirsina Torfi 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this book and associated documentation files (the "source files"), to deal 10 | in the product without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the product, and to permit persons to whom the book is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in all 16 | copies or substantial portions of the product. 17 | 18 | THE PRODUCT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 24 | SOFTWARE. 25 | -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- 1 | 2 | ************* 3 | Contributing 4 | ************* 5 | 6 | *For typos, please do not create a pull request. Instead, declare them in issues or email the repository owner*. Please note we have a code of conduct, please follow it in all your interactions with the project. 7 | 8 | ==================== 9 | Pull Request Process 10 | ==================== 11 | 12 | Please consider the following criterions in order to help us in a better way: 13 | 14 | 1. The pull request is mainly expected to be a link suggestion. 15 | 2. Please make sure your suggested resources are not obsolete or broken. 16 | 3. Ensure any install or build dependencies are removed before the end of the layer when doing a 17 | build and creating a pull request. 18 | 4. Add comments with details of changes to the interface, this includes new environment 19 | variables, exposed ports, useful file locations and container parameters. 20 | 5. You may merge the Pull Request in once you have the sign-off of at least one other developer, or if you 21 | do not have permission to do that, you may request the owner to merge it for you if you believe all checks are passed. 22 | 23 | ============ 24 | Final Note 25 | ============ 26 | 27 | We are looking forward to your kind feedback. Please help us to improve this open source project and make our work better. 28 | For contribution, please create a pull request and we will investigate it promptly. Once again, we appreciate 29 | your kind feedback and elaborate code inspections. 30 | -------------------------------------------------------------------------------- /docs/source/credentials/CONTRIBUTING.rst: -------------------------------------------------------------------------------- 1 | 2 | ************* 3 | Contributing 4 | ************* 5 | 6 | *For typos, please do not create a pull request. Instead, declare them in issues or email the repository owner*. Please note we have a code of conduct, please follow it in all your interactions with the project. 7 | 8 | ==================== 9 | Pull Request Process 10 | ==================== 11 | 12 | Please consider the following criterions in order to help us in a better way: 13 | 14 | 1. The pull request is mainly expected to be a link suggestion. 15 | 2. Please make sure your suggested resources are not obsolete or broken. 16 | 3. Ensure any install or build dependencies are removed before the end of the layer when doing a 17 | build and creating a pull request. 18 | 4. Add comments with details of changes to the interface, this includes new environment 19 | variables, exposed ports, useful file locations and container parameters. 20 | 5. You may merge the Pull Request in once you have the sign-off of at least one other developer, or if you 21 | do not have permission to do that, you may request the owner to merge it for you if you believe all checks are passed. 22 | 23 | ============ 24 | Final Note 25 | ============ 26 | 27 | We are looking forward to your kind feedback. Please help us to improve this open source project and make our work better. 28 | For contribution, please create a pull request and we will investigate it promptly. Once again, we appreciate 29 | your kind feedback and elaborate code inspections. 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # Numerous always-ignore extensions 7 | *.pyc 8 | *.diff 9 | *.err 10 | *.orig 11 | *.log 12 | *.rej 13 | *.swo 14 | *.swp 15 | *.vi 16 | *.cache 17 | *.egg-info 18 | *~ 19 | *# 20 | 21 | # C extensions 22 | *.so 23 | 24 | # Distribution / packaging 25 | .Python 26 | env/ 27 | build/ 28 | develop-eggs/ 29 | dist/ 30 | downloads/ 31 | eggs/ 32 | .eggs/ 33 | lib/ 34 | lib64/ 35 | parts/ 36 | sdist/ 37 | var/ 38 | *.egg-info/ 39 | .installed.cfg 40 | *.egg 41 | 42 | # PyInstaller 43 | # Usually these files are written by a python script from a template 44 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 45 | *.manifest 46 | *.spec 47 | 48 | # Installer logs 49 | pip-log.txt 50 | pip-delete-this-directory.txt 51 | 52 | # Unit test / coverage reports 53 | htmlcov/ 54 | .tox/ 55 | .coverage 56 | .coverage.* 57 | .cache 58 | nosetests.xml 59 | coverage.xml 60 | *,cover 61 | .hypothesis/ 62 | 63 | # Translations 64 | *.mo 65 | *.pot 66 | 67 | # Django stuff: 68 | *.log 69 | local_settings.py 70 | 71 | # Flask stuff: 72 | instance/ 73 | .webassets-cache 74 | 75 | # Scrapy stuff: 76 | .scrapy 77 | 78 | # Sphinx documentation 79 | docs/_build/ 80 | docs/_static/ 81 | docs/_templates/ 82 | 83 | 84 | # PyBuilder 85 | target/ 86 | 87 | # IPython Notebook 88 | .ipynb_checkpoints 89 | 90 | # pyenv 91 | .python-version 92 | 93 | # celery beat schedule file 94 | celerybeat-schedule 95 | 96 | # dotenv 97 | .env 98 | 99 | # virtualenv 100 | venv/ 101 | ENV/ 102 | 103 | # Spyder project settings 104 | .spyderproject 105 | 106 | # Rope project settings 107 | .ropeproject 108 | 109 | 110 | -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | 4 | import sphinx_rtd_theme 5 | sys.path.insert(0, os.path.abspath('_ext')) 6 | # from recommonmark.parser import CommonMarkParser 7 | 8 | sys.path.insert(0, os.path.abspath('..')) 9 | sys.path.append(os.path.dirname(__file__)) 10 | # os.environ.setdefault("DJANGO_SETTINGS_MODULE", "readthedocs.settings.dev") 11 | 12 | # from django.conf import settings 13 | 14 | # import django 15 | # django.setup() 16 | 17 | 18 | sys.path.append(os.path.abspath('_ext')) 19 | extensions = [ 20 | 'sphinx.ext.autodoc', 21 | 'sphinx.ext.intersphinx', 22 | ] 23 | templates_path = ['_templates'] 24 | 25 | edit_on_github_project = 'astorfi/TensorFlow-Roadmap' 26 | edit_on_github_branch = 'master' 27 | 28 | source_suffix = ['.rst', '.md'] 29 | # source_parsers = { 30 | # '.md': CommonMarkParser, 31 | # } 32 | 33 | master_doc = 'index' 34 | project = u'TensorFlow-Roadmap' 35 | copyright = u'2019, Amirsina Torfi' 36 | author = u'Amirsina Torfi' 37 | version = '1.0' 38 | release = '1.0' 39 | exclude_patterns = ['_build'] 40 | default_role = 'obj' 41 | pygments_style = 'sphinx' 42 | # intersphinx_mapping = { 43 | # 'TensorFlow-World': ('https://github.com/astorfi/TensorFlow-World', None), 44 | # } 45 | htmlhelp_basename = 'ReadTheDocsdoc' 46 | latex_documents = [ 47 | (master_doc, 'TensorFlow-Roadmap.tex', u'TensorFlow-Roadmap Documentation', 48 | u'Amirsina Torfi', 'manual'), 49 | ] 50 | man_pages = [ 51 | (master_doc, 'tensorFlow-roadmap', u'TensorFlow-Roadmap Documentation', 52 | [author], 1) 53 | ] 54 | exclude_patterns = [ 55 | # 'api' # needed for ``make gettext`` to not die. 56 | ] 57 | 58 | language = 'en' 59 | 60 | locale_dirs = [ 61 | 'locale/', 62 | ] 63 | gettext_compact = False 64 | 65 | html_theme = 'sphinx_rtd_theme' 66 | html_static_path = ['_static'] 67 | html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] 68 | html_logo = '_img/tflogo.gif' 69 | html_theme_options = { 70 | 'logo_only': True, 71 | 'display_version': False, 72 | } 73 | 74 | github_url='https://github.com/astorfi/TensorFlow-Roadmap' 75 | 76 | html_context = { 77 | "display_github": True, # Add 'Edit on Github' link instead of 'View page source' 78 | "last_updated": True, 79 | "commit": False, 80 | 'github_url': 'https://github.com/astorfi/TensorFlow-Roadmap' 81 | } 82 | 83 | 84 | #def setup(app): 85 | # app.add_stylesheet('custom.css') 86 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | 4 | import sphinx_rtd_theme 5 | sys.path.insert(0, os.path.abspath('_ext')) 6 | # from recommonmark.parser import CommonMarkParser 7 | 8 | sys.path.insert(0, os.path.abspath('..')) 9 | sys.path.append(os.path.dirname(__file__)) 10 | # os.environ.setdefault("DJANGO_SETTINGS_MODULE", "readthedocs.settings.dev") 11 | 12 | # from django.conf import settings 13 | 14 | # import django 15 | # django.setup() 16 | 17 | 18 | sys.path.append(os.path.abspath('_ext')) 19 | extensions = [ 20 | 'sphinx.ext.autodoc', 21 | 'sphinx.ext.intersphinx', 22 | ] 23 | templates_path = ['_templates'] 24 | 25 | edit_on_github_project = 'astorfi/TensorFlow-Roadmap' 26 | edit_on_github_branch = 'master' 27 | 28 | source_suffix = ['.rst', '.md'] 29 | # source_parsers = { 30 | # '.md': CommonMarkParser, 31 | # } 32 | 33 | master_doc = 'index' 34 | project = u'TensorFlow-Roadmap' 35 | copyright = u'2019, Amirsina Torfi' 36 | author = u'Amirsina Torfi' 37 | version = '1.0' 38 | release = '1.0' 39 | exclude_patterns = ['_build'] 40 | default_role = 'obj' 41 | pygments_style = 'sphinx' 42 | # intersphinx_mapping = { 43 | # 'TensorFlow-World': ('https://github.com/astorfi/TensorFlow-World', None), 44 | # } 45 | htmlhelp_basename = 'ReadTheDocsdoc' 46 | latex_documents = [ 47 | (master_doc, 'TensorFlow-Roadmap.tex', u'TensorFlow-Roadmap Documentation', 48 | u'Amirsina Torfi', 'manual'), 49 | ] 50 | man_pages = [ 51 | (master_doc, 'tensoflow-roadmap', u'TensorFlow-Roadmap Documentation', 52 | [author], 1) 53 | ] 54 | exclude_patterns = [ 55 | # 'api' # needed for ``make gettext`` to not die. 56 | ] 57 | 58 | language = 'en' 59 | 60 | locale_dirs = [ 61 | 'locale/', 62 | ] 63 | gettext_compact = False 64 | 65 | html_theme = 'sphinx_rtd_theme' 66 | html_static_path = ['_static'] 67 | html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] 68 | html_logo = '_img/tflogo.gif' 69 | html_theme_options = { 70 | 'logo_only': True, 71 | 'display_version': False, 72 | } 73 | 74 | github_url='https://github.com/astorfi/TensorFlow-Roadmap' 75 | 76 | html_context = { 77 | "display_github": True, # Add 'Edit on Github' link instead of 'View page source' 78 | "last_updated": True, 79 | "commit": False, 80 | 'github_url': 'https://github.com/astorfi/TensorFlow-Roadmap' 81 | } 82 | 83 | 84 | #def setup(app): 85 | # app.add_stylesheet('custom.css') 86 | -------------------------------------------------------------------------------- /docs/source/saved/conf (copy).py: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | 4 | import sphinx_rtd_theme 5 | sys.path.insert(0, os.path.abspath('_ext')) 6 | # from recommonmark.parser import CommonMarkParser 7 | 8 | sys.path.insert(0, os.path.abspath('..')) 9 | sys.path.append(os.path.dirname(__file__)) 10 | # os.environ.setdefault("DJANGO_SETTINGS_MODULE", "readthedocs.settings.dev") 11 | 12 | # from django.conf import settings 13 | 14 | # import django 15 | # django.setup() 16 | 17 | 18 | sys.path.append(os.path.abspath('_ext')) 19 | extensions = [ 20 | 'sphinx.ext.autodoc', 21 | 'sphinx.ext.intersphinx', 22 | 'edit_on_github', 23 | ] 24 | templates_path = ['_templates'] 25 | 26 | edit_on_github_project = 'astorfi/TensorFlow-World-Resources' 27 | edit_on_github_branch = 'master' 28 | 29 | source_suffix = ['.rst', '.md'] 30 | # source_parsers = { 31 | # '.md': CommonMarkParser, 32 | # } 33 | 34 | master_doc = 'index' 35 | project = u'TensoFlow-World-Resources' 36 | copyright = u'2017, Amirsina Torfi' 37 | author = u'Amirsina Torfi' 38 | version = '1.0' 39 | release = '1.0' 40 | exclude_patterns = ['_build'] 41 | default_role = 'obj' 42 | pygments_style = 'sphinx' 43 | # intersphinx_mapping = { 44 | # 'TensorFlow-World': ('https://github.com/astorfi/TensorFlow-World', None), 45 | # } 46 | htmlhelp_basename = 'ReadTheDocsdoc' 47 | latex_documents = [ 48 | (master_doc, 'TensoFlow-World-Resources.tex', u'TensoFlow-World-Resources Documentation', 49 | u'Amirsina Torfi', 'manual'), 50 | ] 51 | man_pages = [ 52 | (master_doc, 'tensoflow-world-resources', u'TensoFlow-World-Resources Documentation', 53 | [author], 1) 54 | ] 55 | exclude_patterns = [ 56 | # 'api' # needed for ``make gettext`` to not die. 57 | ] 58 | 59 | language = 'en' 60 | 61 | locale_dirs = [ 62 | 'locale/', 63 | ] 64 | gettext_compact = False 65 | 66 | html_theme = 'sphinx_rtd_theme' 67 | html_static_path = ['_static'] 68 | html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] 69 | html_logo = '_img/tflogo.gif' 70 | html_theme_options = { 71 | 'logo_only': True, 72 | 'display_version': False, 73 | } 74 | 75 | github_url='https://github.com/astorfi/TensorFlow-World-Resources' 76 | 77 | html_context = { 78 | "display_github": True, # Add 'Edit on Github' link instead of 'View page source' 79 | "last_updated": True, 80 | "commit": False, 81 | } 82 | 83 | 84 | #def setup(app): 85 | # app.add_stylesheet('custom.css') 86 | -------------------------------------------------------------------------------- /docs/source/saved/conf (another copy).py: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | 4 | import sphinx_rtd_theme 5 | sys.path.insert(0, os.path.abspath('_ext')) 6 | # from recommonmark.parser import CommonMarkParser 7 | 8 | sys.path.insert(0, os.path.abspath('..')) 9 | sys.path.append(os.path.dirname(__file__)) 10 | # os.environ.setdefault("DJANGO_SETTINGS_MODULE", "readthedocs.settings.dev") 11 | 12 | # from django.conf import settings 13 | 14 | # import django 15 | # django.setup() 16 | 17 | 18 | sys.path.append(os.path.abspath('_ext')) 19 | extensions = [ 20 | 'sphinx.ext.autodoc', 21 | 'sphinx.ext.intersphinx', 22 | ] 23 | templates_path = ['_templates'] 24 | 25 | edit_on_github_project = 'astorfi/TensorFlow-World-Resources' 26 | edit_on_github_branch = 'master' 27 | 28 | source_suffix = ['.rst', '.md'] 29 | # source_parsers = { 30 | # '.md': CommonMarkParser, 31 | # } 32 | 33 | master_doc = 'index' 34 | project = u'TensoFlow-World-Resources' 35 | copyright = u'2017, Amirsina Torfi' 36 | author = u'Amirsina Torfi' 37 | version = '1.0' 38 | release = '1.0' 39 | exclude_patterns = ['_build'] 40 | default_role = 'obj' 41 | pygments_style = 'sphinx' 42 | # intersphinx_mapping = { 43 | # 'TensorFlow-World': ('https://github.com/astorfi/TensorFlow-World', None), 44 | # } 45 | htmlhelp_basename = 'ReadTheDocsdoc' 46 | latex_documents = [ 47 | (master_doc, 'TensoFlow-World-Resources.tex', u'TensoFlow-World-Resources Documentation', 48 | u'Amirsina Torfi', 'manual'), 49 | ] 50 | man_pages = [ 51 | (master_doc, 'tensoflow-world-resources', u'TensoFlow-World-Resources Documentation', 52 | [author], 1) 53 | ] 54 | exclude_patterns = [ 55 | # 'api' # needed for ``make gettext`` to not die. 56 | ] 57 | 58 | language = 'en' 59 | 60 | locale_dirs = [ 61 | 'locale/', 62 | ] 63 | gettext_compact = False 64 | 65 | html_theme = 'sphinx_rtd_theme' 66 | html_static_path = ['_static'] 67 | html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] 68 | html_logo = '_img/tflogo.gif' 69 | html_theme_options = { 70 | 'logo_only': True, 71 | 'display_version': False, 72 | } 73 | 74 | github_url='https://github.com/astorfi/TensorFlow-World-Resources' 75 | 76 | html_context = { 77 | "display_github": True, # Add 'Edit on Github' link instead of 'View page source' 78 | "last_updated": True, 79 | "commit": False, 80 | 'github_url': 'https://github.com/spatialaudio/nbsphinx/' 81 | } 82 | 83 | 84 | #def setup(app): 85 | # app.add_stylesheet('custom.css') 86 | -------------------------------------------------------------------------------- /docs/source/intro/intro.rst: -------------------------------------------------------------------------------- 1 | Introduction 2 | ============ 3 | 4 | The purpose of this project is to introduce a shortcut to developers and researcher 5 | for finding useful resources about TensorFlow. 6 | 7 | ----------- 8 | Motivation 9 | ----------- 10 | 11 | There are different motivations for this open source project. 12 | 13 | ~~~~~~~~~~~~~~~~~~~~~ 14 | Why using TensorFlow? 15 | ~~~~~~~~~~~~~~~~~~~~~ 16 | 17 | A deep learning is of great interest these days, the crucial necessity for rapid and optimized implementation of the algorithms 18 | and designing architectures is the software environment. TensorFlow is designed to facilitate this goal. The strong advantage of 19 | TensorFlow is it flexibility is designing highly modular model which also can be a disadvantage too for beginners since lots of 20 | the pieces must be considered together for creating the model. This issue has been facilitated as well by developing high-level APIs 21 | such as `Keras `_ and `Slim `_ 22 | which gather lots of the design puzzle pieces. The interesting point about TensorFlow is that **its trace can be found anywhere these days**. 23 | Lots of the researchers and developers are using it and *its community is growing with the speed of light*! So the possible issues can 24 | be overcame easily since they might be the issues of lots of other people considering a large number of people involved in TensorFlow community. 25 | 26 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 27 | What's the point of this open source project? 28 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 29 | 30 | There other similar repositories similar to this repository and are very 31 | comprehensive and useful and to be honest they made me ponder if there is 32 | a necessity for this repository! A great example is `awesome-tensorflow `_ 33 | repository which is a curated list of different TensorFlow resources. 34 | 35 | **The point of this repository is that the resources are being targeted**. The organization 36 | of the resources is such that the user can easily find the things he/she is looking for. 37 | We divided the resources to a large number of categories that in the beginning one may 38 | have a headache!!! However, if someone knows what is being located, it is very easy to find the most related resources. 39 | Even if someone doesn't know what to look for, in the beginning, the general resources have 40 | been provided. 41 | 42 | 43 | ------------------------------------ 44 | How to make the most of this effort 45 | ------------------------------------ 46 | 47 | The written and visual resources have been split. Moreover, As one can search 48 | in the documentation, the number of categories might look to be too much. For 49 | finding the most relevant resources, please at first look through the general resources. 50 | -------------------------------------------------------------------------------- /docs/source/content/projects.rst: -------------------------------------------------------------------------------- 1 | =================== 2 | TensorFlow Projects 3 | =================== 4 | 5 | This section is dedicated to provide resources that are mainly open source projects developed by TensorFlow. 6 | Those might be comprehensive tutorials on working example. 7 | 8 | ----------------------- 9 | Comprehensive Tutorials 10 | ----------------------- 11 | 12 | * `TensorFlow-World`_: Concise and ready-to-use TensorFlow tutorials with detailed documentation 13 | * `TensorFlow-Tutorials`_: Introduction to deep learning based on Google's TensorFlow framework 14 | * `TensorFlow Tutorials`_: Organized tutorials in TensorFlow 15 | * `TensorFlow-Examples`_: Providing working examples in TensorFlow 16 | * `Tensorflow Tutorials using Jupyter Notebook`_: TensorFlow tutorials written in Python plus Jupyter Notebook 17 | * `TensorFlow for Deep Learning Research`_: Code examples for the Stanford course CS 20SI 18 | 19 | .. _TensorFlow-World: https://github.com/astorfi/TensorFlow-World 20 | .. _TensorFlow-Tutorials: https://github.com/nlintz/TensorFlow-Tutorials 21 | .. _TensorFlow Tutorials: https://github.com/Hvass-Labs/TensorFlow-Tutorials 22 | .. _TensorFlow-Examples: https://github.com/aymericdamien/TensorFlow-Examples 23 | .. _Tensorflow Tutorials using Jupyter Notebook: https://github.com/sjchoi86/Tensorflow-101 24 | .. _TensorFlow for Deep Learning Research: https://github.com/chiphuyen/tf-stanford-tutorials 25 | 26 | ------ 27 | Models 28 | ------ 29 | 30 | * `TensorFlow Models`_: Machine learning models implemented in TensorFlow 31 | * `Tensorflow VGG16 and VGG19`_: Implementation of VGG 16 and VGG 19 based on tensorflow-vgg16 and Caffe to Tensorflow 32 | * `ResNet in TensorFlow`_: Implementation of `Deep Residual Learning for Image Recognition `_ 33 | * `Inception in TensorFlow`_: Train the Inception v3 architecture 34 | * `A TensorFlow implementation of DeepMind WaveNet paper`_: TensorFlow implementation of the `WaveNet generative neural network architecture `_ for audio generation 35 | * `3D Convolutional Neural Networks for Speaker Verification`_: Implementation of `3D Convolutional Neural Networks for Speaker Verification application `_ in TensorFlow. 36 | * `Domain Transfer Network (DTN)`_: The implementation of `Unsupervised Cross-Domain Image Generation `_ in TensorFlow 37 | * `Neural Style`_: The Neural Style algorithm implementation that synthesizes a pastiche 38 | * `SqueezeNet in TensorFlow`_: Tensorflow implementation of SqueezeNet 39 | 40 | 41 | .. _TensorFlow Models: https://github.com/tensorflow/models 42 | .. _Tensorflow VGG16 and VGG19: https://github.com/machrisaa/tensorflow-vgg 43 | .. _ResNet in TensorFlow: https://github.com/ry/tensorflow-resnet 44 | .. _Inception in TensorFlow: https://github.com/tensorflow/models/tree/master/inception 45 | .. _A TensorFlow implementation of DeepMind WaveNet paper: https://github.com/ibab/tensorflow-wavenet 46 | .. _3D Convolutional Neural Networks for Speaker Verification: https://github.com/astorfi/3D-convolutional-speaker-recognition 47 | .. _Domain Transfer Network (DTN): https://github.com/yunjey/domain-transfer-network 48 | .. _Neural Style: https://github.com/cysmith/neural-style-tf 49 | .. _SqueezeNet in TensorFlow: https://github.com/vonclites/squeezenet 50 | -------------------------------------------------------------------------------- /docs/source/content/books.rst: -------------------------------------------------------------------------------- 1 | =================== 2 | Published Resources 3 | =================== 4 | 5 | This section is dedicated to provide published resources on TensorFlow, Such as websites, blogs, and books. 6 | 7 | 8 | 9 | --------------------------------- 10 | Online Courses and Documentations 11 | --------------------------------- 12 | 13 | * `LearningTensorFlow`_: Beginner-level tutorials for a TensorFlow 14 | * `Deep Learning by Google`_: A free online course developed by Google and Udacity 15 | * `Tensorflow for Deep Learning Research`_: A comprehensive course by Stanford 16 | * `Creative Applications of Deep Learning with TensorFlow`_: A non-free course on TensorFlow 17 | * `Deep Learning with TensorFlow Tutorial`_: In this TensorFlow course, you will be able to learn the basic concepts of TensorFlow 18 | 19 | .. _LearningTensorFlow: https://learningtensorflow.com/ 20 | .. _Deep Learning by Google: https://www.udacity.com/course/deep-learning--ud730 21 | .. _Tensorflow for Deep Learning Research: https://web.stanford.edu/class/cs20si/ 22 | .. _Creative Applications of Deep Learning with TensorFlow: https://www.kadenze.com/courses/creative-applications-of-deep-learning-with-tensorflow/info 23 | .. _Deep Learning with TensorFlow Tutorial: https://cognitiveclass.ai/courses/deep-learning-tensorflow/ 24 | 25 | 26 | 27 | ------ 28 | Books 29 | ------ 30 | 31 | * `TensorFlow Machine Learning Cookbook`_: Quick guide to implementing TensorFlow in your day-to-day machine learning activities 32 | * `Deep Learning with TensorFlow`_: Throughout the book, you’ll learn how to implement deep learning algorithms for machine learning systems 33 | * `First contact with TensorFlow`_: An online book on TensorFlow 34 | * `Building Machine Learning Projects with TensorFlow`_: Learn how to implement TensorFlow in production 35 | * `Learning TensorFlow`_: This book is an end-to-end guide to TensorFlow 36 | * `Machine Learning with TensorFlow`_: Tackle common commercial machine learning problems with Google’s TensorFlow library 37 | * `Getting Started with TensorFlow`_: An easy-to-understand book on TensorFlow 38 | * `Hands-On Machine Learning with Scikit-Learn and TensorFlow`_: By using examples, theory, the book help to gain an understanding of the machine learning concepts 39 | * `Machine Learning with TensorFlow (MEAP)`_: An introduction to the concepts of TensorFlow 40 | 41 | .. _TensorFlow Machine Learning Cookbook: https://www.amazon.com/dp/B01HY3TC54/ref=dp-kindle-redirect?_encoding=UTF8&btkr=1 42 | .. _Deep Learning with TensorFlow: https://www.packtpub.com/big-data-and-business-intelligence/deep-learning-tensorflow 43 | .. _First contact with TensorFlow: http://jorditorres.org/first-contact-with-tensorflow/ 44 | .. _Building Machine Learning Projects with TensorFlow: https://www.amazon.com/dp/B01M2Z8FS4/ref=dp-kindle-redirect?_encoding=UTF8&btkr=1 45 | .. _Learning TensorFlow: http://shop.oreilly.com/product/0636920063698.do 46 | .. _Machine Learning with TensorFlow: https://www.packtpub.com/big-data-and-business-intelligence/machine-learning-tensorflow 47 | .. _Getting Started with TensorFlow: https://www.amazon.com/Getting-Started-TensorFlow-Giancarlo-Zaccone-ebook/dp/B01H1JD6JO 48 | .. _Hands-On Machine Learning with Scikit-Learn and TensorFlow: http://shop.oreilly.com/product/0636920052289.do 49 | .. _Machine Learning with TensorFlow (MEAP): https://www.manning.com/books/machine-learning-with-tensorflow 50 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- 1 | Contributor Covenant Code of Conduct 2 | ==================================== 3 | 4 | Our Pledge 5 | ---------- 6 | 7 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 8 | 9 | Our Standards 10 | ------------- 11 | 12 | Examples of behavior that contributes to creating a positive environment include: 13 | 14 | * Using welcoming and inclusive language 15 | * Being respectful of differing viewpoints and experiences 16 | * Gracefully accepting constructive criticism 17 | * Focusing on what is best for the community 18 | * Showing empathy towards other community members 19 | 20 | Examples of unacceptable behavior by participants include: 21 | 22 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 23 | * Trolling, insulting/derogatory comments, and personal or political attacks 24 | * Public or private harassment 25 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 26 | * Other conduct which could reasonably be considered inappropriate in a professional setting 27 | 28 | Our Responsibilities 29 | -------------------- 30 | 31 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 32 | 33 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 34 | 35 | Scope 36 | ----- 37 | 38 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 39 | 40 | Enforcement 41 | ----------- 42 | 43 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at amirsina.torfi@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 44 | 45 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 46 | 47 | Attribution 48 | ------------ 49 | 50 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 51 | 52 | [homepage]: http://contributor-covenant.org 53 | [version]: http://contributor-covenant.org/version/1/4/ 54 | -------------------------------------------------------------------------------- /docs/source/credentials/CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- 1 | Contributor Covenant Code of Conduct 2 | ==================================== 3 | 4 | Our Pledge 5 | ---------- 6 | 7 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. 8 | 9 | Our Standards 10 | ------------- 11 | 12 | Examples of behavior that contributes to creating a positive environment include: 13 | 14 | * Using welcoming and inclusive language 15 | * Being respectful of differing viewpoints and experiences 16 | * Gracefully accepting constructive criticism 17 | * Focusing on what is best for the community 18 | * Showing empathy towards other community members 19 | 20 | Examples of unacceptable behavior by participants include: 21 | 22 | * The use of sexualized language or imagery and unwelcome sexual attention or advances 23 | * Trolling, insulting/derogatory comments, and personal or political attacks 24 | * Public or private harassment 25 | * Publishing others' private information, such as a physical or electronic address, without explicit permission 26 | * Other conduct which could reasonably be considered inappropriate in a professional setting 27 | 28 | Our Responsibilities 29 | -------------------- 30 | 31 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. 32 | 33 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. 34 | 35 | Scope 36 | ----- 37 | 38 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. 39 | 40 | Enforcement 41 | ----------- 42 | 43 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at amirsina.torfi@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. 44 | 45 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. 46 | 47 | Attribution 48 | ------------ 49 | 50 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] 51 | 52 | [homepage]: http://contributor-covenant.org 53 | [version]: http://contributor-covenant.org/version/1/4/ 54 | -------------------------------------------------------------------------------- /docs/source/content/warmup.rst: -------------------------------------------------------------------------------- 1 | ============================ 2 | Entrance to TensorFlow World 3 | ============================ 4 | 5 | In this section, different TensorFlow topics and their associated 6 | resources will be addressed. 7 | 8 | ------------- 9 | Installation 10 | ------------- 11 | 12 | First of all, the TensorFlow must be installed! 13 | 14 | ~~~~~~~~~~~~~~~~~~ 15 | Written Resources 16 | ~~~~~~~~~~~~~~~~~~ 17 | 18 | * `Installing TensorFlow`_: Official TensorFLow installation 19 | * `Install TensorFlow from the source`_: A comprehensive guide on how to install TensorFlow from the source using python/anaconda 20 | * `TensorFlow Installation`_: A short TensorFlow installation guide powered by NVIDIA 21 | * `7 SIMPLE STEPS TO INSTALL TENSORFLOW ON WINDOWS`_: A concise tutorial for installing TensorFlow on Windows 22 | 23 | .. _Installing TensorFlow: https://www.tensorflow.org/install/ 24 | .. _Install TensorFlow from the source: https://github.com/astorfi/TensorFlow-World/tree/master/docs/tutorials/installation 25 | .. _TensorFlow Installation: http://www.nvidia.com/object/gpu-accelerated-applications-tensorflow-installation.html 26 | .. _7 SIMPLE STEPS TO INSTALL TENSORFLOW ON WINDOWS: http://saintlad.com/install-tensorflow-on-windows/ 27 | 28 | 29 | ~~~~~~~~~~~~~~~~ 30 | Visual Resources 31 | ~~~~~~~~~~~~~~~~ 32 | 33 | * `Install TensorFlow on Ubuntu`_: A comprehensive tutorial on how to install TensorFlow on Ubuntu 34 | * `Installation of TensorFlow`_: The video covers how to setup TensorFlow 35 | * `Installing CPU and GPU TensorFlow on Windows`_: A tutorial on TensorFlow installation for Windows 36 | * `Installing the GPU version of TensorFlow for making use of your CUDA GPU`_: A GPU-targeted TensoFlow installation 37 | 38 | 39 | .. _Install TensorFlow on Ubuntu: https://www.youtube.com/watch?v=_3JFEPk4qQY&t=3s 40 | .. _Installation of TensorFlow: https://www.youtube.com/watch?v=CvspEt8kSIg 41 | .. _Installing CPU and GPU TensorFlow on Windows: https://www.youtube.com/watch?v=r7-WPbx8VuY 42 | .. _Installing the GPU version of TensorFlow for making use of your CUDA GPU: https://www.youtube.com/watch?v=io6Ajf5XkaM 43 | 44 | --------------- 45 | Getting Started 46 | --------------- 47 | 48 | This part points to resources on how to start to code with TensorFLow 49 | 50 | ~~~~~~~~~~~~~~~~~~ 51 | Written Resources 52 | ~~~~~~~~~~~~~~~~~~ 53 | 54 | * `Getting Started With TensorFlow`_: This guide gets you started programming in TensorFlow 55 | * `learning tensorflow`_:A great resource to start 56 | * `Welcome to TensorFlow World`_: A simple and concise start to TensorFLow 57 | 58 | .. _learning tensorflow: http://learningtensorflow.com/getting_started/ 59 | .. _Getting Started With TensorFlow: https://www.tensorflow.org/get_started/get_started 60 | .. _Welcome to TensorFlow World: https://github.com/astorfi/TensorFlow-World/tree/master/docs/tutorials/0-welcome 61 | 62 | ~~~~~~~~~~~~~~~~ 63 | Visual Resources 64 | ~~~~~~~~~~~~~~~~ 65 | 66 | * `Gentlest Introduction to Tensorflow `_ 67 | * `TensorFlow in 5 Minutes `_ 68 | * `Deep Learning with TensorFlow - Introduction to TensorFlow `_ 69 | * `TensorFlow Tutorial (Sherry Moore, Google Brain) `_ 70 | * `Deep Learning with Neural Networks and TensorFlow Introduction `_ 71 | * `A fast with TensorFlow `_ 72 | 73 | -------------------------- 74 | Going Deeper in TensorFLow 75 | -------------------------- 76 | 77 | Advanced machine learning users can go deeper in TensorFlow in order to 78 | *hit the root*. Scratching the surface may never take us too further! 79 | 80 | 81 | ~~~~~~~~~~~~~~~~~~ 82 | Written Resources 83 | ~~~~~~~~~~~~~~~~~~ 84 | 85 | * `TensorFlow Mechanics`_: More experienced machine learning users can dig more in TensorFlow 86 | * `Advanced TensorFlow`_: Advanced Tutorials in TensorFlow 87 | * `We Need to Go Deeper`_: A Practical Guide to Tensorflow and Inception 88 | * `Wide and Deep Learning - Better Together with TensorFlow`_: A tutorial by Google Research Blog 89 | 90 | 91 | 92 | 93 | .. _TensorFlow Mechanics: https://www.tensorflow.org/get_started/mnist/mechanics 94 | .. _Advanced TensorFlow: https://github.com/sjchoi86/advanced-tensorflow 95 | .. _We Need to Go Deeper: https://medium.com/initialized-capital/we-need-to-go-deeper-a-practical-guide-to-tensorflow-and-inception-50e66281804f 96 | .. _Wide and Deep Learning - Better Together with TensorFlow: https://research.googleblog.com/2016/06/wide-deep-learning-better-together-with.html 97 | 98 | 99 | ~~~~~~~~~~~~~~~~ 100 | Visual Resources 101 | ~~~~~~~~~~~~~~~~ 102 | 103 | * `TensorFlow DeepDive`_: More experienced machine learning users can dig more in TensorFlow 104 | * `Go Deeper - Transfer Learning`_: TensorFlow and Deep Learning 105 | * `Distributed TensorFlow - Design Patterns and Best Practices`_: A talk that was given at the Advanced Spark and TensorFlow Meetup 106 | * `Fundamentals of TensorFlow`_ 107 | * `TensorFlow Wide and Deep - Advanced Classification the easy way`_ 108 | * `Tensorflow and deep learning - without a PhD`_: A great tutorial on TensoFLow workflow 109 | 110 | 111 | 112 | .. _TensorFlow DeepDive: https://www.youtube.com/watch?v=T0H6zF3K1mc 113 | .. _Go Deeper - Transfer Learning: https://www.youtube.com/watch?v=iu3MOQ-Z3b4 114 | .. _Distributed TensorFlow - Design Patterns and Best Practices: https://www.youtube.com/watch?v=YAkdydqUE2c 115 | .. _Fundamentals of TensorFlow: https://www.youtube.com/watch?v=EM6SU8QVSlY 116 | .. _TensorFlow Wide and Deep - Advanced Classification the easy way: https://www.youtube.com/watch?v=WKgNNC0VLhM 117 | .. _Tensorflow and deep learning - without a PhD: https://www.youtube.com/watch?v=vq2nnJ4g6N0 118 | -------------------------------------------------------------------------------- /docs/source/_img/tflogo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 17 | 25 | 33 | 40 | 45 | 50 | 53 | 57 | 61 | 63 | 64 | 65 | 66 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /docs/source/saved/conf-2.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | import os 4 | import sys 5 | # 6 | # TensoFlow-World-Resources documentation build configuration file, created by 7 | # sphinx-quickstart on Wed Jul 5 16:28:45 2017. 8 | # 9 | # This file is execfile()d with the current directory set to its 10 | # containing dir. 11 | # 12 | # Note that not all possible configuration values are present in this 13 | # autogenerated file. 14 | # 15 | # All configuration values have a default; values that are commented out 16 | # serve to show the default. 17 | 18 | # If extensions (or modules to document with autodoc) are in another directory, 19 | # add these directories to sys.path here. If the directory is relative to the 20 | # documentation root, use os.path.abspath to make it absolute, like shown here. 21 | # 22 | # import os 23 | # import sys 24 | # sys.path.insert(0, os.path.abspath('.')) 25 | 26 | 27 | # -- General configuration ------------------------------------------------ 28 | 29 | # If your documentation needs a minimal Sphinx version, state it here. 30 | # 31 | # needs_sphinx = '1.0' 32 | 33 | # Add any Sphinx extension module names here, as strings. They can be 34 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom 35 | # ones. 36 | extensions = [] 37 | 38 | # Add any paths that contain templates here, relative to this directory. 39 | templates_path = ['_templates'] 40 | 41 | # The suffix(es) of source filenames. 42 | # You can specify multiple suffix as a list of string: 43 | # 44 | # source_suffix = ['.rst', '.md'] 45 | source_suffix = '.rst' 46 | 47 | # The master toctree document. 48 | master_doc = 'index' 49 | 50 | # General information about the project. 51 | # project = u'TensoFlow-World-Resources' 52 | copyright = u'2017, Amirsina Torfi' 53 | author = u'Amirsina Torfi' 54 | 55 | # The version info for the project you're documenting, acts as replacement for 56 | # |version| and |release|, also used in various other places throughout the 57 | # built documents. 58 | # 59 | # The short X.Y version. 60 | version = u'0.1.0' 61 | # The full version, including alpha/beta/rc tags. 62 | release = u'0.1.0' 63 | 64 | # The language for content autogenerated by Sphinx. Refer to documentation 65 | # for a list of supported languages. 66 | 67 | # Add any Sphinx extension module names here, as strings. They can be 68 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom 69 | # ones. 70 | extensions = [ 71 | 'sphinx.ext.autodoc', 72 | 'sphinx.ext.doctest', 73 | 'sphinx.ext.todo', 74 | 'sphinx.ext.viewcode', 75 | ] 76 | 77 | autodoc_member_order = 'bysource' 78 | 79 | # If extensions (or modules to document with autodoc) are in another directory, 80 | # add these directories to sys.path here. If the directory is relative to the 81 | # documentation root, use os.path.abspath to make it absolute, like shown here. 82 | sys.path.insert(0, os.path.abspath('../../')) 83 | 84 | # 85 | # This is also used if you do content translation via gettext catalogs. 86 | # Usually you set "language" from the command line for these cases. 87 | language = None 88 | 89 | # List of patterns, relative to source directory, that match files and 90 | # directories to ignore when looking for source files. 91 | # This patterns also effect to html_static_path and html_extra_path 92 | exclude_patterns = [] 93 | 94 | # The name of the Pygments (syntax highlighting) style to use. 95 | pygments_style = 'sphinx' 96 | 97 | # If true, `todo` and `todoList` produce output, else they produce nothing. 98 | # todo_include_todos = False 99 | 100 | 101 | # -- Options for HTML output ---------------------------------------------- 102 | 103 | # The theme to use for HTML and HTML Help pages. See the documentation for 104 | # a list of builtin themes. 105 | # 106 | 107 | # The theme to use for HTML and HTML Help pages. See the documentation for 108 | # a list of builtin themes. 109 | #html_theme = 'alabaster' 110 | html_theme = 'default' 111 | 112 | # on_rtd is whether we are on readthedocs.org 113 | on_rtd = os.environ.get('READTHEDOCS', None) == 'True' 114 | 115 | if not on_rtd: # only import and set the theme if we're building docs locally 116 | import sphinx_rtd_theme 117 | html_theme = 'sphinx_rtd_theme' 118 | html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] 119 | 120 | # otherwise, readthedocs.org uses their theme by default, so no need to specify it 121 | 122 | # html_theme = 'alabaster' 123 | 124 | # Theme options are theme-specific and customize the look and feel of a theme 125 | # further. For a list of options available for each theme, see the 126 | # documentation. 127 | # 128 | # html_theme_options = {} 129 | 130 | # html_theme_options = { 131 | # 'show_powered_by': False, 132 | # 'github_user': 'astorfi', 133 | # 'github_repo': 'TensorFlow-World-Resources', 134 | # 'github_banner': True, 135 | # 'show_related': False 136 | # } 137 | 138 | # Add any paths that contain custom static files (such as style sheets) here, 139 | # relative to this directory. They are copied after the builtin static files, 140 | # so a file named "default.css" will overwrite the builtin "default.css". 141 | html_static_path = ['_static'] 142 | 143 | 144 | # -- Options for HTMLHelp output ------------------------------------------ 145 | 146 | # Output file base name for HTML help builder. 147 | htmlhelp_basename = 'TensoFlow-World-Resourcesdoc' 148 | 149 | 150 | # -- Options for LaTeX output --------------------------------------------- 151 | 152 | latex_elements = { 153 | # The paper size ('letterpaper' or 'a4paper'). 154 | # 155 | # 'papersize': 'letterpaper', 156 | 157 | # The font size ('10pt', '11pt' or '12pt'). 158 | # 159 | # 'pointsize': '10pt', 160 | 161 | # Additional stuff for the LaTeX preamble. 162 | # 163 | # 'preamble': '', 164 | 165 | # Latex figure (float) alignment 166 | # 167 | # 'figure_align': 'htbp', 168 | } 169 | 170 | # Grouping the document tree into LaTeX files. List of tuples 171 | # (source start file, target name, title, 172 | # author, documentclass [howto, manual, or own class]). 173 | latex_documents = [ 174 | (master_doc, 'TensoFlow-World-Resources.tex', u'TensoFlow-World-Resources Documentation', 175 | u'Amirsina Torfi', 'manual'), 176 | ] 177 | 178 | 179 | # -- Options for manual page output --------------------------------------- 180 | 181 | # One entry per manual page. List of tuples 182 | # (source start file, name, description, authors, manual section). 183 | man_pages = [ 184 | (master_doc, 'tensoflow-world-resources', u'TensoFlow-World-Resources Documentation', 185 | [author], 1) 186 | ] 187 | 188 | 189 | # -- Options for Texinfo output ------------------------------------------- 190 | 191 | # Grouping the document tree into Texinfo files. List of tuples 192 | # (source start file, target name, title, author, 193 | # dir menu entry, description, category) 194 | texinfo_documents = [ 195 | (master_doc, 'TensoFlow-World-Resources', u'TensoFlow-World-Resources Documentation', 196 | author, 'TensoFlow-World-Resources', 'One line description of project.', 197 | 'Miscellaneous'), 198 | ] 199 | 200 | 201 | 202 | -------------------------------------------------------------------------------- /docs/source/content/howtocode.rst: -------------------------------------------------------------------------------- 1 | ============================ 2 | Programming with TensorFlow 3 | ============================ 4 | 5 | .. * `Title`_: some text 6 | .. .. _Title: link 7 | 8 | The references here, deal with the details of programming and writing TensorFlow code. 9 | 10 | ------------------------------- 11 | Reading data and input pipeline 12 | ------------------------------- 13 | 14 | The first part is always how to prepare data and how to provide the pipeline to feed it to TensorFlow. 15 | Usually providing the input pipeline can be complicated, even more than the structure design! 16 | 17 | ~~~~~~~~~~~~~~~~~ 18 | Written resources 19 | ~~~~~~~~~~~~~~~~~ 20 | 21 | * `Dataset API for TensorFlow Input Pipelines`_: A TensorFlow official documentation on *Using the Dataset API for TensorFlow Input Pipelines* 22 | * `TesnowFlow input pipeline`_: Input pipeline provided by Stanford. 23 | * `TensorFlow input pipeline example`_: A working example. 24 | * `TensorFlow Data Input`_: TensorFlow Data Input: Placeholders, Protobufs & Queues 25 | * `Reading data`_: The official documentation by the TensorFLow on how to read data 26 | * `basics of reading a CSV file`_: A tutorial on reading a CSV file 27 | * `Custom Data Readers`_: Official documentation on this how to define a reader. 28 | 29 | .. _Dataset API for TensorFlow Input Pipelines: https://github.com/tensorflow/tensorflow/tree/v1.2.0-rc1/tensorflow/contrib/data 30 | .. _TesnowFlow input pipeline: http://web.stanford.edu/class/cs20si/lectures/slides_09.pdf 31 | .. _TensorFlow input pipeline example: http://ischlag.github.io/2016/06/19/tensorflow-input-pipeline-example/ 32 | .. _TensorFlow Data Input: https://indico.io/blog/tensorflow-data-inputs-part1-placeholders-protobufs-queues/ 33 | .. _Reading data: https://www.tensorflow.org/programmers_guide/reading_data 34 | .. _basics of reading a CSV file: http://learningtensorflow.com/ReadingFilesBasic/ 35 | .. _Custom Data Readers: https://www.tensorflow.org/extend/new_data_formats 36 | 37 | ~~~~~~~~~~~~~~~~ 38 | Visual resources 39 | ~~~~~~~~~~~~~~~~ 40 | 41 | * `Tensorflow tutorial on TFRecords`_: A tutorial on how to transform data into TFRecords 42 | 43 | .. _Tensorflow tutorial on TFRecords: https://www.youtube.com/watch?v=F503abjanHA 44 | 45 | ---------- 46 | Variables 47 | ---------- 48 | 49 | Variables are supposed to hold the parameters and supersede by new values as the parameters are updated. 50 | Variables must be clearly set and initialized. 51 | 52 | ~~~~~~~~~~~~~~~~~ 53 | Written Resources 54 | ~~~~~~~~~~~~~~~~~ 55 | 56 | ^^^^^^^^^^^^^^^^^^^^^^^^ 57 | Creation, Initialization 58 | ^^^^^^^^^^^^^^^^^^^^^^^^ 59 | 60 | * `Variables Creation and Initialization`_: An official documentation on setting up variables 61 | * `Introduction to TensorFlow Variables - Creation and Initialization`_: This tutorial deals with defining and initializing TensorFlow variables 62 | * `Variables`_: An introduction to variables 63 | 64 | .. _Variables Creation and Initialization: https://www.tensorflow.org/programmers_guide/variables 65 | .. _Introduction to TensorFlow Variables - Creation and Initialization: http://machinelearninguru.com/deep_learning/tensorflow/basics/variables/variables.html 66 | .. _Variables: http://learningtensorflow.com/lesson2/ 67 | 68 | ^^^^^^^^^^^^^^^^^^^^^ 69 | Saving and restoring 70 | ^^^^^^^^^^^^^^^^^^^^^ 71 | 72 | * `Saving and Loading Variables`_: The official documentation on saving and restoring variables 73 | * `save and restore Tensorflow models`_: A quick tutorial to save and restore Tensorflow models 74 | 75 | .. _Saving and Loading Variables: https://www.tensorflow.org/programmers_guide/variables 76 | .. _save and restore Tensorflow models: http://cv-tricks.com/tensorflow-tutorial/save-restore-tensorflow-models-quick-complete-tutorial/ 77 | 78 | ^^^^^^^^^^^^^^^^^ 79 | Sharing Variables 80 | ^^^^^^^^^^^^^^^^^ 81 | 82 | * `Sharing Variables`_: The official documentation on how to share variables 83 | 84 | .. _Sharing Variables: https://www.tensorflow.org/programmers_guide/variable_scope 85 | 86 | ~~~~~~~~~~~~~~~~~ 87 | Visual Resources 88 | ~~~~~~~~~~~~~~~~~ 89 | 90 | * `Deep Learning with Tensorflow - Tensors and Variables`_: A Tensorflow tutorial for introducing Tensors, Variables and Placeholders 91 | * `Tensorflow Variables`_: A quick introduction to TensorFlow variables 92 | * `Save and Restore in TensorFlow`_: TensorFlow Tutorial on Save and Restore variables 93 | 94 | .. _Deep Learning with Tensorflow - Tensors and Variables: https://www.youtube.com/watch?v=zgV-WzLyrYE 95 | .. _Tensorflow Variables: https://www.youtube.com/watch?v=UYyqNH3r4lk 96 | .. _Save and Restore in TensorFlow: https://www.tensorflow.org/programmers_guide/variable_scope 97 | 98 | -------------------- 99 | TensorFlow Utilities 100 | -------------------- 101 | 102 | Different utilities empower TensorFlow for faster computation in a more monitored manner. 103 | 104 | ~~~~~~~~~~~~~~~~~ 105 | Written Resources 106 | ~~~~~~~~~~~~~~~~~ 107 | 108 | ^^^^^^^^^^ 109 | Supervisor 110 | ^^^^^^^^^^ 111 | 112 | * `Supervisor - Training Helper for Days-Long Trainings`_: The official documentation for TensorFLow Supervisor. 113 | * `Using TensorFlow Supervisor with TensorBoard summary groups`_: Using both TensorBoard and the Supervisor for profit 114 | * `Tensorflow example`_: A TensorFlow example using Supervisor. 115 | 116 | 117 | .. _Supervisor - Training Helper for Days-Long Trainings: https://www.tensorflow.org/programmers_guide/supervisor 118 | .. _Using TensorFlow Supervisor with TensorBoard summary groups: https://dev.widemeadows.de/2017/01/21/using-tensorflows-supervisor-with-tensorboard-summary-groups/ 119 | .. _Tensorflow example: http://codata.colorado.edu/notebooks/tutorials/tensorflow_example_davis_yoshida/ 120 | 121 | ^^^^^^^^^^^^^^^^^^^ 122 | TensorFlow Debugger 123 | ^^^^^^^^^^^^^^^^^^^ 124 | 125 | * `TensorFlow Debugger (tfdbg) Command-Line-Interface Tutorial`_: Official documentation for using debugger for MNIST 126 | * `How to Use TensorFlow Debugger with tf.contrib.learn`_: A more high-level method to use the debugger. 127 | * `Debugging TensorFlow Codes`_: A Practical Guide for Debugging TensorFlow Codes 128 | * `Debug TensorFlow Models with tfdbg`_: A tutorial by Google Developers Blog 129 | 130 | 131 | .. _TensorFlow Debugger (tfdbg) Command-Line-Interface Tutorial: https://www.tensorflow.org/programmers_guide/debugger 132 | .. _How to Use TensorFlow Debugger with tf.contrib.learn: https://www.tensorflow.org/programmers_guide/tfdbg-tflearn 133 | .. _Debugging TensorFlow Codes: https://github.com/wookayin/tensorflow-talk-debugging 134 | .. _Debug TensorFlow Models with tfdbg: https://developers.googleblog.com/2017/02/debug-tensorflow-models-with-tfdbg.html 135 | 136 | ^^^^^^^^^^ 137 | MetaGraphs 138 | ^^^^^^^^^^ 139 | 140 | * `Exporting and Importing a MetaGraph`_: Official TensorFlow documentation 141 | * `Model checkpointing using meta-graphs in TensorFlow`_: A working example 142 | 143 | .. _Exporting and Importing a MetaGraph: https://www.tensorflow.org/programmers_guide/meta_graph 144 | .. _Model checkpointing using meta-graphs in TensorFlow: http://www.seaandsailor.com/tensorflow-checkpointing.html 145 | 146 | ^^^^^^^^^^^ 147 | Tensorboard 148 | ^^^^^^^^^^^ 149 | 150 | * `TensorBoard - Visualizing Learning`_: Official documentation by TensorFlow. 151 | * `TensorFlow Ops`_: Provided by Stanford 152 | * `Visualisation with TensorBoard`_: A tutorial on how to create and visualize a graph using TensorBoard 153 | * `Tensorboard`_: A brief tutorial on Tensorboard 154 | 155 | .. _TensorBoard - Visualizing Learning: https://www.tensorflow.org/get_started/summaries_and_tensorboard 156 | .. _TensorFlow Ops: http://web.stanford.edu/class/cs20si/lectures/notes_02.pdf 157 | .. _Visualisation with TensorBoard: http://learningtensorflow.com/Visualisation/ 158 | .. _Tensorboard: http://edwardlib.org/tutorials/tensorboard 159 | 160 | ~~~~~~~~~~~~~~~~~ 161 | Visual Resources 162 | ~~~~~~~~~~~~~~~~~ 163 | 164 | * `Hands-on TensorBoard (TensorFlow Dev Summit 2017)`_: An introduction to the amazing things you can do with TensorBoard 165 | * `Tensorboard Explained in 5 Min`_: Providing the code for a simple handwritten character classifier in Python and visualizing it in Tensorboard 166 | * `How to Use Tensorboard`_: Going through a bunch of different features in Tensorboard 167 | 168 | 169 | .. _Hands-on TensorBoard (TensorFlow Dev Summit 2017): https://www.youtube.com/watch?v=eBbEDRsCmv4 170 | .. _Tensorboard Explained in 5 Min: https://www.youtube.com/watch?v=3bownM3L5zM 171 | .. _How to Use Tensorboard: https://www.youtube.com/watch?v=fBVEXKp4DIc 172 | -------------------------------------------------------------------------------- /docs/source/saved/conf.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | 4 | # Use sphinx-quickstart to create your own conf.py file! 5 | # After that, you have to edit a few things. See below. 6 | 7 | import sphinx_py3doc_enhanced_theme 8 | 9 | # Select nbsphinx and, if needed, add a math extension (mathjax or pngmath): 10 | extensions = [ 11 | 'nbsphinx', 12 | 'sphinx.ext.mathjax', 13 | ] 14 | 15 | # Exclude build directory and Jupyter backup files: 16 | exclude_patterns = ['_build', '**.ipynb_checkpoints'] 17 | 18 | # Default language for syntax highlighting in reST and Markdown cells 19 | highlight_language = 'none' 20 | 21 | # Don't add .txt suffix to source files (available for Sphinx >= 1.5): 22 | html_sourcelink_suffix = '' 23 | 24 | # Execute notebooks before conversion: 'always', 'never', 'auto' (default) 25 | #nbsphinx_execute = 'never' 26 | 27 | # Use this kernel instead of the one stored in the notebook metadata: 28 | #nbsphinx_kernel_name = 'python3' 29 | 30 | # List of arguments to be passed to the kernel that executes the notebooks: 31 | #nbsphinx_execute_arguments = ['--InlineBackend.figure_formats={"png", "pdf"}'] 32 | 33 | # If True, the build process is continued even if an exception occurs: 34 | #nbsphinx_allow_errors = True 35 | 36 | # Controls when a cell will time out (defaults to 30; use -1 for no timeout): 37 | #nbsphinx_timeout = 60 38 | 39 | # Default Pygments lexer for syntax highlighting in code cells: 40 | #nbsphinx_codecell_lexer = 'ipython3' 41 | 42 | # Width of input/output prompts used in CSS: 43 | #nbsphinx_prompt_width = '8ex' 44 | 45 | # If window is narrower than this, input/output prompts are on separate lines: 46 | #nbsphinx_responsive_width = '700px' 47 | 48 | # -- The settings below this line are not specific to nbsphinx ------------ 49 | 50 | master_doc = 'index' 51 | 52 | project = 'TensorFlow-World-Resources' 53 | author = 'Amirsina Torfi' 54 | copyright = '2017, ' + author 55 | 56 | linkcheck_ignore = [r'http://localhost:\d+/'] 57 | 58 | # -- Get version information from Git ------------------------------------- 59 | 60 | try: 61 | from subprocess import check_output 62 | release = check_output(['git', 'describe', '--tags', '--always']) 63 | release = release.decode().strip() 64 | except Exception: 65 | release = '' 66 | 67 | # -- Options for HTML output ---------------------------------------------- 68 | 69 | html_title = project + ' version ' + release 70 | html_theme = "sphinx_py3doc_enhanced_theme" 71 | html_theme_path = [sphinx_py3doc_enhanced_theme.get_html_theme_path()] 72 | html_logo = '_img/tflogo.gif' 73 | html_theme_options = { 74 | 'githuburl': 'https://github.com/astorfi/TensorFlow-World-Resources', 75 | } 76 | 77 | # -- Options for LaTeX output --------------------------------------------- 78 | 79 | latex_elements = { 80 | 'papersize': 'a4paper', 81 | 'preamble': r""" 82 | \usepackage[sc,osf]{mathpazo} 83 | \linespread{1.05} % see http://www.tug.dk/FontCatalogue/urwpalladio/ 84 | \renewcommand{\sfdefault}{pplj} % Palatino instead of sans serif 85 | \IfFileExists{zlmtt.sty}{ 86 | \usepackage[light,scaled=1.05]{zlmtt} % light typewriter font from lmodern 87 | }{ 88 | \renewcommand{\ttdefault}{lmtt} % typewriter font from lmodern 89 | } 90 | """, 91 | } 92 | 93 | latex_documents = [ 94 | (master_doc, 'nbsphinx.tex', project, author, 'howto'), 95 | ] 96 | 97 | latex_show_urls = 'footnote' 98 | 99 | 100 | 101 | 102 | ########################################################################### 103 | # auto-created readthedocs.org specific configuration # 104 | ########################################################################### 105 | 106 | 107 | # 108 | # The following code was added during an automated build on readthedocs.org 109 | # It is auto created and injected for every build. The result is based on the 110 | # conf.py.tmpl file found in the readthedocs.org codebase: 111 | # https://github.com/rtfd/readthedocs.org/blob/master/readthedocs/doc_builder/templates/doc_builder/conf.py.tmpl 112 | # 113 | 114 | 115 | import sys 116 | import os.path 117 | from six import string_types 118 | 119 | from sphinx import version_info 120 | 121 | # Get suffix for proper linking to GitHub 122 | # This is deprecated in Sphinx 1.3+, 123 | # as each page can have its own suffix 124 | if globals().get('source_suffix', False): 125 | if isinstance(source_suffix, string_types): 126 | SUFFIX = source_suffix 127 | else: 128 | SUFFIX = source_suffix[0] 129 | else: 130 | SUFFIX = '.rst' 131 | 132 | # Add RTD Static Path. Add to the end because it overwrites previous files. 133 | if not 'html_static_path' in globals(): 134 | html_static_path = [] 135 | if os.path.exists('_static'): 136 | html_static_path.append('_static') 137 | html_static_path.append('/home/docs/checkouts/readthedocs.org/readthedocs/templates/sphinx/_static') 138 | 139 | # Add RTD Theme only if they aren't overriding it already 140 | using_rtd_theme = False 141 | if 'html_theme' in globals(): 142 | if html_theme in ['default']: 143 | # Allow people to bail with a hack of having an html_style 144 | if not 'html_style' in globals(): 145 | import sphinx_rtd_theme 146 | html_theme = 'sphinx_rtd_theme' 147 | html_style = None 148 | html_theme_options = {} 149 | if 'html_theme_path' in globals(): 150 | html_theme_path.append(sphinx_rtd_theme.get_html_theme_path()) 151 | else: 152 | html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] 153 | 154 | using_rtd_theme = True 155 | else: 156 | import sphinx_rtd_theme 157 | html_theme = 'sphinx_rtd_theme' 158 | html_style = None 159 | html_theme_options = {} 160 | if 'html_theme_path' in globals(): 161 | html_theme_path.append(sphinx_rtd_theme.get_html_theme_path()) 162 | else: 163 | html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] 164 | using_rtd_theme = True 165 | 166 | if globals().get('websupport2_base_url', False): 167 | websupport2_base_url = 'https://readthedocs.org/websupport' 168 | if 'http' not in settings.MEDIA_URL: 169 | websupport2_static_url = 'https://media.readthedocs.org/static/' 170 | else: 171 | websupport2_static_url = 'https://media.readthedocs.org//static' 172 | 173 | 174 | #Add project information to the template context. 175 | context = { 176 | 'using_theme': using_rtd_theme, 177 | 'html_theme': html_theme, 178 | 'current_version': "py3doc-enh-theme", 179 | 'MEDIA_URL': "https://media.readthedocs.org/", 180 | 'PRODUCTION_DOMAIN': "readthedocs.org", 181 | 'versions': [ 182 | ("latest", "/en/latest/"), 183 | ("traditional-theme", "/en/traditional-theme/"), 184 | ("rtd-theme", "/en/rtd-theme/"), 185 | ("pyramid-theme", "/en/pyramid-theme/"), 186 | ("py3doc-enh-theme", "/en/py3doc-enh-theme/"), 187 | ("nature-theme", "/en/nature-theme/"), 188 | ("jupyter-theme", "/en/jupyter-theme/"), 189 | ("julia-theme", "/en/julia-theme/"), 190 | ("haiku-theme", "/en/haiku-theme/"), 191 | ("guzzle-theme", "/en/guzzle-theme/"), 192 | ("dotted-theme", "/en/dotted-theme/"), 193 | ("conda-again", "/en/conda-again/"), 194 | ("cloud-theme", "/en/cloud-theme/"), 195 | ("classic-theme", "/en/classic-theme/"), 196 | ("bootstrap-theme", "/en/bootstrap-theme/"), 197 | ("bizstyle-theme", "/en/bizstyle-theme/"), 198 | ("better-theme", "/en/better-theme/"), 199 | ("basicstrap-theme", "/en/basicstrap-theme/"), 200 | ("alabaster-theme", "/en/alabaster-theme/"), 201 | ("agogo-theme", "/en/agogo-theme/"), 202 | ], 203 | 'downloads': [ 204 | ("pdf", "//readthedocs.org/projects/nbsphinx/downloads/pdf/py3doc-enh-theme/"), 205 | ("htmlzip", "//readthedocs.org/projects/nbsphinx/downloads/htmlzip/py3doc-enh-theme/"), 206 | ], 207 | 'subprojects': [ 208 | ], 209 | 'slug': 'nbsphinx', 210 | 'name': u'nbsphinx', 211 | 'rtd_language': u'en', 212 | 'canonical_url': 'http://nbsphinx.readthedocs.io/en/0.2.14/', 213 | 'analytics_code': '', 214 | 'single_version': False, 215 | 'conf_py_path': '/doc/', 216 | 'api_host': 'https://readthedocs.org', 217 | 'github_user': 'astorfi', 218 | 'github_repo': 'TensorFlow-World-Resources', 219 | 'github_version': 'py3doc-enh-theme', 220 | 'display_github': True, 221 | 'bitbucket_user': 'None', 222 | 'bitbucket_repo': 'None', 223 | 'bitbucket_version': 'py3doc-enh-theme', 224 | 'display_bitbucket': False, 225 | 'READTHEDOCS': True, 226 | 'using_theme': (html_theme == "default"), 227 | 'new_theme': (html_theme == "sphinx_rtd_theme"), 228 | 'source_suffix': SUFFIX, 229 | 'user_analytics_code': '', 230 | 'global_analytics_code': 'UA-17997319-1', 231 | 232 | 'commit': 'e949221b', 233 | 234 | } 235 | if 'html_context' in globals(): 236 | html_context.update(context) 237 | else: 238 | html_context = context 239 | 240 | # Add custom RTD extension 241 | if 'extensions' in globals(): 242 | extensions.append("readthedocs_ext.readthedocs") 243 | else: 244 | extensions = ["readthedocs_ext.readthedocs"] 245 | -------------------------------------------------------------------------------- /docs/source/content/tutorials.rst: -------------------------------------------------------------------------------- 1 | ==================== 2 | TensorFlow Tutorials 3 | ==================== 4 | 5 | This section is dedicated to provide tutorial resources on the implementation of 6 | different models with TensorFlow. 7 | 8 | ------------------------------ 9 | Linear and Logistic Regression 10 | ------------------------------ 11 | 12 | ~~~~~~~~~~~~~~~~~ 13 | Written Resources 14 | ~~~~~~~~~~~~~~~~~ 15 | 16 | * `TensorFlow Linear Model Tutorial`_: Using TF.Learn API in TensorFlow to solve a binary classification problem 17 | * `Linear Regression in Tensorflow`_: Predicting house prices in Boston area 18 | * `Linear regression with Tensorflow`_: Make use of tensorflow for numeric computation using data flow graphs 19 | * `Logistic Regression in Tensorflow with SMOTE`_: Implementation of Logistic Regression in TensorFlow 20 | * `A TensorFlow Tutorial - Email Classification`_: Using a simple logistic regression classifier 21 | * `Linear Regression using TensorFlow`_: Training a linear model by TensorFlow 22 | * `Logistic Regression using TensorFlow`_: Training a logistic regression by TensorFlow for binary classification 23 | 24 | 25 | .. _TensorFlow Linear Model Tutorial: https://www.tensorflow.org/tutorials/wide 26 | .. _Linear Regression in Tensorflow: https://aqibsaeed.github.io/2016-07-07-TensorflowLR/ 27 | .. _Linear regression with Tensorflow: https://www.linkedin.com/pulse/linear-regression-tensorflow-iv%C3%A1n-corrales-solera 28 | .. _Logistic Regression in Tensorflow with SMOTE: https://aqibsaeed.github.io/2016-08-10-logistic-regression-tf/ 29 | .. _A TensorFlow Tutorial - Email Classification: http://jrmeyer.github.io/tutorial/2016/02/01/TensorFlow-Tutorial.html 30 | .. _Linear Regression using TensorFlow: https://github.com/astorfi/TensorFlow-World/tree/master/docs/tutorials/2-basics_in_machine_learning/linear_regression 31 | .. _Logistic Regression using TensorFlow: https://github.com/astorfi/TensorFlow-World/tree/master/docs/tutorials/2-basics_in_machine_learning/logistic_regression 32 | 33 | ~~~~~~~~~~~~~~~~~ 34 | Visual Resources 35 | ~~~~~~~~~~~~~~~~~ 36 | 37 | * `Deep Learning with Tensorflow - Logistic Regression`_: A tutorial on Logistic Regression 38 | * `Deep Learning with Tensorflow - Linear Regression with TensorFlow`_: A tutorial on Linear Regression 39 | 40 | .. _Deep Learning with Tensorflow - Logistic Regression: https://www.youtube.com/watch?v=4cBRxZavvTo&t=1s 41 | .. _Deep Learning with Tensorflow - Linear Regression with TensorFlow: https://www.youtube.com/watch?v=zNalsMIB3NE 42 | 43 | 44 | ------------------------------ 45 | Convolutional Neural Networks 46 | ------------------------------ 47 | 48 | ~~~~~~~~~~~~~~~~~ 49 | Written Resources 50 | ~~~~~~~~~~~~~~~~~ 51 | 52 | * `Convolutional Neural Networks`_: Official TensorFlow documentation 53 | * `Convolutional Neural Networks using TensorFlow`_: Training a classifier using convolutional neural networks 54 | * `Image classifier using convolutional neural network`_: Building a convolutional neural network based image classifier 55 | * `Convolutional Neural Network CNN with TensorFlow tutorial`_: It covers how to write a basic convolutional neural network within TensorFlow with Python 56 | * `Deep Learning CNNs in Tensorflow with GPUs`_: Designing the architecture of a convolutional neural network (CNN) 57 | 58 | 59 | .. _Convolutional Neural Networks: https://www.tensorflow.org/tutorials/deep_cnn 60 | .. _Convolutional Neural Networks using TensorFlow: https://github.com/astorfi/TensorFlow-World/tree/master/docs/tutorials/3-neural_network/convolutiona_neural_network 61 | .. _Image classifier using convolutional neural network: http://cv-tricks.com/tensorflow-tutorial/training-convolutional-neural-network-for-image-classification/ 62 | .. _Convolutional Neural Network CNN with TensorFlow tutorial: https://pythonprogramming.net/cnn-tensorflow-convolutional-nerual-network-machine-learning-tutorial/ 63 | .. _Deep Learning CNNs in Tensorflow with GPUs: https://hackernoon.com/deep-learning-cnns-in-tensorflow-with-gpus-cba6efe0acc2 64 | 65 | ~~~~~~~~~~~~~~~~~ 66 | Visual Resources 67 | ~~~~~~~~~~~~~~~~~ 68 | 69 | * `Deep Learning with Neural Networks`_: Convolutional Neural Networks with TensorFlow 70 | * `TensorFlow Tutorial`_: Convolutional Neural Network 71 | * `Understanding Convolution with TensorFlow`_: A tutorial on Convolution operation with TensorFlow 72 | * `Deep Learning with Tensorflow`_: Convolutional Network with TensorFlow 73 | 74 | .. _Deep Learning with Neural Networks: https://www.youtube.com/watch?v=mynJtLhhcXk 75 | .. _TensorFlow Tutorial: https://www.youtube.com/watch?v=HMcx-zY8JSg 76 | .. _Understanding Convolution with TensorFlow: https://www.youtube.com/watch?v=ETdaP_bBNWc 77 | .. _Deep Learning with Tensorflow: https://www.youtube.com/watch?v=yL-MkBSv18c 78 | 79 | ------------------------- 80 | Recurrent Neural Networks 81 | ------------------------- 82 | 83 | ~~~~~~~~~~~~~~~~~ 84 | Written Resources 85 | ~~~~~~~~~~~~~~~~~ 86 | 87 | * `Recurrent Neural Networks`_: TensorFlow official documentation 88 | * `How to build a Recurrent Neural Network in TensorFlow`_: How to build a simple working Recurrent Neural Network in TensorFlow 89 | * `Recurrent Neural Networks in Tensorflow`_: Building a vanilla recurrent neural network (RNN) from the ground up in Tensorflow 90 | * `RNNs in Tensorflow - a Practical Guide and Undocumented Features`_: Going over some of the best practices for working with RNNs in Tensorflow 91 | * `RNN / LSTM cell example in TensorFlow and Python`_: Covering how to code a Recurrent Neural Network model with an LSTM in TensorFlow 92 | * `Sequence prediction using recurrent neural networks(LSTM) with TensorFlow`_: How to approximate a sequence of vectors using a recurrent neural networks 93 | * `TensorFlow RNN Tutorial`_: Recurrent Neural Networks for exploring time series and developing speech recognition capabilities 94 | 95 | .. _Recurrent Neural Networks: https://www.tensorflow.org/tutorials/recurrent 96 | .. _How to build a Recurrent Neural Network in TensorFlow: https://medium.com/@erikhallstrm/hello-world-rnn-83cd7105b767 97 | .. _Recurrent Neural Networks in Tensorflow: https://r2rt.com/recurrent-neural-networks-in-tensorflow-i.html 98 | .. _RNNs in Tensorflow - a Practical Guide and Undocumented Features: http://www.wildml.com/2016/08/rnns-in-tensorflow-a-practical-guide-and-undocumented-features/ 99 | .. _RNN / LSTM cell example in TensorFlow and Python: https://pythonprogramming.net/rnn-tensorflow-python-machine-learning-tutorial/ 100 | .. _Sequence prediction using recurrent neural networks(LSTM) with TensorFlow: http://mourafiq.com/2016/05/15/predicting-sequences-using-rnn-in-tensorflow.html 101 | .. _TensorFlow RNN Tutorial: https://svds.com/tensorflow-rnn-tutorial/ 102 | 103 | ~~~~~~~~~~~~~~~~~ 104 | Visual Resources 105 | ~~~~~~~~~~~~~~~~~ 106 | 107 | * `Deep Learning with Neural Networks and TensorFlow`_: Recurrent Neural Networks (RNN) 108 | * `An Introduction to LSTMs in Tensorflow`_: A brief tutorial 109 | * `Deep Learning with Tensorflow - The Recurrent Neural Network Model`_: A tutorial on the Recurrent Neural Network Models 110 | * `Sequence Models and the RNN API`_: TensorFlow Dev Summit 2017 111 | * `RNN Example in Tensorflow`_: A quick tutorial 112 | 113 | .. _Deep Learning with Neural Networks and TensorFlow: https://www.youtube.com/watch?v=hWgGJeAvLws 114 | .. _An Introduction to LSTMs in Tensorflow: https://www.youtube.com/watch?v=l4X-kZjl1gs 115 | .. _Deep Learning with Tensorflow - The Recurrent Neural Network Model: https://www.youtube.com/watch?v=C0xoB8L8ms0&t=89s 116 | .. _Sequence Models and the RNN API: https://www.youtube.com/watch?v=RIR_-Xlbp7s 117 | .. _RNN Example in Tensorflow: https://www.youtube.com/watch?v=dFARw8Pm0Gk 118 | 119 | ------------- 120 | Autoencoders 121 | ------------- 122 | 123 | ~~~~~~~~~~~~~~~~~ 124 | Written Resources 125 | ~~~~~~~~~~~~~~~~~ 126 | 127 | * `Deep Autoencoder with TensorFlow`_: An open source project 128 | * `Variational Autoencoder in TensorFlow`_: A tutorial on Variational Autoencoder 129 | * `Diving Into TensorFlow With Stacked Autoencoders`_: A nice brief tutorials 130 | * `Convolutional Autoencoders in Tensorflow`_: Implementing a single layer CAE 131 | * `Variational Autoencoder using Tensorflow`_: Facial expression low dimensional embedding 132 | 133 | .. _Deep Autoencoder with TensorFlow: https://github.com/cmgreen210/TensorFlowDeepAutoencoder 134 | .. _Variational Autoencoder in TensorFlow: https://jmetzen.github.io/2015-11-27/vae.html 135 | .. _Diving Into TensorFlow With Stacked Autoencoders: http://cmgreen.io/2016/01/04/tensorflow_deep_autoencoder.html 136 | .. _Convolutional Autoencoders in Tensorflow: https://pgaleone.eu/neural-networks/deep-learning/2016/12/13/convolutional-autoencoders-in-tensorflow/ 137 | .. _Variational Autoencoder using Tensorflow: http://int8.io/variational-autoencoder-in-tensorflow/ 138 | 139 | ~~~~~~~~~~~~~~~~~ 140 | Visual Resources 141 | ~~~~~~~~~~~~~~~~~ 142 | 143 | * `Deep Learning with Tensorflow - Autoencoder Structure`_: Tutorial on Autoencoder models 144 | * `Deep Learning with Tensorflow - RBMs and Autoencoders`_: Tutorial on Restricted Boltzmann machines and AEs 145 | 146 | .. _Deep Learning with Tensorflow - Autoencoder Structure: https://www.youtube.com/watch?v=H_Bi_PQWJJc 147 | .. _Deep Learning with Tensorflow - RBMs and Autoencoders: https://www.youtube.com/watch?v=FsAvo0E5Pmw 148 | 149 | ----------------- 150 | Generative models 151 | ----------------- 152 | 153 | ~~~~~~~~~~~~~~~~~ 154 | Written Resources 155 | ~~~~~~~~~~~~~~~~~ 156 | 157 | * `Generative Adversarial Nets in TensorFlow`_: Implementing GAN using TensorFlow, with MNIST data 158 | * `Generative Adversarial Networks`_: A working example of Generative Adversarial Networks 159 | 160 | .. _Generative Adversarial Nets in TensorFlow: http://wiseodd.github.io/techblog/2016/09/17/gan-tensorflow/ 161 | .. _Generative Adversarial Networks: http://edwardlib.org/tutorials/gan 162 | 163 | ~~~~~~~~~~~~~~~~~ 164 | Visual Resources 165 | ~~~~~~~~~~~~~~~~~ 166 | 167 | * `TensorFlow Tutorial - Adversarial Examples`_: A tutorial on a working example for generative models 168 | 169 | .. _TensorFlow Tutorial - Adversarial Examples: link 170 | 171 | ------------- 172 | Multiple GPUs 173 | ------------- 174 | 175 | ~~~~~~~~~~~~~~~~~ 176 | Written Resources 177 | ~~~~~~~~~~~~~~~~~ 178 | 179 | * `Using GPUs`_: Official TensorFlow documentation 180 | * `Deep Learning with Multiple GPUs on Rescale`_: TensorFlow Tutorial 181 | 182 | .. _Using GPUs: https://www.tensorflow.org/tutorials/using_gpu 183 | .. _Deep Learning with Multiple GPUs on Rescale: https://blog.rescale.com/deep-learning-with-multiple-gpus-on-rescale-tensorflow/ 184 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | .. figure:: _img/mainpage/subscribe.gif 2 | :target: https://machinelearningmindset.com/subscription/ 3 | 4 | ******************************************** 5 | TensorFlow-World-Resources - `Project Page`_ 6 | ******************************************** 7 | .. _Project Page: http://tensorflow-world-resources.readthedocs.io/en/latest/ 8 | 9 | .. .. image:: https://travis-ci.org/astorfi/TensorFlow-World-Resources.svg?branch=master 10 | .. :target: https://travis-ci.org/astorfi/TensorFlow-World-Resources 11 | .. image:: https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat 12 | :target: https://github.com/astorfi/TensorFlow-World-Resources/pulls 13 | .. image:: https://badges.frapsoft.com/os/v2/open-source.svg?v=102 14 | :target: https://github.com/ellerbrock/open-source-badge/ 15 | .. image:: https://coveralls.io/repos/github/astorfi/TensorFlow-World-Resources/badge.svg?branch=master 16 | :target: https://coveralls.io/github/astorfi/TensorFlow-World-Resources?branch=master 17 | .. image:: https://img.shields.io/twitter/follow/amirsinatorfi.svg?label=Follow&style=social 18 | :target: https://twitter.com/amirsinatorfi 19 | 20 | .. image:: _img/mainpage/TensorFlow_World.gif 21 | 22 | ################# 23 | Table of Contents 24 | ################# 25 | .. contents:: 26 | :local: 27 | :depth: 3 28 | 29 | ============ 30 | Introduction 31 | ============ 32 | 33 | The purpose of this project is to introduce a shortcut to developers and researcher 34 | for finding useful resources about TensorFlow. 35 | 36 | 37 | 38 | ----------- 39 | Motivation 40 | ----------- 41 | 42 | There are different motivations for this open source project. 43 | 44 | ~~~~~~~~~~~~~~~~~~~~~ 45 | Why using TensorFlow? 46 | ~~~~~~~~~~~~~~~~~~~~~ 47 | 48 | A deep learning is of great interest these days, the crucial necessity for rapid and optimized implementation of the algorithms 49 | and designing architectures is the software environment. TensorFlow is designed to facilitate this goal. The strong advantage of 50 | TensorFlow is it flexibility is designing highly modular model which also can be a disadvantage too for beginners since lots of 51 | the pieces must be considered together for creating the model. This issue has been facilitated as well by developing high-level APIs 52 | such as `Keras `_ and `Slim `_ 53 | which gather lots of the design puzzle pieces. The interesting point about TensorFlow is that **its trace can be found anywhere these days**. 54 | Lots of the researchers and developers are using it and *its community is growing with the speed of light*! So the possible issues can 55 | be overcame easily since they might be the issues of lots of other people considering a large number of people involved in TensorFlow community. 56 | 57 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 58 | What's the point of this open source project? 59 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 60 | 61 | There other similar repositories similar to this repository and are very 62 | comprehensive and useful and to be honest they made me ponder if there is 63 | a necessity for this repository! A great example is `awesome-tensorflow `_ 64 | repository which is a curated list of different TensorFlow resources. 65 | 66 | **The point of this repository is that the resources are being targeted**. The organization 67 | of the resources is such that the user can easily find the things he/she is looking for. 68 | We divided the resources to a large number of categories that in the beginning one may 69 | have a headache!!! However, if someone knows what is being located, it is very easy to find the most related resources. 70 | Even if someone doesn't know what to look for, in the beginning, the general resources have 71 | been provided. 72 | 73 | 74 | ------------------------------------ 75 | How to make the most of this effort 76 | ------------------------------------ 77 | 78 | The written and visual resources have been split. Moreover, As one can search 79 | in the documentation, the number of categories might look to be too much. For 80 | finding the most relevant resources, please at first look through the general resources. 81 | 82 | ============================ 83 | Entrance to TensorFlow World 84 | ============================ 85 | 86 | In this section, different TensorFlow topics and their associated 87 | resources will be addressed. 88 | 89 | ------------- 90 | Installation 91 | ------------- 92 | 93 | .. image:: _img/mainpage/installation.gif 94 | 95 | First of all, the TensorFlow must be installed! 96 | 97 | 98 | * `Installing TensorFlow`_: Official TensorFLow installation 99 | * `Install TensorFlow from the source`_: A comprehensive guide on how to install TensorFlow from the source using python/anaconda 100 | * `TensorFlow Installation`_: A short TensorFlow installation guide powered by NVIDIA 101 | * `7 SIMPLE STEPS TO INSTALL TENSORFLOW ON WINDOWS`_: A concise tutorial for installing TensorFlow on Windows 102 | 103 | .. _Installing TensorFlow: https://www.tensorflow.org/install/ 104 | .. _Install TensorFlow from the source: https://github.com/astorfi/TensorFlow-World/tree/master/docs/tutorials/installation 105 | .. _TensorFlow Installation: http://www.nvidia.com/object/gpu-accelerated-applications-tensorflow-installation.html 106 | .. _7 SIMPLE STEPS TO INSTALL TENSORFLOW ON WINDOWS: http://saintlad.com/install-tensorflow-on-windows/ 107 | 108 | 109 | * `Install TensorFlow on Ubuntu`_: A comprehensive tutorial on how to install TensorFlow on Ubuntu 110 | * `Installation of TensorFlow`_: The video covers how to setup TensorFlow 111 | * `Installing CPU and GPU TensorFlow on Windows`_: A tutorial on TensorFlow installation for Windows 112 | * `Installing the GPU version of TensorFlow for making use of your CUDA GPU`_: A GPU-targeted TensoFlow installation 113 | 114 | 115 | .. _Install TensorFlow on Ubuntu: https://www.youtube.com/watch?v=_3JFEPk4qQY&t=3s 116 | .. _Installation of TensorFlow: https://www.youtube.com/watch?v=CvspEt8kSIg 117 | .. _Installing CPU and GPU TensorFlow on Windows: https://www.youtube.com/watch?v=r7-WPbx8VuY 118 | .. _Installing the GPU version of TensorFlow for making use of your CUDA GPU: https://www.youtube.com/watch?v=io6Ajf5XkaM 119 | 120 | --------------- 121 | Getting Started 122 | --------------- 123 | 124 | .. image:: _img/mainpage/gettingstarted.gif 125 | 126 | This part points to resources on how to start to code with TensorFLow 127 | 128 | 129 | * `Getting Started With TensorFlow Framework`_: This guide gets you started programming in TensorFlow 130 | * `learning TensorFlow Deep Learning`_:A great resource to start 131 | * `Welcome to TensorFlow World`_: A simple and concise start to TensorFLow 132 | 133 | .. _learning TensorFlow Deep Learning: http://learningtensorflow.com/getting_started/ 134 | .. _Getting Started With TensorFlow Framework: https://www.tensorflow.org/get_started/get_started 135 | .. _Welcome to TensorFlow World: https://github.com/astorfi/TensorFlow-World/tree/master/docs/tutorials/0-welcome 136 | 137 | 138 | * `Gentlest Introduction to Tensorflow `_ 139 | * `TensorFlow in 5 Minutes `_ 140 | * `Deep Learning with TensorFlow - Introduction to TensorFlow `_ 141 | * `TensorFlow Tutorial (Sherry Moore, Google Brain) `_ 142 | * `Deep Learning with Neural Networks and TensorFlow Introduction `_ 143 | * `A fast with TensorFlow `_ 144 | 145 | -------------------------- 146 | Going Deeper in TensorFLow 147 | -------------------------- 148 | 149 | .. image:: _img/mainpage/goingdeep.gif 150 | 151 | Advanced machine learning users can go deeper in TensorFlow in order to 152 | *hit the root*. Scratching the surface may never take us too further! 153 | 154 | 155 | * `TensorFlow Mechanics`_: More experienced machine learning users can dig more in TensorFlow 156 | * `Advanced TensorFlow`_: Advanced Tutorials in TensorFlow 157 | * `We Need to Go Deeper`_: A Practical Guide to Tensorflow and Inception 158 | * `Wide and Deep Learning - Better Together with TensorFlow`_: A tutorial by Google Research Blog 159 | 160 | .. _TensorFlow Mechanics: https://www.tensorflow.org/get_started/mnist/mechanics 161 | .. _Advanced TensorFlow: https://github.com/sjchoi86/advanced-tensorflow 162 | .. _We Need to Go Deeper: https://medium.com/initialized-capital/we-need-to-go-deeper-a-practical-guide-to-tensorflow-and-inception-50e66281804f 163 | .. _Wide and Deep Learning - Better Together with TensorFlow: https://research.googleblog.com/2016/06/wide-deep-learning-better-together-with.html 164 | 165 | 166 | * `TensorFlow DeepDive`_: More experienced machine learning users can dig more in TensorFlow 167 | * `Go Deeper - Transfer Learning`_: TensorFlow and Deep Learning 168 | * `Distributed TensorFlow - Design Patterns and Best Practices`_: A talk that was given at the Advanced Spark and TensorFlow Meetup 169 | * `Distributed TensorFlow Guide`_ 170 | * `Fundamentals of TensorFlow`_ 171 | * `TensorFlow Wide and Deep - Advanced Classification the easy way`_ 172 | * `Tensorflow and deep learning - without a PhD`_: A great tutorial on TensoFLow workflow 173 | 174 | 175 | 176 | .. _TensorFlow DeepDive: https://www.youtube.com/watch?v=T0H6zF3K1mc 177 | .. _Go Deeper - Transfer Learning: https://www.youtube.com/watch?v=iu3MOQ-Z3b4 178 | .. _Distributed TensorFlow - Design Patterns and Best Practices: https://www.youtube.com/watch?v=YAkdydqUE2c 179 | .. _Distributed TensorFlow Guide: https://github.com/tmulc18/Distributed-TensorFlow-Guide 180 | .. _Fundamentals of TensorFlow: https://www.youtube.com/watch?v=EM6SU8QVSlY 181 | .. _TensorFlow Wide and Deep - Advanced Classification the easy way: https://www.youtube.com/watch?v=WKgNNC0VLhM 182 | .. _Tensorflow and deep learning - without a PhD: https://www.youtube.com/watch?v=vq2nnJ4g6N0 183 | 184 | 185 | ============================ 186 | Programming with TensorFlow 187 | ============================ 188 | 189 | The references here, deal with the details of programming and writing TensorFlow code. 190 | 191 | -------------------------------- 192 | Reading data and input pipeline 193 | -------------------------------- 194 | 195 | .. image:: _img/mainpage/readingdata.gif 196 | 197 | The first part is always how to prepare data and how to provide the pipeline to feed it to TensorFlow. 198 | Usually providing the input pipeline can be complicated, even more than the structure design! 199 | 200 | * `Dataset API for TensorFlow Input Pipelines`_: A TensorFlow official documentation on *Using the Dataset API for TensorFlow Input Pipelines* 201 | * `TesnowFlow input pipeline`_: Input pipeline provided by Stanford. 202 | * `TensorFlow input pipeline example`_: A working example. 203 | * `TensorFlow Data Input`_: TensorFlow Data Input: Placeholders, Protobufs & Queues 204 | * `Reading data`_: The official documentation by the TensorFLow on how to read data 205 | * `basics of reading a CSV file`_: A tutorial on reading a CSV file 206 | * `Custom Data Readers`_: Official documentation on this how to define a reader. 207 | 208 | .. _Dataset API for TensorFlow Input Pipelines: https://github.com/tensorflow/tensorflow/tree/v1.2.0-rc1/tensorflow/contrib/data 209 | .. _TesnowFlow input pipeline: http://web.stanford.edu/class/cs20si/lectures/slides_09.pdf 210 | .. _TensorFlow input pipeline example: http://ischlag.github.io/2016/06/19/tensorflow-input-pipeline-example/ 211 | .. _TensorFlow Data Input: https://indico.io/blog/tensorflow-data-inputs-part1-placeholders-protobufs-queues/ 212 | .. _Reading data: https://www.tensorflow.org/programmers_guide/reading_data 213 | .. _basics of reading a CSV file: http://learningtensorflow.com/ReadingFilesBasic/ 214 | .. _Custom Data Readers: https://www.tensorflow.org/extend/new_data_formats 215 | 216 | * `Tensorflow tutorial on TFRecords`_: A tutorial on how to transform data into TFRecords 217 | 218 | .. _Tensorflow tutorial on TFRecords: https://www.youtube.com/watch?v=F503abjanHA 219 | 220 | * `An introduction to TensorFlow queuing and threading`_: A tutorial on how to understand and create queues an efficient pipelines 221 | 222 | .. _An introduction to TensorFlow queuing and threading: http://adventuresinmachinelearning.com/introduction-tensorflow-queuing/ 223 | 224 | ---------- 225 | Variables 226 | ---------- 227 | 228 | .. image:: _img/mainpage/variables.gif 229 | 230 | Variables are supposed to hold the parameters and supersede by new values as the parameters are updated. 231 | Variables must be clearly set and initialized. 232 | 233 | 234 | ~~~~~~~~~~~~~~~~~~~~~~~~ 235 | Creation, Initialization 236 | ~~~~~~~~~~~~~~~~~~~~~~~~ 237 | 238 | * `Variables Creation and Initialization`_: An official documentation on setting up variables 239 | * `Introduction to TensorFlow Variables - Creation and Initialization`_: This tutorial deals with defining and initializing TensorFlow variables 240 | * `Variables`_: An introduction to variables 241 | 242 | .. _Variables Creation and Initialization: https://www.tensorflow.org/programmers_guide/variables 243 | .. _Introduction to TensorFlow Variables - Creation and Initialization: http://machinelearninguru.com/deep_learning/tensorflow/basics/variables/variables.html 244 | .. _Variables: http://learningtensorflow.com/lesson2/ 245 | 246 | ~~~~~~~~~~~~~~~~~~~~~~ 247 | Saving and restoring 248 | ~~~~~~~~~~~~~~~~~~~~~~ 249 | 250 | * `Saving and Loading Variables`_: The official documentation on saving and restoring variables 251 | * `save and restore Tensorflow models`_: A quick tutorial to save and restore Tensorflow models 252 | 253 | .. _Saving and Loading Variables: https://www.tensorflow.org/programmers_guide/variables 254 | .. _save and restore Tensorflow models: http://cv-tricks.com/tensorflow-tutorial/save-restore-tensorflow-models-quick-complete-tutorial/ 255 | 256 | ~~~~~~~~~~~~~~~~~ 257 | Sharing Variables 258 | ~~~~~~~~~~~~~~~~~ 259 | 260 | * `Sharing Variables`_: The official documentation on how to share variables 261 | 262 | .. _Sharing Variables: https://www.tensorflow.org/programmers_guide/variable_scope 263 | 264 | * `Deep Learning with Tensorflow - Tensors and Variables`_: A Tensorflow tutorial for introducing Tensors, Variables and Placeholders 265 | * `Tensorflow Variables`_: A quick introduction to TensorFlow variables 266 | * `Save and Restore in TensorFlow`_: TensorFlow Tutorial on Save and Restore variables 267 | 268 | .. _Deep Learning with Tensorflow - Tensors and Variables: https://www.youtube.com/watch?v=zgV-WzLyrYE 269 | .. _Tensorflow Variables: https://www.youtube.com/watch?v=UYyqNH3r4lk 270 | .. _Save and Restore in TensorFlow: https://www.tensorflow.org/programmers_guide/variable_scope 271 | 272 | -------------------- 273 | TensorFlow Utilities 274 | -------------------- 275 | 276 | .. image:: _img/mainpage/utility.png 277 | 278 | .. .. figure:: _img/mainpage/utility.png 279 | .. :scale: 20 % 280 | .. :alt: map to buried treasure 281 | .. 282 | .. .. raw:: html 283 | .. 284 | ..

285 | .. 286 | .. 287 | .. 288 | ..

289 | 290 | Different utilities empower TensorFlow for faster computation in a more monitored manner. 291 | 292 | 293 | ~~~~~~~~~~ 294 | Supervisor 295 | ~~~~~~~~~~ 296 | 297 | * `Supervisor - Training Helper for Days-Long Trainings`_: The official documentation for TensorFLow Supervisor. 298 | * `Using TensorFlow Supervisor with TensorBoard summary groups`_: Using both TensorBoard and the Supervisor for profit 299 | * `Tensorflow example`_: A TensorFlow example using Supervisor. 300 | 301 | 302 | .. _Supervisor - Training Helper for Days-Long Trainings: https://www.tensorflow.org/programmers_guide/supervisor 303 | .. _Using TensorFlow Supervisor with TensorBoard summary groups: https://dev.widemeadows.de/2017/01/21/using-tensorflows-supervisor-with-tensorboard-summary-groups/ 304 | .. _Tensorflow example: http://codata.colorado.edu/notebooks/tutorials/tensorflow_example_davis_yoshida/ 305 | 306 | ~~~~~~~~~~~~~~~~~~~ 307 | TensorFlow Debugger 308 | ~~~~~~~~~~~~~~~~~~~ 309 | 310 | * `TensorFlow Debugger (tfdbg) Command-Line-Interface Tutorial`_: Official documentation for using debugger for MNIST 311 | * `How to Use TensorFlow Debugger with tf.contrib.learn`_: A more high-level method to use the debugger. 312 | * `Debugging TensorFlow Codes`_: A Practical Guide for Debugging TensorFlow Codes 313 | * `Debug TensorFlow Models with tfdbg`_: A tutorial by Google Developers Blog 314 | 315 | 316 | .. _TensorFlow Debugger (tfdbg) Command-Line-Interface Tutorial: https://www.tensorflow.org/programmers_guide/debugger 317 | .. _How to Use TensorFlow Debugger with tf.contrib.learn: https://www.tensorflow.org/programmers_guide/tfdbg-tflearn 318 | .. _Debugging TensorFlow Codes: https://github.com/wookayin/tensorflow-talk-debugging 319 | .. _Debug TensorFlow Models with tfdbg: https://developers.googleblog.com/2017/02/debug-tensorflow-models-with-tfdbg.html 320 | 321 | ~~~~~~~~~~ 322 | MetaGraphs 323 | ~~~~~~~~~~ 324 | 325 | * `Exporting and Importing a MetaGraph`_: Official TensorFlow documentation 326 | * `Model checkpointing using meta-graphs in TensorFlow`_: A working example 327 | 328 | .. _Exporting and Importing a MetaGraph: https://www.tensorflow.org/programmers_guide/meta_graph 329 | .. _Model checkpointing using meta-graphs in TensorFlow: http://www.seaandsailor.com/tensorflow-checkpointing.html 330 | 331 | ~~~~~~~~~~~ 332 | Tensorboard 333 | ~~~~~~~~~~~ 334 | 335 | * `TensorBoard - Visualizing Learning`_: Official documentation by TensorFlow. 336 | * `TensorFlow Ops`_: Provided by Stanford 337 | * `Visualisation with TensorBoard`_: A tutorial on how to create and visualize a graph using TensorBoard 338 | * `Tensorboard`_: A brief tutorial on Tensorboard 339 | 340 | .. _TensorBoard - Visualizing Learning: https://www.tensorflow.org/get_started/summaries_and_tensorboard 341 | .. _TensorFlow Ops: http://web.stanford.edu/class/cs20si/lectures/notes_02.pdf 342 | .. _Visualisation with TensorBoard: http://learningtensorflow.com/Visualisation/ 343 | .. _Tensorboard: http://edwardlib.org/tutorials/tensorboard 344 | 345 | 346 | * `Hands-on TensorBoard (TensorFlow Dev Summit 2017)`_: An introduction to the amazing things you can do with TensorBoard 347 | * `Tensorboard Explained in 5 Min`_: Providing the code for a simple handwritten character classifier in Python and visualizing it in Tensorboard 348 | * `How to Use Tensorboard`_: Going through a bunch of different features in Tensorboard 349 | 350 | 351 | .. _Hands-on TensorBoard (TensorFlow Dev Summit 2017): https://www.youtube.com/watch?v=eBbEDRsCmv4 352 | .. _Tensorboard Explained in 5 Min: https://www.youtube.com/watch?v=3bownM3L5zM 353 | .. _How to Use Tensorboard: https://www.youtube.com/watch?v=fBVEXKp4DIc 354 | 355 | ==================== 356 | TensorFlow Tutorials 357 | ==================== 358 | 359 | This section is dedicated to provide tutorial resources on the implementation of 360 | different models with TensorFlow. 361 | 362 | ------------------------------ 363 | Linear and Logistic Regression 364 | ------------------------------ 365 | 366 | .. image:: _img/mainpage/logisticregression.png 367 | 368 | 369 | * `TensorFlow Linear Model Tutorial`_: Using TF.Learn API in TensorFlow to solve a binary classification problem 370 | * `Linear Regression in Tensorflow`_: Predicting house prices in Boston area 371 | * `Linear regression with Tensorflow`_: Make use of tensorflow for numeric computation using data flow graphs 372 | * `Logistic Regression in Tensorflow with SMOTE`_: Implementation of Logistic Regression in TensorFlow 373 | * `A TensorFlow Tutorial - Email Classification`_: Using a simple logistic regression classifier 374 | * `Linear Regression using TensorFlow`_: Training a linear model by TensorFlow 375 | * `Logistic Regression using TensorFlow`_: Training a logistic regression by TensorFlow for binary classification 376 | 377 | 378 | .. _TensorFlow Linear Model Tutorial: https://www.tensorflow.org/tutorials/wide 379 | .. _Linear Regression in Tensorflow: https://aqibsaeed.github.io/2016-07-07-TensorflowLR/ 380 | .. _Linear regression with Tensorflow: https://www.linkedin.com/pulse/linear-regression-tensorflow-iv%C3%A1n-corrales-solera 381 | .. _Logistic Regression in Tensorflow with SMOTE: https://aqibsaeed.github.io/2016-08-10-logistic-regression-tf/ 382 | .. _A TensorFlow Tutorial - Email Classification: http://jrmeyer.github.io/tutorial/2016/02/01/TensorFlow-Tutorial.html 383 | .. _Linear Regression using TensorFlow: https://github.com/astorfi/TensorFlow-World/tree/master/docs/tutorials/2-basics_in_machine_learning/linear_regression 384 | .. _Logistic Regression using TensorFlow: https://github.com/astorfi/TensorFlow-World/tree/master/docs/tutorials/2-basics_in_machine_learning/logistic_regression 385 | 386 | * `Deep Learning with Tensorflow - Logistic Regression`_: A tutorial on Logistic Regression 387 | * `Deep Learning with Tensorflow - Linear Regression with TensorFlow`_: A tutorial on Linear Regression 388 | 389 | .. _Deep Learning with Tensorflow - Logistic Regression: https://www.youtube.com/watch?v=4cBRxZavvTo&t=1s 390 | .. _Deep Learning with Tensorflow - Linear Regression with TensorFlow: https://www.youtube.com/watch?v=zNalsMIB3NE 391 | 392 | 393 | ------------------------------ 394 | Convolutional Neural Networks 395 | ------------------------------ 396 | 397 | .. image:: _img/mainpage/CNNs.png 398 | 399 | 400 | * `Convolutional Neural Networks`_: Official TensorFlow documentation 401 | * `Convolutional Neural Networks using TensorFlow`_: Training a classifier using convolutional neural networks 402 | * `Image classifier using convolutional neural network`_: Building a convolutional neural network based image classifier 403 | * `Convolutional Neural Network CNN with TensorFlow tutorial`_: It covers how to write a basic convolutional neural network within TensorFlow with Python 404 | * `Deep Learning CNNs in Tensorflow with GPUs`_: Designing the architecture of a convolutional neural network (CNN) 405 | 406 | 407 | .. _Convolutional Neural Networks: https://www.tensorflow.org/tutorials/deep_cnn 408 | .. _Convolutional Neural Networks using TensorFlow: https://github.com/astorfi/TensorFlow-World/tree/master/docs/tutorials/3-neural_network/convolutiona_neural_network 409 | .. _Image classifier using convolutional neural network: http://cv-tricks.com/tensorflow-tutorial/training-convolutional-neural-network-for-image-classification/ 410 | .. _Convolutional Neural Network CNN with TensorFlow tutorial: https://pythonprogramming.net/cnn-tensorflow-convolutional-nerual-network-machine-learning-tutorial/ 411 | .. _Deep Learning CNNs in Tensorflow with GPUs: https://hackernoon.com/deep-learning-cnns-in-tensorflow-with-gpus-cba6efe0acc2 412 | 413 | * `Deep Learning with Neural Networks`_: Convolutional Neural Networks with TensorFlow 414 | * `TensorFlow Tutorial`_: Convolutional Neural Network 415 | * `Understanding Convolution with TensorFlow`_: A tutorial on Convolution operation with TensorFlow 416 | * `CNN - Deep Learning with Tensorflow`_: Convolutional Network with TensorFlow 417 | 418 | .. _Deep Learning with Neural Networks: https://www.youtube.com/watch?v=mynJtLhhcXk 419 | .. _TensorFlow Tutorial: https://www.youtube.com/watch?v=HMcx-zY8JSg 420 | .. _Understanding Convolution with TensorFlow: https://www.youtube.com/watch?v=ETdaP_bBNWc 421 | .. _CNN - Deep Learning with Tensorflow: https://www.youtube.com/watch?v=yL-MkBSv18c 422 | 423 | ------------------------- 424 | Recurrent Neural Networks 425 | ------------------------- 426 | 427 | .. image:: _img/mainpage/RNN.png 428 | 429 | 430 | 431 | * `Recurrent Neural Networks`_: TensorFlow official documentation 432 | * `How to build a Recurrent Neural Network in TensorFlow`_: How to build a simple working Recurrent Neural Network in TensorFlow 433 | * `Recurrent Neural Networks in Tensorflow`_: Building a vanilla recurrent neural network (RNN) from the ground up in Tensorflow 434 | * `RNNs in Tensorflow - a Practical Guide and Undocumented Features`_: Going over some of the best practices for working with RNNs in Tensorflow 435 | * `RNN / LSTM cell example in TensorFlow and Python`_: Covering how to code a Recurrent Neural Network model with an LSTM in TensorFlow 436 | * `Sequence prediction using recurrent neural networks(LSTM) with TensorFlow`_: How to approximate a sequence of vectors using a recurrent neural networks 437 | * `TensorFlow RNN Tutorial`_: Recurrent Neural Networks for exploring time series and developing speech recognition capabilities 438 | 439 | .. _Recurrent Neural Networks: https://www.tensorflow.org/tutorials/recurrent 440 | .. _How to build a Recurrent Neural Network in TensorFlow: https://medium.com/@erikhallstrm/hello-world-rnn-83cd7105b767 441 | .. _Recurrent Neural Networks in Tensorflow: https://r2rt.com/recurrent-neural-networks-in-tensorflow-i.html 442 | .. _RNNs in Tensorflow - a Practical Guide and Undocumented Features: http://www.wildml.com/2016/08/rnns-in-tensorflow-a-practical-guide-and-undocumented-features/ 443 | .. _RNN / LSTM cell example in TensorFlow and Python: https://pythonprogramming.net/rnn-tensorflow-python-machine-learning-tutorial/ 444 | .. _Sequence prediction using recurrent neural networks(LSTM) with TensorFlow: http://mourafiq.com/2016/05/15/predicting-sequences-using-rnn-in-tensorflow.html 445 | .. _TensorFlow RNN Tutorial: https://svds.com/tensorflow-rnn-tutorial/ 446 | 447 | 448 | * `Deep Learning with Neural Networks and TensorFlow`_: Recurrent Neural Networks (RNN) 449 | * `An Introduction to LSTMs in Tensorflow`_: A brief tutorial 450 | * `Deep Learning with Tensorflow - The Recurrent Neural Network Model`_: A tutorial on the Recurrent Neural Network Models 451 | * `Sequence Models and the RNN API`_: TensorFlow Dev Summit 2017 452 | * `RNN Example in Tensorflow`_: A quick tutorial 453 | 454 | .. _Deep Learning with Neural Networks and TensorFlow: https://www.youtube.com/watch?v=hWgGJeAvLws 455 | .. _An Introduction to LSTMs in Tensorflow: https://www.youtube.com/watch?v=l4X-kZjl1gs 456 | .. _Deep Learning with Tensorflow - The Recurrent Neural Network Model: https://www.youtube.com/watch?v=C0xoB8L8ms0&t=89s 457 | .. _Sequence Models and the RNN API: https://www.youtube.com/watch?v=RIR_-Xlbp7s 458 | .. _RNN Example in Tensorflow: https://www.youtube.com/watch?v=dFARw8Pm0Gk 459 | 460 | ------------- 461 | Autoencoders 462 | ------------- 463 | 464 | .. image:: _img/mainpage/autoencoder.png 465 | 466 | * `Deep Autoencoder with TensorFlow`_: An open source project 467 | * `Variational Autoencoder in TensorFlow`_: A tutorial on Variational Autoencoder 468 | * `Diving Into TensorFlow With Stacked Autoencoders`_: A nice brief tutorials 469 | * `Convolutional Autoencoders in Tensorflow`_: Implementing a single layer CAE 470 | * `Variational Autoencoder using Tensorflow`_: Facial expression low dimensional embedding 471 | 472 | .. _Deep Autoencoder with TensorFlow: https://github.com/cmgreen210/TensorFlowDeepAutoencoder 473 | .. _Variational Autoencoder in TensorFlow: https://jmetzen.github.io/2015-11-27/vae.html 474 | .. _Diving Into TensorFlow With Stacked Autoencoders: http://cmgreen.io/2016/01/04/tensorflow_deep_autoencoder.html 475 | .. _Convolutional Autoencoders in Tensorflow: https://pgaleone.eu/neural-networks/deep-learning/2016/12/13/convolutional-autoencoders-in-tensorflow/ 476 | .. _Variational Autoencoder using Tensorflow: http://int8.io/variational-autoencoder-in-tensorflow/ 477 | 478 | 479 | * `Deep Learning with Tensorflow - Autoencoder Structure`_: Tutorial on Autoencoder models 480 | * `Deep Learning with Tensorflow - RBMs and Autoencoders`_: Tutorial on Restricted Boltzmann machines and AEs 481 | 482 | .. _Deep Learning with Tensorflow - Autoencoder Structure: https://www.youtube.com/watch?v=H_Bi_PQWJJc 483 | .. _Deep Learning with Tensorflow - RBMs and Autoencoders: https://www.youtube.com/watch?v=FsAvo0E5Pmw 484 | 485 | ----------------- 486 | Generative models 487 | ----------------- 488 | 489 | .. image:: _img/mainpage/generative_model.png 490 | 491 | 492 | 493 | * `Generative Adversarial Nets in TensorFlow`_: Implementing GAN using TensorFlow, with MNIST data 494 | * `Generative Adversarial Networks`_: A working example of Generative Adversarial Networks 495 | 496 | .. _Generative Adversarial Nets in TensorFlow: http://wiseodd.github.io/techblog/2016/09/17/gan-tensorflow/ 497 | .. _Generative Adversarial Networks: http://edwardlib.org/tutorials/gan 498 | 499 | * `TensorFlow Tutorial - Adversarial Examples`_: A tutorial on a working example for generative models 500 | 501 | .. _TensorFlow Tutorial - Adversarial Examples: link 502 | 503 | ------------- 504 | Multiple GPUs 505 | ------------- 506 | 507 | .. image:: _img/mainpage/multiple_gpu.png 508 | 509 | * `Using GPUs`_: Official TensorFlow documentation 510 | * `Deep Learning with Multiple GPUs on Rescale`_: TensorFlow Tutorial 511 | 512 | .. _Using GPUs: https://www.tensorflow.org/tutorials/using_gpu 513 | .. _Deep Learning with Multiple GPUs on Rescale: https://blog.rescale.com/deep-learning-with-multiple-gpus-on-rescale-tensorflow/ 514 | 515 | =================== 516 | TensorFlow Projects 517 | =================== 518 | 519 | This section is dedicated to provide resources that are mainly open source projects developed by TensorFlow. 520 | Those might be comprehensive tutorials on working example. 521 | 522 | ----------------------- 523 | Comprehensive Tutorials 524 | ----------------------- 525 | 526 | .. image:: _img/mainpage/tutorial.png 527 | 528 | * `TensorFlow-World`_: Concise and ready-to-use TensorFlow tutorials with detailed documentation 529 | * `TensorFlow-Tutorials`_: Introduction to deep learning based on Google's TensorFlow framework 530 | * `TensorFlow Tutorials`_: Organized tutorials in TensorFlow 531 | * `TensorFlow-Examples`_: Providing working examples in TensorFlow 532 | * `Tensorflow Tutorials using Jupyter Notebook`_: TensorFlow tutorials written in Python plus Jupyter Notebook 533 | 534 | .. _TensorFlow-World: https://github.com/astorfi/TensorFlow-World 535 | .. _TensorFlow-Tutorials: https://github.com/nlintz/TensorFlow-Tutorials 536 | .. _TensorFlow Tutorials: https://github.com/Hvass-Labs/TensorFlow-Tutorials 537 | .. _TensorFlow-Examples: https://github.com/aymericdamien/TensorFlow-Examples 538 | .. _Tensorflow Tutorials using Jupyter Notebook: https://github.com/sjchoi86/Tensorflow-101 539 | 540 | ------ 541 | Models 542 | ------ 543 | 544 | .. image:: _img/mainpage/models.png 545 | 546 | * `TensorFlow Models`_: Machine learning models implemented in TensorFlow 547 | * `Tensorflow VGG16 and VGG19`_: Implementation of VGG 16 and VGG 19 based on tensorflow-vgg16 and Caffe to Tensorflow 548 | * `ResNet in TensorFlow`_: Implementation of `Deep Residual Learning for Image Recognition `_ 549 | * `Inception in TensorFlow`_: Train the Inception v3 architecture 550 | * `A TensorFlow implementation of DeepMind WaveNet paper`_: TensorFlow implementation of the `WaveNet generative neural network architecture `_ for audio generation 551 | * `3D Convolutional Neural Networks for Speaker Verification`_: Implementation of `3D Convolutional Neural Networks for Speaker Verification application `_ in TensorFlow. 552 | * `Domain Transfer Network (DTN)`_: The implementation of `Unsupervised Cross-Domain Image Generation `_ in TensorFlow 553 | * `Neural Style`_: The Neural Style algorithm implementation that synthesizes a pastiche 554 | * `SqueezeNet in TensorFlow`_: Tensorflow implementation of SqueezeNet 555 | 556 | 557 | .. _TensorFlow Models: https://github.com/tensorflow/models 558 | .. _Tensorflow VGG16 and VGG19: https://github.com/machrisaa/tensorflow-vgg 559 | .. _ResNet in TensorFlow: https://github.com/ry/tensorflow-resnet 560 | .. _Inception in TensorFlow: https://github.com/tensorflow/models/tree/master/inception 561 | .. _A TensorFlow implementation of DeepMind WaveNet paper: https://github.com/ibab/tensorflow-wavenet 562 | .. _3D Convolutional Neural Networks for Speaker Verification: https://github.com/astorfi/3D-convolutional-speaker-recognition 563 | .. _Domain Transfer Network (DTN): https://github.com/yunjey/domain-transfer-network 564 | .. _Neural Style: https://github.com/cysmith/neural-style-tf 565 | .. _SqueezeNet in TensorFlow: https://github.com/vonclites/squeezenet 566 | 567 | 568 | =================== 569 | Published Resources 570 | =================== 571 | 572 | This section is dedicated to provide published resources on TensorFlow, Such as websites, blogs, and books. 573 | 574 | 575 | 576 | --------------------------------- 577 | Online Courses and Documentations 578 | --------------------------------- 579 | 580 | .. image:: _img/mainpage/online.png 581 | 582 | * `LearningTensorFlow`_: Beginner-level tutorials for a TensorFlow 583 | * `Deep Learning by Google`_: A free online course developed by Google and Udacity 584 | * `Tensorflow for Deep Learning Research`_: A comprehensive course by Stanford 585 | * `Creative Applications of Deep Learning with TensorFlow`_: A free online course on TensorFlow from Kadenze 586 | * `Deep Learning with TensorFlow Tutorial`_: In this TensorFlow course, you will be able to learn the basic concepts of TensorFlow 587 | 588 | .. _LearningTensorFlow: https://learningtensorflow.com/ 589 | .. _Deep Learning by Google: https://www.udacity.com/course/deep-learning--ud730 590 | .. _Tensorflow for Deep Learning Research: https://web.stanford.edu/class/cs20si/ 591 | .. _Creative Applications of Deep Learning with TensorFlow: https://www.kadenze.com/courses/creative-applications-of-deep-learning-with-tensorflow/info 592 | .. _Deep Learning with TensorFlow Tutorial: https://cognitiveclass.ai/courses/deep-learning-tensorflow/ 593 | 594 | 595 | ------ 596 | Books 597 | ------ 598 | 599 | .. image:: _img/mainpage/books.jpg 600 | 601 | * `TensorFlow Machine Learning Cookbook`_: Quick guide to implementing TensorFlow in your day-to-day machine learning activities 602 | * `Deep Learning with TensorFlow`_: Throughout the book, you’ll learn how to implement deep learning algorithms for machine learning systems 603 | * `First contact with TensorFlow`_: An online book on TensorFlow 604 | * `Building Machine Learning Projects with TensorFlow`_: Learn how to implement TensorFlow in production 605 | * `Learning TensorFlow`_: This book is an end-to-end guide to TensorFlow 606 | * `Machine Learning with TensorFlow`_: Tackle common commercial machine learning problems with Google’s TensorFlow library 607 | * `Getting Started with TensorFlow`_: An easy-to-understand book on TensorFlow 608 | * `Hands-On Machine Learning with Scikit-Learn and TensorFlow`_: By using examples, theory, the book help to gain an understanding of the machine learning concepts 609 | * `Machine Learning with TensorFlow (MEAP)`_: An introduction to the concepts of TensorFlow 610 | 611 | .. _TensorFlow Machine Learning Cookbook: https://www.amazon.com/dp/B01HY3TC54/ref=dp-kindle-redirect?_encoding=UTF8&btkr=1 612 | .. _Deep Learning with TensorFlow: https://www.packtpub.com/big-data-and-business-intelligence/deep-learning-tensorflow 613 | .. _First contact with TensorFlow: http://jorditorres.org/first-contact-with-tensorflow/ 614 | .. _Building Machine Learning Projects with TensorFlow: https://www.amazon.com/dp/B01M2Z8FS4/ref=dp-kindle-redirect?_encoding=UTF8&btkr=1 615 | .. _Learning TensorFlow: http://shop.oreilly.com/product/0636920063698.do 616 | .. _Machine Learning with TensorFlow: https://www.packtpub.com/big-data-and-business-intelligence/machine-learning-tensorflow 617 | .. _Getting Started with TensorFlow: https://www.amazon.com/Getting-Started-TensorFlow-Giancarlo-Zaccone-ebook/dp/B01H1JD6JO 618 | .. _Hands-On Machine Learning with Scikit-Learn and TensorFlow: http://shop.oreilly.com/product/0636920052289.do 619 | .. _Machine Learning with TensorFlow (MEAP): https://www.manning.com/books/machine-learning-with-tensorflow 620 | 621 | 622 | ============ 623 | Contributing 624 | ============ 625 | 626 | *For typos, please do not create a pull request. Instead, declare them in issues or email the repository owner*. Please note we have a code of conduct, please follow it in all your interactions with the project. 627 | 628 | -------------------- 629 | Pull Request Process 630 | -------------------- 631 | 632 | Please consider the following criterions in order to help us in a better way: 633 | 634 | 1. The pull request is mainly expected to be a link suggestion. 635 | 2. Please make sure your suggested resources are not obsolete or broken. 636 | 3. Ensure any install or build dependencies are removed before the end of the layer when doing a 637 | build and creating a pull request. 638 | 4. Add comments with details of changes to the interface, this includes new environment 639 | variables, exposed ports, useful file locations and container parameters. 640 | 5. You may merge the Pull Request in once you have the sign-off of at least one other developer, or if you 641 | do not have permission to do that, you may request the owner to merge it for you if you believe all checks are passed. 642 | 643 | ---------- 644 | Final Note 645 | ---------- 646 | 647 | We are looking forward to your kind feedback. Please help us to improve this open source project and make our work better. 648 | For contribution, please create a pull request and we will investigate it promptly. Once again, we appreciate 649 | your kind feedback and support. 650 | -------------------------------------------------------------------------------- /_img/mainpage/RNN2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 29 | 35 | 36 | 44 | 50 | 51 | 59 | 65 | 66 | 75 | 81 | 82 | 91 | 97 | 98 | 106 | 112 | 113 | 122 | 128 | 129 | 138 | 144 | 145 | 153 | 159 | 160 | 168 | 174 | 175 | 183 | 189 | 190 | 198 | 204 | 205 | 214 | 220 | 221 | 229 | 235 | 236 | 237 | 257 | 259 | 260 | 262 | image/svg+xml 263 | 265 | 266 | 267 | 268 | 269 | 274 | 277 | 280 | 283 | 286 | 295 | 301 | 307 | 313 | 319 | xt-1 333 | ht-1 347 | ot-1 361 | 366 | 371 | 380 | 386 | xt 400 | 406 | 413 | ot 427 | 433 | 442 | ht+1 456 | 461 | 466 | 472 | 478 | 484 | 490 | xt+1 504 | ot+1 518 | 524 | 530 | GRU unit 542 | 548 | 554 | 555 | 558 | 567 | σ 579 | 582 | 591 | tanh 603 | 604 | 607 | 615 | 620 | 625 | 626 | 634 | 639 | 644 | 650 | 656 | 662 | 667 | 673 | 679 | 685 | 691 | ht-1 705 | xt 719 | ht 733 | Rt 747 | ht 761 | 767 | 773 | 782 | σ 794 | 800 | 808 | 813 | 818 | 821 | 824 | 832 | 1- 844 | 845 | 846 | 849 | 857 | 862 | 867 | 868 | 874 | 880 | Zt 894 | 900 | 906 | 912 | 918 | 924 | 930 | 936 | 942 | 948 | 956 | 964 | 972 | 973 | ... 986 | ... 1000 | 1001 | 1002 | 1003 | --------------------------------------------------------------------------------