├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── images ├── andrej_on_learning.png └── cover.png ├── resources ├── blogs.md ├── books.md ├── courses.md ├── datasets.md ├── papers.md ├── projects.md └── videos-and-podcasts.md └── weekly-notes └── week1.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswh/ai-research-program/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswh/ai-research-program/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswh/ai-research-program/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswh/ai-research-program/HEAD/README.md -------------------------------------------------------------------------------- /images/andrej_on_learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswh/ai-research-program/HEAD/images/andrej_on_learning.png -------------------------------------------------------------------------------- /images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswh/ai-research-program/HEAD/images/cover.png -------------------------------------------------------------------------------- /resources/blogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswh/ai-research-program/HEAD/resources/blogs.md -------------------------------------------------------------------------------- /resources/books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswh/ai-research-program/HEAD/resources/books.md -------------------------------------------------------------------------------- /resources/courses.md: -------------------------------------------------------------------------------- 1 | ## Courses that I am going to take 2 | 3 | - -------------------------------------------------------------------------------- /resources/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswh/ai-research-program/HEAD/resources/datasets.md -------------------------------------------------------------------------------- /resources/papers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswh/ai-research-program/HEAD/resources/papers.md -------------------------------------------------------------------------------- /resources/projects.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/videos-and-podcasts.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weekly-notes/week1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswh/ai-research-program/HEAD/weekly-notes/week1.md --------------------------------------------------------------------------------