Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e6fcf77

Browse filesBrowse files
Merge remote-tracking branch 'origin/main' into main
2 parents 1332c86 + e4653f6 commit e6fcf77
Copy full SHA for e6fcf77

File tree

1 file changed

+21
-1
lines changed
Filter options

1 file changed

+21
-1
lines changed

‎README.md

Copy file name to clipboard
+21-1Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,21 @@
1-
# TODO
1+
# Numpy implementation of some ML Algorithms
2+
This repo contains a numpy from-scratch implementation of some ML algorithms, initially designed for the MNIST Digit classification task (~3% error, averaged over 20 runs of 5 fold cross-validation)
3+
4+
- [x] kNN
5+
- [x] 3 Layer MLP (ReLU & Softmax activations), Cross-Entropy Loss
6+
- [x] Least Squares
7+
- [x] Winnow
8+
- [x] One-vs-One and One-vs-All Muliticlass Kernel Perceptron
9+
- [x] logistic regression with AdaGrad optimiser
10+
- [ ] SVM (primal + dual)
11+
12+
13+
14+
## Additional Functions
15+
files: CV.py and helper_functions.py
16+
- [x] random train/test split
17+
- [x] Cross Validation
18+
- [x] Gram Matrix (for polynomial and Gaussian kernels)
19+
- [x] numerical gradient check
20+
21+
TODO: change output type from error rate to prediction

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.