Ask Your Question

[email protected]'s profile - activity

2016-07-14 04:36:45 -0600 answered a question OpenCV SVM (RBF) low test accuracy at 10 % on MNIST

Actually, we can achieve 10% accuracy on MINST with this function. since we have 10 digits in total (just kidding)

from random import randint

def recognize_digits(image): return randint(0, 9)