Live data from Hacker News

Ask HN: Things You Wish You Knew Before Getting into Machine Learning

news.ycombinator.com

1–10 of 17 posts

Re: Ask HN: Things You Wish You Knew Before Getting into Machine Learning

#3
Sometimes people you work with, like team members or PMs, will really want to understand ML and be involved but will have a hard time grasping the concepts being discussed. I found it really helped to draw out and illustrate the different components and data flows!

Re: Ask HN: Things You Wish You Knew Before Getting into Machine Learning

#5
Except in rare cases, or specific teams tackling problems that are both exceptionally hard, and exceptionally well-suited for deep learning, I would take someone with some medium value stats and advanced python/pandas coding ability over a PhD in ML.

Re: Ask HN: Things You Wish You Knew Before Getting into Machine Learning

#6

It's starting to become a cliche (which might be a good thing), but building datasets, cleaning that data and validating that data is the hard part..by far. The actual machine learning is quickly become a commodity.

Our code base ratio of data cleaning/APIs/pre-processing : API calls to ML packages is like 98:1

Re: Ask HN: Things You Wish You Knew Before Getting into Machine Learning

#7
From own experience (switched to ML 1.5 years ago):

1. That software engineering skills are way more important than ML skills.

2. That you'd be spending more time on making presentation than doing ML (and it makes sense, it's very important to present statistics properly).

3. That most problems don't need good ML models. Something cheap and easy is often good enough. What you do need to be good, is data pipelines around them (see 1.)

In my case, I learned ML enough to feel "senior" compared to other people in company and online in less than a year. Same path to Senior SWE took me much longer (way larger mandatory knowledge base, probably because ML is a young field). So I'd say ML is definitely easier.

Re: Ask HN: Things You Wish You Knew Before Getting into Machine Learning

#9
post #7

From own experience (switched to ML 1.5 years ago): 1. That software engineering skills are way more important than ML skills. 2. That you'd be spending more time on making presentation than doing ML (and it makes sense, it's very important to present statistics properly). 3. That most problems don't need good ML models. Something cheap and easy is often good enough. What you do need to be good, is data pipelines aro…

Very good pointers. I would like to get in touch with you regarding how you transitioned to ML. I don't see a contact info in the profile. My email is in my profile. Pls let me know.

Re: Ask HN: Things You Wish You Knew Before Getting into Machine Learning

#10

It's starting to become a cliche (which might be a good thing), but building datasets, cleaning that data and validating that data is the hard part..by far. The actual machine learning is quickly become a commodity.

So, I agree that data work is a large part of the job.

When presented with a new problem, you have to build the data infrastructure before you can do any learning.

But if you are on a team maintaining a project over the long term, you amortise the cost of this a bit. You will still see big impacts from improving your data, but you will also see big improvements from modeling improvements, though often that will just be plugging in a different box.

But I actually think this is a good thing of your goal is to build applications. These methods are hot right now because they are very good at things that are hard for us to program, so they let us build better systems.

One other thing I'll mention is that GDPR has made a lot of inane things pretty painful, largely due to overly conservative lawyers. This is probably mostly an issue for large consumer tech companies.

Post reply on HN