Hacker News new | ask | show | jobs
by quinnftw 3489 days ago
Is this not a binary perceptron? How do you plan to classify all 10 digits with this?
1 comments

I cheated here (this _is_ a binary perceptron), but the conversion is super easy with one-vs-rest or one-vs-one (training all pairs and then doing pairwise comparison until we find the one that matches), that would still take ~20 seconds to train.