├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── Lecture4.ipynb ├── Lecture4.pdf ├── Lecture4.tex ├── README.md └── start /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.aux 2 | *.log 3 | .ipynb_checkpoints/ 4 | .python-version 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karalekas/stanford-cs269q/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karalekas/stanford-cs269q/HEAD/LICENSE -------------------------------------------------------------------------------- /Lecture4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karalekas/stanford-cs269q/HEAD/Lecture4.ipynb -------------------------------------------------------------------------------- /Lecture4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karalekas/stanford-cs269q/HEAD/Lecture4.pdf -------------------------------------------------------------------------------- /Lecture4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karalekas/stanford-cs269q/HEAD/Lecture4.tex -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karalekas/stanford-cs269q/HEAD/README.md -------------------------------------------------------------------------------- /start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karalekas/stanford-cs269q/HEAD/start --------------------------------------------------------------------------------