Skip to content

Commit 61233a2

Browse files
authored
Update and rename readme.txt to readme.md
1 parent 019fd4d commit 61233a2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

readme.txt renamed to readme.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,13 @@ Finally, svm_test_full.py trains a SVM classifier on the whole MNIST data.
1212
In my experiment, I found training an SVM with 'RBF' kernel is much faster than that with linear kernel. I don't why. Perhaps it is because in RKHS the data points are more separable thus facilitates the training procedure.
1313
For your reference, Training a MultiSVM classifier with 'RBF' kernel on 6/7 MNIST data (i.e., using 60k examples as the training set) takes 11462s on my workstation (32GB RAM, 1 CPU with 8 Intel(R) Xeon(R) CPU E5-1620 v2 @ 3.70GHz cores.)
1414

15+
Overall, the can be summarized as follows:
16+
17+
| algorithm | running time(s) | average precision | average recall | average F1-score |
18+
|:-------------:|:-------------:|:-------------:|:-------------:|:------------:|
19+
| SMO + Linear Kernel | 9684 + 12 | 0.91 | 0.91 | 0.91 |
20+
| SMO + RBF Kernel | 666 + 54 | 0.92 | 0.92 | 0.92 |
21+
| QP + Linear Kernel | 225 + 11 | 0.91 | 0.91 | 0.91 |
22+
| QP + RBF Kernel | 267 + 58 | 0.92 | 0.92 | 0.92 |
23+
| Sklearn svm + Linear Kernel | 12 + 118 | 0.92 | 0.92 | 0.92 |
24+
| Sklearn svm + RBF Kernel | 30 + 232 | 0.92 | 0.92 | 0.92 |

0 commit comments

Comments
 (0)