├── .github ├── ISSUE_TEMPLATE │ └── upgrade.md └── workflows │ ├── ci.yaml │ ├── gh-page.yaml │ ├── setup.yaml │ └── upgrade.yaml ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── README.md ├── _action_files ├── Dockerfile ├── __init__.py ├── action.yml ├── action_entrypoint.sh ├── fast_template.py ├── fastpages-jekyll.Dockerfile ├── fastpages-nbdev.Dockerfile ├── fastpages.tpl ├── hide.tpl ├── nb2post.py ├── parse_netlify.py ├── pr_comment.sh ├── settings.ini ├── word2post.py └── word2post.sh ├── _config.yml ├── _fastpages_docs ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── NOTEBOOK_FOOTNOTES.md ├── README_TEMPLATE.md ├── UPGRADE.md ├── _checkbox.png ├── _manual_setup.md ├── _paginate.png ├── _post_tags.png ├── _setup_pr_template.md ├── _show_image_true.png ├── _upgrade_pr.md ├── highlight_dracula.png ├── highlight_original.png ├── upgrade_step1.png ├── upgrade_step2.png ├── upgrade_step3.png └── version.txt ├── _includes ├── alert.html ├── custom-head.html ├── favicons.html ├── google-analytics.html ├── head.html ├── image-r ├── image.html ├── important.html ├── info.html ├── note.html ├── notebook_binder_link.html ├── notebook_colab_link.html ├── notebook_github_link.html ├── post_list.html ├── post_list_image_card.html ├── reading_time.html ├── screenshot ├── tip.html ├── toc.html ├── twitter.html ├── utterances.html ├── warning.html └── youtube.html ├── _layouts ├── categories.html ├── home.html ├── notebook.html └── post.html ├── _notebooks ├── 2020-03-18-A_Gentle_Introduction_to_PyTorch_1_2.ipynb ├── 2020-03-18-RNN_PT.ipynb ├── 2020-03-18-pytorch_hello_world.ipynb ├── 2020-03-18-pytorch_logistic_regression.ipynb ├── 2020-03-18-pytorch_quick_start.ipynb ├── 2020-03-19-Writing_Primer_for_Data_Scientists.ipynb ├── 2020-03-19-nlp_basics_tokenization_segmentation.ipynb ├── 2020-03-19-nn.ipynb ├── README.md └── my_icons │ └── fastai_logo.png ├── _pages ├── 404.html ├── about.md ├── search.html ├── submit.html └── tags.html ├── _plugins ├── footnote-detail.rb └── footnote.rb ├── _posts └── README.md ├── _sass └── minima │ ├── custom-styles.scss │ ├── fastpages-dracula-highlight.scss │ └── fastpages-styles.scss ├── assets ├── badges │ ├── binder.svg │ ├── colab.svg │ └── github.svg └── js │ ├── search-data.json │ ├── search.js │ └── vendor │ └── lunr.min.js ├── docker-compose.yml ├── images ├── copied_from_nb │ └── README.md ├── data-science.png ├── diagram.png ├── favicon.ico ├── favicon.png ├── fon-1.png ├── front-matter.png ├── intro-pytorch.png ├── logistic-regression.png ├── logo.png ├── model-nn.png ├── nn.png ├── notebooks.png ├── pytorch-quick.png └── rnn-pt.png └── index.html /.github/ISSUE_TEMPLATE/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/.github/ISSUE_TEMPLATE/upgrade.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/gh-page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/.github/workflows/gh-page.yaml -------------------------------------------------------------------------------- /.github/workflows/setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/.github/workflows/setup.yaml -------------------------------------------------------------------------------- /.github/workflows/upgrade.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/.github/workflows/upgrade.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/README.md -------------------------------------------------------------------------------- /_action_files/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/Dockerfile -------------------------------------------------------------------------------- /_action_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_action_files/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/action.yml -------------------------------------------------------------------------------- /_action_files/action_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/action_entrypoint.sh -------------------------------------------------------------------------------- /_action_files/fast_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/fast_template.py -------------------------------------------------------------------------------- /_action_files/fastpages-jekyll.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/fastpages-jekyll.Dockerfile -------------------------------------------------------------------------------- /_action_files/fastpages-nbdev.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/fastpages-nbdev.Dockerfile -------------------------------------------------------------------------------- /_action_files/fastpages.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/fastpages.tpl -------------------------------------------------------------------------------- /_action_files/hide.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/hide.tpl -------------------------------------------------------------------------------- /_action_files/nb2post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/nb2post.py -------------------------------------------------------------------------------- /_action_files/parse_netlify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/parse_netlify.py -------------------------------------------------------------------------------- /_action_files/pr_comment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/pr_comment.sh -------------------------------------------------------------------------------- /_action_files/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/settings.ini -------------------------------------------------------------------------------- /_action_files/word2post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/word2post.py -------------------------------------------------------------------------------- /_action_files/word2post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_action_files/word2post.sh -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_config.yml -------------------------------------------------------------------------------- /_fastpages_docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /_fastpages_docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /_fastpages_docs/NOTEBOOK_FOOTNOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/NOTEBOOK_FOOTNOTES.md -------------------------------------------------------------------------------- /_fastpages_docs/README_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/README_TEMPLATE.md -------------------------------------------------------------------------------- /_fastpages_docs/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/UPGRADE.md -------------------------------------------------------------------------------- /_fastpages_docs/_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/_checkbox.png -------------------------------------------------------------------------------- /_fastpages_docs/_manual_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/_manual_setup.md -------------------------------------------------------------------------------- /_fastpages_docs/_paginate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/_paginate.png -------------------------------------------------------------------------------- /_fastpages_docs/_post_tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/_post_tags.png -------------------------------------------------------------------------------- /_fastpages_docs/_setup_pr_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/_setup_pr_template.md -------------------------------------------------------------------------------- /_fastpages_docs/_show_image_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/_show_image_true.png -------------------------------------------------------------------------------- /_fastpages_docs/_upgrade_pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/_upgrade_pr.md -------------------------------------------------------------------------------- /_fastpages_docs/highlight_dracula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/highlight_dracula.png -------------------------------------------------------------------------------- /_fastpages_docs/highlight_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/highlight_original.png -------------------------------------------------------------------------------- /_fastpages_docs/upgrade_step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/upgrade_step1.png -------------------------------------------------------------------------------- /_fastpages_docs/upgrade_step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/upgrade_step2.png -------------------------------------------------------------------------------- /_fastpages_docs/upgrade_step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_fastpages_docs/upgrade_step3.png -------------------------------------------------------------------------------- /_fastpages_docs/version.txt: -------------------------------------------------------------------------------- 1 | 2.1.11 2 | -------------------------------------------------------------------------------- /_includes/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/alert.html -------------------------------------------------------------------------------- /_includes/custom-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/custom-head.html -------------------------------------------------------------------------------- /_includes/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/favicons.html -------------------------------------------------------------------------------- /_includes/google-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/google-analytics.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/image-r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/image-r -------------------------------------------------------------------------------- /_includes/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/image.html -------------------------------------------------------------------------------- /_includes/important.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/important.html -------------------------------------------------------------------------------- /_includes/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/info.html -------------------------------------------------------------------------------- /_includes/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/note.html -------------------------------------------------------------------------------- /_includes/notebook_binder_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/notebook_binder_link.html -------------------------------------------------------------------------------- /_includes/notebook_colab_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/notebook_colab_link.html -------------------------------------------------------------------------------- /_includes/notebook_github_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/notebook_github_link.html -------------------------------------------------------------------------------- /_includes/post_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/post_list.html -------------------------------------------------------------------------------- /_includes/post_list_image_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/post_list_image_card.html -------------------------------------------------------------------------------- /_includes/reading_time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/reading_time.html -------------------------------------------------------------------------------- /_includes/screenshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/screenshot -------------------------------------------------------------------------------- /_includes/tip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/tip.html -------------------------------------------------------------------------------- /_includes/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/toc.html -------------------------------------------------------------------------------- /_includes/twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/twitter.html -------------------------------------------------------------------------------- /_includes/utterances.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/utterances.html -------------------------------------------------------------------------------- /_includes/warning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/warning.html -------------------------------------------------------------------------------- /_includes/youtube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_includes/youtube.html -------------------------------------------------------------------------------- /_layouts/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_layouts/categories.html -------------------------------------------------------------------------------- /_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_layouts/home.html -------------------------------------------------------------------------------- /_layouts/notebook.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_notebooks/2020-03-18-A_Gentle_Introduction_to_PyTorch_1_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_notebooks/2020-03-18-A_Gentle_Introduction_to_PyTorch_1_2.ipynb -------------------------------------------------------------------------------- /_notebooks/2020-03-18-RNN_PT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_notebooks/2020-03-18-RNN_PT.ipynb -------------------------------------------------------------------------------- /_notebooks/2020-03-18-pytorch_hello_world.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_notebooks/2020-03-18-pytorch_hello_world.ipynb -------------------------------------------------------------------------------- /_notebooks/2020-03-18-pytorch_logistic_regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_notebooks/2020-03-18-pytorch_logistic_regression.ipynb -------------------------------------------------------------------------------- /_notebooks/2020-03-18-pytorch_quick_start.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_notebooks/2020-03-18-pytorch_quick_start.ipynb -------------------------------------------------------------------------------- /_notebooks/2020-03-19-Writing_Primer_for_Data_Scientists.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_notebooks/2020-03-19-Writing_Primer_for_Data_Scientists.ipynb -------------------------------------------------------------------------------- /_notebooks/2020-03-19-nlp_basics_tokenization_segmentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_notebooks/2020-03-19-nlp_basics_tokenization_segmentation.ipynb -------------------------------------------------------------------------------- /_notebooks/2020-03-19-nn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_notebooks/2020-03-19-nn.ipynb -------------------------------------------------------------------------------- /_notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_notebooks/README.md -------------------------------------------------------------------------------- /_notebooks/my_icons/fastai_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_notebooks/my_icons/fastai_logo.png -------------------------------------------------------------------------------- /_pages/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_pages/404.html -------------------------------------------------------------------------------- /_pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_pages/about.md -------------------------------------------------------------------------------- /_pages/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_pages/search.html -------------------------------------------------------------------------------- /_pages/submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_pages/submit.html -------------------------------------------------------------------------------- /_pages/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_pages/tags.html -------------------------------------------------------------------------------- /_plugins/footnote-detail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_plugins/footnote-detail.rb -------------------------------------------------------------------------------- /_plugins/footnote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_plugins/footnote.rb -------------------------------------------------------------------------------- /_posts/README.md: -------------------------------------------------------------------------------- 1 | ## Nothing to see here 2 | -------------------------------------------------------------------------------- /_sass/minima/custom-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_sass/minima/custom-styles.scss -------------------------------------------------------------------------------- /_sass/minima/fastpages-dracula-highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_sass/minima/fastpages-dracula-highlight.scss -------------------------------------------------------------------------------- /_sass/minima/fastpages-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/_sass/minima/fastpages-styles.scss -------------------------------------------------------------------------------- /assets/badges/binder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/assets/badges/binder.svg -------------------------------------------------------------------------------- /assets/badges/colab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/assets/badges/colab.svg -------------------------------------------------------------------------------- /assets/badges/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/assets/badges/github.svg -------------------------------------------------------------------------------- /assets/js/search-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/assets/js/search-data.json -------------------------------------------------------------------------------- /assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/assets/js/search.js -------------------------------------------------------------------------------- /assets/js/vendor/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/assets/js/vendor/lunr.min.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /images/copied_from_nb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/copied_from_nb/README.md -------------------------------------------------------------------------------- /images/data-science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/data-science.png -------------------------------------------------------------------------------- /images/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/diagram.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/favicon.png -------------------------------------------------------------------------------- /images/fon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/fon-1.png -------------------------------------------------------------------------------- /images/front-matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/front-matter.png -------------------------------------------------------------------------------- /images/intro-pytorch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/intro-pytorch.png -------------------------------------------------------------------------------- /images/logistic-regression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/logistic-regression.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/model-nn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/model-nn.png -------------------------------------------------------------------------------- /images/nn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/nn.png -------------------------------------------------------------------------------- /images/notebooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/notebooks.png -------------------------------------------------------------------------------- /images/pytorch-quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/pytorch-quick.png -------------------------------------------------------------------------------- /images/rnn-pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/images/rnn-pt.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dair-ai/notebooks/HEAD/index.html --------------------------------------------------------------------------------