├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── chapter-topic-request.md ├── .gitignore ├── Chapter-1 ├── Chapter-1.md └── assests │ ├── Chapter-1-backprop.png │ ├── Chapter-1-dropouts.png │ ├── Chapter-1-fcn.png │ ├── Chapter-1-fig-1 .png │ ├── Chapter-1-hog.png │ └── Chapter-1-univapprox.png ├── Chapter-2 ├── Chapter-2.md └── assests │ └── Chapter-2-figure-1.png ├── Chapter-3 ├── Chapter-3.md └── assests │ ├── img-flat-hist.png │ ├── img_3d.jpg │ └── matplotlib-3d-visual.png ├── Chapter-4 └── Chapter-4.md ├── Chapter-5 └── Chapter-5.md ├── First-Steps-Towards-Deep-Learning.pdf ├── LICENSE ├── README.md ├── genpdf ├── __init__.py ├── __main__.py └── assets │ ├── css │ └── pdf.css │ └── fonts │ └── Raleway-Regular.ttf ├── images ├── FIRST STEP towards deep learning.png ├── First Steps towards Deep Learning.png └── First steps towards deep learning with pytorch cover.png └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/chapter-topic-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/.github/ISSUE_TEMPLATE/chapter-topic-request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter-1/Chapter-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-1/Chapter-1.md -------------------------------------------------------------------------------- /Chapter-1/assests/Chapter-1-backprop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-1/assests/Chapter-1-backprop.png -------------------------------------------------------------------------------- /Chapter-1/assests/Chapter-1-dropouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-1/assests/Chapter-1-dropouts.png -------------------------------------------------------------------------------- /Chapter-1/assests/Chapter-1-fcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-1/assests/Chapter-1-fcn.png -------------------------------------------------------------------------------- /Chapter-1/assests/Chapter-1-fig-1 .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-1/assests/Chapter-1-fig-1 .png -------------------------------------------------------------------------------- /Chapter-1/assests/Chapter-1-hog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-1/assests/Chapter-1-hog.png -------------------------------------------------------------------------------- /Chapter-1/assests/Chapter-1-univapprox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-1/assests/Chapter-1-univapprox.png -------------------------------------------------------------------------------- /Chapter-2/Chapter-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-2/Chapter-2.md -------------------------------------------------------------------------------- /Chapter-2/assests/Chapter-2-figure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-2/assests/Chapter-2-figure-1.png -------------------------------------------------------------------------------- /Chapter-3/Chapter-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-3/Chapter-3.md -------------------------------------------------------------------------------- /Chapter-3/assests/img-flat-hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-3/assests/img-flat-hist.png -------------------------------------------------------------------------------- /Chapter-3/assests/img_3d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-3/assests/img_3d.jpg -------------------------------------------------------------------------------- /Chapter-3/assests/matplotlib-3d-visual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-3/assests/matplotlib-3d-visual.png -------------------------------------------------------------------------------- /Chapter-4/Chapter-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-4/Chapter-4.md -------------------------------------------------------------------------------- /Chapter-5/Chapter-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/Chapter-5/Chapter-5.md -------------------------------------------------------------------------------- /First-Steps-Towards-Deep-Learning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/First-Steps-Towards-Deep-Learning.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/README.md -------------------------------------------------------------------------------- /genpdf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /genpdf/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/genpdf/__main__.py -------------------------------------------------------------------------------- /genpdf/assets/css/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/genpdf/assets/css/pdf.css -------------------------------------------------------------------------------- /genpdf/assets/fonts/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/genpdf/assets/fonts/Raleway-Regular.ttf -------------------------------------------------------------------------------- /images/FIRST STEP towards deep learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/images/FIRST STEP towards deep learning.png -------------------------------------------------------------------------------- /images/First Steps towards Deep Learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/images/First Steps towards Deep Learning.png -------------------------------------------------------------------------------- /images/First steps towards deep learning with pytorch cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/images/First steps towards deep learning with pytorch cover.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vaibhawvipul/First-steps-towards-Deep-Learning/HEAD/requirements.txt --------------------------------------------------------------------------------