├── .devcontainer ├── Dockerfile ├── devcontainer.json ├── requirements.txt └── welcome-message.txt ├── .gitignore ├── 00-is-it-a-bird-creating-a-model-from-your-own-data.ipynb ├── 01-jupyter-notebook-101.ipynb ├── 02-saving-a-basic-fastai-model.ipynb ├── 03-which-image-models-are-best.ipynb ├── 04-how-does-a-neural-net-really-work.ipynb ├── 05-linear-model-and-neural-net-from-scratch.ipynb ├── 06-why-you-should-use-a-framework.ipynb ├── 07-how-random-forests-really-work.ipynb ├── 08-first-steps-road-to-the-top-part-1.ipynb ├── 09-small-models-road-to-the-top-part-2.ipynb ├── 10-scaling-up-road-to-the-top-part-3.ipynb ├── README.md ├── clean ├── 00-is-it-a-bird-creating-a-model-from-your-own-data.ipynb ├── 01-jupyter-notebook-101.ipynb ├── 02-saving-a-basic-fastai-model.ipynb ├── 03-which-image-models-are-best.ipynb ├── 04-how-does-a-neural-net-really-work.ipynb ├── 05-linear-model-and-neural-net-from-scratch.ipynb ├── 06-why-you-should-use-a-framework.ipynb ├── 07-how-random-forests-really-work.ipynb ├── 08-first-steps-road-to-the-top-part-1.ipynb ├── 09-small-models-road-to-the-top-part-2.ipynb └── 10-scaling-up-road-to-the-top-part-3.ipynb ├── getting-started-with-codespaces.md ├── rise.css ├── slides ├── bird.jpg ├── birds.ipynb ├── lesson1.pdf ├── lesson2.pptx ├── lesson3.pptx ├── lesson4.pptx ├── lesson5.pptx ├── lesson7.pdf └── nlp-intro.ipynb ├── tools ├── README.md ├── clean.py ├── download.py └── kaggles.txt └── xl ├── collab_filter.xlsx ├── conv-example.xlsx ├── entropy_example.xlsx └── titanic.xlsx /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/.devcontainer/requirements.txt -------------------------------------------------------------------------------- /.devcontainer/welcome-message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/.devcontainer/welcome-message.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/.gitignore -------------------------------------------------------------------------------- /00-is-it-a-bird-creating-a-model-from-your-own-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/00-is-it-a-bird-creating-a-model-from-your-own-data.ipynb -------------------------------------------------------------------------------- /01-jupyter-notebook-101.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/01-jupyter-notebook-101.ipynb -------------------------------------------------------------------------------- /02-saving-a-basic-fastai-model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/02-saving-a-basic-fastai-model.ipynb -------------------------------------------------------------------------------- /03-which-image-models-are-best.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/03-which-image-models-are-best.ipynb -------------------------------------------------------------------------------- /04-how-does-a-neural-net-really-work.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/04-how-does-a-neural-net-really-work.ipynb -------------------------------------------------------------------------------- /05-linear-model-and-neural-net-from-scratch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/05-linear-model-and-neural-net-from-scratch.ipynb -------------------------------------------------------------------------------- /06-why-you-should-use-a-framework.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/06-why-you-should-use-a-framework.ipynb -------------------------------------------------------------------------------- /07-how-random-forests-really-work.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/07-how-random-forests-really-work.ipynb -------------------------------------------------------------------------------- /08-first-steps-road-to-the-top-part-1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/08-first-steps-road-to-the-top-part-1.ipynb -------------------------------------------------------------------------------- /09-small-models-road-to-the-top-part-2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/09-small-models-road-to-the-top-part-2.ipynb -------------------------------------------------------------------------------- /10-scaling-up-road-to-the-top-part-3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/10-scaling-up-road-to-the-top-part-3.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/README.md -------------------------------------------------------------------------------- /clean/00-is-it-a-bird-creating-a-model-from-your-own-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/clean/00-is-it-a-bird-creating-a-model-from-your-own-data.ipynb -------------------------------------------------------------------------------- /clean/01-jupyter-notebook-101.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/clean/01-jupyter-notebook-101.ipynb -------------------------------------------------------------------------------- /clean/02-saving-a-basic-fastai-model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/clean/02-saving-a-basic-fastai-model.ipynb -------------------------------------------------------------------------------- /clean/03-which-image-models-are-best.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/clean/03-which-image-models-are-best.ipynb -------------------------------------------------------------------------------- /clean/04-how-does-a-neural-net-really-work.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/clean/04-how-does-a-neural-net-really-work.ipynb -------------------------------------------------------------------------------- /clean/05-linear-model-and-neural-net-from-scratch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/clean/05-linear-model-and-neural-net-from-scratch.ipynb -------------------------------------------------------------------------------- /clean/06-why-you-should-use-a-framework.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/clean/06-why-you-should-use-a-framework.ipynb -------------------------------------------------------------------------------- /clean/07-how-random-forests-really-work.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/clean/07-how-random-forests-really-work.ipynb -------------------------------------------------------------------------------- /clean/08-first-steps-road-to-the-top-part-1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/clean/08-first-steps-road-to-the-top-part-1.ipynb -------------------------------------------------------------------------------- /clean/09-small-models-road-to-the-top-part-2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/clean/09-small-models-road-to-the-top-part-2.ipynb -------------------------------------------------------------------------------- /clean/10-scaling-up-road-to-the-top-part-3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/clean/10-scaling-up-road-to-the-top-part-3.ipynb -------------------------------------------------------------------------------- /getting-started-with-codespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/getting-started-with-codespaces.md -------------------------------------------------------------------------------- /rise.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/rise.css -------------------------------------------------------------------------------- /slides/bird.jpg: -------------------------------------------------------------------------------- 1 | bird.jpg -------------------------------------------------------------------------------- /slides/birds.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/slides/birds.ipynb -------------------------------------------------------------------------------- /slides/lesson1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/slides/lesson1.pdf -------------------------------------------------------------------------------- /slides/lesson2.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/slides/lesson2.pptx -------------------------------------------------------------------------------- /slides/lesson3.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/slides/lesson3.pptx -------------------------------------------------------------------------------- /slides/lesson4.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/slides/lesson4.pptx -------------------------------------------------------------------------------- /slides/lesson5.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/slides/lesson5.pptx -------------------------------------------------------------------------------- /slides/lesson7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/slides/lesson7.pdf -------------------------------------------------------------------------------- /slides/nlp-intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/slides/nlp-intro.ipynb -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/tools/clean.py -------------------------------------------------------------------------------- /tools/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/tools/download.py -------------------------------------------------------------------------------- /tools/kaggles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/tools/kaggles.txt -------------------------------------------------------------------------------- /xl/collab_filter.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/xl/collab_filter.xlsx -------------------------------------------------------------------------------- /xl/conv-example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/xl/conv-example.xlsx -------------------------------------------------------------------------------- /xl/entropy_example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/xl/entropy_example.xlsx -------------------------------------------------------------------------------- /xl/titanic.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/course22/HEAD/xl/titanic.xlsx --------------------------------------------------------------------------------