6 ms·
Path-breaking Papers About Image Classification
- pulkitkumar1995 9y agoIs densenet the one which won the best oaper award in CVPR this year? And which framework would you recommend to code these in?
- parths 9y agoYes! Facebook's Densenet won the best paper award in CVPR this year. I would recommend PyTorch framework to code these in as it extends the numpy, scipy ecosystem and is simpler to use.
- mongodude 9y agoI'll prefer utility over hype. One has to see how the community evolves around pytorch.
- lalp2119 9y agoIt would be great if you can share the links to pretrained weights if the networks mentione here in python framework.
- sanxiyn 9y agoHere are some. They all have pretrained weight download. ResNet: https://github.com/KaimingHe/deep-residual-networks https://github.com/KaimingHe/deep-residual-networks Wide ResNets: https://github.com/szagoruyko/wide-residual-networks https://github.com/szagoruyko/wide-residual-networks ResNeXt: https://github.com/facebookresearch/ResNeXt https://github.com/facebookresearch/ResNeXt DenseNet: https://github.com/liuzhuang13/DenseNet https://github.com/liuzhuang13/DenseNet
- mongodude 9y agoSqueeze and excitation network by momenta.ai has been a watershed moment for Chinese AI prowess and I'll watch out for such Chinese startups to dominate AI landscape for a while. What amuses me is why Google haven't participated in the last couple imagenets?
- muktabh 9y agoGoogle has its own huge internal datasets for image classification. You can check for its mention in Chollet's ExceptionNet paper. That may be the reason why they are not really interested in working on imagenet.
- tanilama 9y agoImagenet as a competition is losing its importance ever since 2016. No idea like ResNet that is widely effective and inspiring from that year. I feel people just over engineered their network structure to claim the state of art by marginal gain. Google since brought up their Neural Architecture search that can automatically design network, which I think is way ahead of rest of the competitors here.
- deleted 9y ago[deleted]
- kushankpoddar 9y agoSometimes I wonder why is the top-5 image classification task so difficult. If you are giving me 5 chances to look at an image and correctly classify it from ~1000 Imagenet classes, I can surely do better than 5-10% error rate. Also, now that the top-5 error rate been brought down considerably, what is the next benchmark for the research community to beat? A new dataset, top-1 error rate on Imagenet?
- parths 9y agoA large majority of human errors come from fine-grained categories(such as correctly identifying two similar cat species) and class unawareness. I would recommend this article by Andrej Karpathy, where he talks about his learning from competing against GoogLeNet: http://karpathy.github.io/2014/09/02/what-i-learned-from-competing-against-a-convnet-on-imagenet/ http://karpathy.github.io/2014/09/02/what-i-learned-from-com...
- AstralStorm 9y agoThat would be relatively low grade error. Specifically errors have to be valued and not just counted.
- falcolas 9y agoSome really cool information, but this concluding bit annoyed me: > By Moore’s law, we will reach computing power of human brain by 2025 and all of the humanity by 2050. Their graph does show exponential growth, but the data points cut off at the year 2000. Not surprising, given that Moore's law has reached its end in the last decade. ML improvements now depend upon better algorithms to make them more parallel, and the economies of scale which make more parallel computation units available. I don't think we're anywhere near that exponential graph, however, and we'll keep getting further from it. Perhaps quantum computing will become a widespread reality and blow the field open, but I'm not holding my breath that it will happen in the next few decades.
- londons_explore 9y agoMoore’s law is still alive and well, you just have to move over to the parallel architectures like GPU's. Considering machine learning is all on GPU's and TPU's now, I think this is still a fair assessment.
- falcolas 9y agoNot really - since GPUs have started to hit the same "Process" size as CPUs - and haven't been showing a lot of growth in that area. The best improvement per Wikipedia's chart is a small foray into 14 and 12nm, and those haven't doubled the transistor counts (per square mm). What we are seeing is an increase in die sizes; more parallel cores. Parallel cores still require parallel algorithms, so I stand by my earlier statement.
- lostmsu 9y agoLatest NVidia GPUs are ~1.3-1.4 times faster, than previous gen with the same or lower power consumption.
- AstralStorm 9y agoMoore's law is about transistor count and not performance. Performance of those parallel architectures always get subject to Amdahl's rule of scaling. This is partly why we see slowing scaling in performance and why you cannot just throw cores at the problem.
- AndrewOMartin 9y agoThe caption for the top graph appears a bit out of whack. It states "exponential decline in top 5 error rate", the decline looks more like diminishing returns to me, especially if you push the 2017 data point out to where it should be (they've omitted 2016). It's nice that the error rate is low, but the caption appears to oversell it. This graph reminds me of a very closely related one I saw in a talk a few years ago [1]. It was showing decline in voice recognition error rates over time, with a highlighted band for "human performance". The speaker, Roger Moore (the academic, not the actor, and not the Moore with the law), pointed out that this line, while encouraging, hid two important points. 1) For linear improvement, exponentially more training data was needed. 2) No insight into how living beings solve the same task. These aren't necessarily fatal flaws, but they're worth remembering. [1] https://www.youtube.com/watch?v=iYbVsvxd3bE https://www.youtube.com/watch?v=iYbVsvxd3bE
- deleted 9y ago[deleted]
- zitterbewegung 9y agoA more accurate idea of what a computer sees is actually that ML models figure out what parts of the signal to throw away and pay attention to. This is why you can slightly perturb the image so that humans see a picture of two hot dogs while an ML model can be confused into two different things (hot dog and an egg plant).
- T_D_K 9y agoDoes anyone have insight as to why they're still doing top 5? It seems to me like the error rates have dropped low enough that they could move on to top 3 or even single guess challenges. Is there data that shows how these same models perform in such tasks? Though I suppose, if I was motivated, all the needed tools are available to find out for myself.
- AndrewKemendo 9y agoIf anyone is interested here are the official ILSVRC2017 results: http://image-net.org/challenges/LSVRC/2017/results http://image-net.org/challenges/LSVRC/2017/results