Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hyzhak/cs231n-lecture-notes

my lecture notes of cs231n of Andrej Karpathy
https://github.com/hyzhak/cs231n-lecture-notes

andrej-karpathy cs231n deep-learning jupyter-notebook knn lecture-notes linear-classifier machine-learning

Last synced: about 2 months ago
JSON representation

my lecture notes of cs231n of Andrej Karpathy

Awesome Lists containing this project

README

        

# cs231n-lecture-notes
My lecture notes of cs231n of Andrej Karpathy and Solutions for assignments.

## Notes :notebook:

- Lecture 1 is just introduction so I haven't done any notes there
- [Lecture 2](./lec2-data-driven-approach-knn-linear-classification.ipynb)
- [Lecture 3](./lec3-linear-classification-optimization.ipynb)
- [Lecture 4](./lec4-computational-graph-backpropagation-neural-networks.ipynb)
- [Lecture 5](./lec5-neural-network.ipynb)
- [Lecture 6](./lec6-neural-network-cnn.ipynb)
- [Lecture 7](./lec7-cnn.ipynb)

## Solutions :microscope:

- Assignment 1
- [Q1: k-Nearest Neighbor classifier](./assignment1/knn.ipynb) **DONE**
- [Q2: Multiclass Support Vector Machine (SVM)](./assignment1/svm.ipynb) **DONE**
- [Q3: Softmax](./assignment1/softmax.ipynb) **DONE**
- [Q4: Two-Layer Neural Network](./assignment1/two_layer_net.ipynb) **DONE**
- [Q5: Higher Level Representations: Image Features](./assignment1/features.ipynb) **DONE**

- Assignment 2
- [Q1 Fully-connected Neural Network](./assignment2/FullyConnectedNets.ipynb) **IN PROGRESS**