Ask HN: Is machine learning worth learning for hobbyists/pet projects?
I'm wondering if the field is accessible beyond pure theory for people who doesn't have exclusive access to datasets or powerful machines.
Can a regular programmer with a macbook achieve something at home? Or would I be stuck doing the same 3/4 basic programs like character recognition and hit a wall after the basics?
10 comments
[ 69.5 ms ] story [ 262 ms ] threadML can be used in a number of different facets. On one hand you can grab pre-trained models that people have sitting on github and glue them together to make working projects for your own use. The other extreme is working through the theory to create a new method on a dataset you've collected yourself. Most of the tradeoff is in how much time you want to invest in solving a problem or learning something new.
The major thing for hobby problems is learning how to best use what's already out there given your own restrictions on data and computational resources. The algorithms themselves can be quite complex, but as long as you're not targeting state of the art results, there should be plenty of tools to help get yourself started.
My general recommendation is to dive into some of the papers out there and blog posts on different methods to get a feel for the breadth of options as well as the cases which may not currently be within your own personal grasp.
Do you have particular application areas or problems you want to apply ML to?
Not particularly, no. I've spent a ton of time reading about the math behind it and I feel as if I had been reading about functional programming or OOP without actually writing a single line of code... So I'm basically looking to get the practical approach, getting my hands dirty so to speak.
[1]https://registry.opendata.aws/ [2]https://opendata.cityofnewyork.us/
I don’t know what suits your fancy, but some example projects could be:
- image recognition: is that your cat at the door or someone else’s?
- voice recognition: app to add a product to shopping list from a voice command
- etc