First time here? Check out the FAQ!
answered 2016-07-14 03:56:15 -0600
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)