Live data from Hacker News

Identifying dog breeds using Keras

able.bio

1–10 of 12 posts

Re: Identifying dog breeds using Keras

#4
While it might not be novelty (and therefor it doesn't seem impressive to some), Transfer Learning is actually highly efficient even for small datasets and should at least be considered before wasting energy and money in building your own convnet. Its a good first step when tackling a new problem in this problem space.

Re: Identifying dog breeds using Keras

#5
Machine learning is still considered "new" or "difficult" so people often respond to posts like this with comments like the one that says "Nothing impressive, existing architectures were used". Writers only get enthusiasm if they raise a benchmark with a brand new approach.

For researchers and people spend a lot of time on ML, I totally get that. There isn't anything new here. In fact, I correctly guessed nearly the entire content of the article from the title alone (transfer learning, using Keras' "Application" models, etc). But why does that matter? It's still a useful article to a lot of people and it's well written.

There is still a dearth of practical advice on how non-specialist developers can solve everyday problems with ML. The truth is that the majority of real projects that real companies need done could be done exactly this way. Using this approach, a developer could get decent results and be done with a project in hours instead of months.

For some reason everyone thinks it's fine to post an article about how to speed up your CRUD website with a Postgres indexes even though it's been done millions of times before, but ML posts get dismissed if they aren't making some kind of research breakthrough. I personally feel like we need a lot more approachable discussion around ML like this in the world. Every dev should feel comfortable getting started with this kind of work if they want to.

Re: Identifying dog breeds using Keras

#6
Interesting. I did the same exercise with the pretrained Xception and 2 dense layers at the end and only got 83% accuracy. Thanks for sharing the tweaks you made, that's good to know. I wasn't aware of those techniques.

Re: Identifying dog breeds using Keras

#7
post #5

Machine learning is still considered "new" or "difficult" so people often respond to posts like this with comments like the one that says "Nothing impressive, existing architectures were used". Writers only get enthusiasm if they raise a benchmark with a brand new approach. For researchers and people spend a lot of time on ML, I totally get that. There isn't anything new here. In fact, I correctly guessed nearly the…

Agreed. There's too much of an academic paper culture around ML. It makes the field very unapproachable. It's as if people don't actually use it for anything practical and they only care about the science and math.

It is getting better though. It's great to see people post articles like this and even if it has been done before seeing different approaches and seeing it written in different ways goes a long ways towards educating people.

I'm hoping the JavaScript ML / DL ecosystem expands more since that would greatly accelerate its adoption and allow more developers access to ML.

Re: Identifying dog breeds using Keras

#8
post #7
post #5

Machine learning is still considered "new" or "difficult" so people often respond to posts like this with comments like the one that says "Nothing impressive, existing architectures were used". Writers only get enthusiasm if they raise a benchmark with a brand new approach. For researchers and people spend a lot of time on ML, I totally get that. There isn't anything new here. In fact, I correctly guessed nearly the…

Agreed. There's too much of an academic paper culture around ML. It makes the field very unapproachable. It's as if people don't actually use it for anything practical and they only care about the science and math. It is getting better though. It's great to see people post articles like this and even if it has been done before seeing different approaches and seeing it written in different ways goes a long ways toward…

Recent tendency in ML/DL academic papers is applying described approach on some public benchmark, and showing improvement over current State of The Art results.

Re: Identifying dog breeds using Keras

#9
post #8
post #7

Earlier quoted context omitted.

Agreed. There's too much of an academic paper culture around ML. It makes the field very unapproachable. It's as if people don't actually use it for anything practical and they only care about the science and math. It is getting better though. It's great to see people post articles like this and even if it has been done before seeing different approaches and seeing it written in different ways goes a long ways toward…

Recent tendency in ML/DL academic papers is applying described approach on some public benchmark, and showing improvement over current State of The Art results.

ML/DL is certainly doing better than most but it still has the academic culture. It is increasingly more common to release code on github so the result can be reproduced and people can adapt their research.
Post reply on HN