In Feb 2015 I quit my job as a front end developer to learn more about machine learning. First, I went through the Recurse Center, which is a 3 month program sort of like a writing retreat for programmers. I learned a lot about Python and AWS in that time, and got an internship as a data engineer. In that Fall, I started a computer science master's. I've taken mostly courses in machine learning including: Machine Lea…
Was your undergrad in computer science or did you 'hop' into the masters?
Ask HN: How can a front-end developer dive into machine learning?
41–50 of 154 posts
Re: Ask HN: How can a front-end developer dive into machine learning?
#42Re: Ask HN: How can a front-end developer dive into machine learning?
#43A lot of bootcamp / self-trained devs went into front-end JS for the money. Now that it's saturated, time to move onto the next buzz word. A foundation of CS fundamentals will still be lacking.
Re: Ask HN: How can a front-end developer dive into machine learning?
#44Your question says "utilize" machine learning. I was in the same position. It struck me that rather than go off and try to catch up with half a century's research, and contribute nothing, I'd be better off utilizing machine learning in my front-end work. So I have started using IBM's Watson platform, and some of Google's AI tools. I was specifically interested in speech processing applications (I have some background…
I have no clue about Watson and Machine Learning, I mean I've talked to people and quickly glanced at the platforms. But in terms of the speech processing, does that not require any back-end at all? I'm assuming your using the browsers API to capture sound and then passing this off to Watson in some back-end method to analyze? Or can this seriously be done all fron-end? Pretty amazing if so.
Some people have made javascript-based ML models to run in the browser (I think some were made for this course[1]), but these are for educational purposes rather than actual use.
Re: Ask HN: How can a front-end developer dive into machine learning?
#45Your question says "utilize" machine learning. I was in the same position. It struck me that rather than go off and try to catch up with half a century's research, and contribute nothing, I'd be better off utilizing machine learning in my front-end work. So I have started using IBM's Watson platform, and some of Google's AI tools. I was specifically interested in speech processing applications (I have some background…
I have no clue about Watson and Machine Learning, I mean I've talked to people and quickly glanced at the platforms. But in terms of the speech processing, does that not require any back-end at all? I'm assuming your using the browsers API to capture sound and then passing this off to Watson in some back-end method to analyze? Or can this seriously be done all fron-end? Pretty amazing if so.
Basically you get your source speech as an uncompressed WAV file, create an IBM Bluemix account (free trial), create a Watson "app" on the site (basically gives you some credentials for calling the API), and then write a script to upload your WAV file to the API and decode the JSON response.
It gets more complex when you want to start parallelizing the process to make it faster, and dealing with the results in an intelligent manner, but the initial proof of concept is remarkably easy.
If I recall, the Google one was even easier - no script at all, did it all with curl I think.
Re: Ask HN: How can a front-end developer dive into machine learning?
#46Earlier quoted context omitted.
Was your undergrad in computer science or did you 'hop' into the masters?
My undergrad was in computer science, although I would say this wasn't the case for most of my classmates. There were a lot of students from other engineering fields (like Mech E or civil), Math, Stats, physics, bio, and business.
Edit: for the Master's degree.
Re: Ask HN: How can a front-end developer dive into machine learning?
#47Anyone here have any good book recommendations?
Re: Ask HN: How can a front-end developer dive into machine learning?
#48One word: https://www.coursera.org/learn/machine-learning
Re: Ask HN: How can a front-end developer dive into machine learning?
#49A lot of bootcamp / self-trained devs went into front-end JS for the money. Now that it's saturated, time to move onto the next buzz word. A foundation of CS fundamentals will still be lacking.
u mad, bro?
Re: Ask HN: How can a front-end developer dive into machine learning?
#50This will let you focus on the essence of machine learning (data gathering and cleansing, interpretation) rather than the mechanics. The gathering of data and building of intuition about results are by far the hardest parts of machine learning, in my experience and reading. This is especially true if you are just getting started.
Plenty of time to focus on the mechanics later.
(Full disclosure, I am working on a ebook about Amazon machine learning link in profile.)