A dummy model written with Tensorflow easilly reaches 90% accuracy. The best models ranked at 99,87%, see the benchmark : https://paperswithcode.com/sota/image-classification-on-mnis...
78% MNIST accuracy using GZIP in under 10 lines of code
11–20 of 141 posts
Re: 78% MNIST accuracy using GZIP in under 10 lines of code
#12Re: 78% MNIST accuracy using GZIP in under 10 lines of code
#13Re: 78% MNIST accuracy using GZIP in under 10 lines of code
#14[flagged]
MNIST (and OCR) are acronyms that are so well-known to anyone who has taken any kind of intro to ML class that there's no more need to define them in a short blog post than there would be for us to define HTML. I learned about MNIST in 2008, and I was just taking a class on numerical methods as a physics major in Matlab where MNIST was just one project.
Re: 78% MNIST accuracy using GZIP in under 10 lines of code
#15Re: 78% MNIST accuracy using GZIP in under 10 lines of code
#16Re: 78% MNIST accuracy using GZIP in under 10 lines of code
#17Linear SVC (best performance): 92 %
SVC rbf (best performance): 96.4 %
SVC poly (best performance): 94.5 %
Logistic regression (prev assignment): 89 %
Naive Bayes (prev assignment): 81 %
From this blog page: https://dmkothari.github.io/Machine-Learning-Projects/SVM_wi...
Also it seems from reading online articles that people are able to obtain much better results just by using K-NN, so I imagine that the author just made his job harder by using gzip but I could be wrong about this.
Re: 78% MNIST accuracy using GZIP in under 10 lines of code
#18Earlier quoted context omitted.
> Such as OCR. Such as what?
If you can’t hear my eyes rolling from here I’ll do it again, harder… how bout now? Optical Character Recognition. Very old, and very infamous attempts at replacing humans with software. Secretaries and executives know what OCR means.
Person A complains about MNIST not being defined. Person B was sending them up for complaining about not defining the meaning of acroynms and then using one they don't define.
Re: 78% MNIST accuracy using GZIP in under 10 lines of code
#19Earlier quoted context omitted.
> Such as OCR. Such as what?
Optical character recognition... Has been pretty widespread tech since ~2016 or so.
I recall a guy with good transcription skills starting a long thread on… must have been slashdot? About how it was faster for him to transcribe the numbers again than to verify the OCR was correct, but he couldn’t tell his boss that and what should he do?
There’s also a famous case where the compression algorithm in a copy/fax machine had a bug in a predefined dictionary that resulted in changing digits to other digits when making copies or faxes. Because they weren’t just compressing, they were trying to use a specialized OCR to do aggressive compression. I believe it was spitting out perfectly formed zeroes where another digit was in the original. Yikes.
Re: 78% MNIST accuracy using GZIP in under 10 lines of code
#20For a comparison with others techniques: Linear SVC (best performance): 92 % SVC rbf (best performance): 96.4 % SVC poly (best performance): 94.5 % Logistic regression (prev assignment): 89 % Naive Bayes (prev assignment): 81 % From this blog page: https://dmkothari.github.io/Machine-Learning-Projects/SVM_wi... Also it seems from reading online articles that people are able to obtain much better results just by using…