End to End Machine Learning Pipeline Tutorial
11–20 of 25 posts
Re: End to End Machine Learning Pipeline Tutorial
#12The for loops in your code can be made more conscise: instead of
for i in range(len(movies_with_overviews)):
movie=movies_with_overviews[i]
you can write for movie in movies_with_overviews:
Also, at around In[82], you don't declare Y, but still reference it at the train-test split. Another way to do the train-test split is by using the train-test split in scikit-learn: http://scikit-learn.org/stable/modules/generated/sklearn.mod...Re: End to End Machine Learning Pipeline Tutorial
#13Are there more great resources like this to learn finding, cleaning and structuring data? Would greatly appreciate it if someone could point me in a direction.
I couldn't find much, that's why I stressed on it in the tutorial. Scraping is a fun hobby but it's extremely useful. I strongly suggest spending time using python's selenium and beautiful soup libraries. The former is good to automate pages with javascript elements, and the latter to parse HTML!
Re: End to End Machine Learning Pipeline Tutorial
#14These are the tutorials that depict the reality of a machine learning career. Everyone broadly understands that data preparation is the key, but few realize what that involves. Half of this tutorial is just about getting and prepping data for training. Kudos!
Re: End to End Machine Learning Pipeline Tutorial
#15This so so helpful. It would take me months to gather resources to learn this stuff and I wouldn't even know what I would be looking for. To the author: please share more content if your valuable time permits
Re: End to End Machine Learning Pipeline Tutorial
#16Great write-up. Especially the fact that half of it was about finding cleaning and structuring data! You can tell someone isn't applying ML if they aren't spending most of their time getting their data organized. It's the "sharpening the axe" part of the hour Lincoln describes. For example, they never introduce you to how you can run the same algorithm on your own dataset I actually think the tensorflow tutorial on C…
Re: End to End Machine Learning Pipeline Tutorial
#17Re: End to End Machine Learning Pipeline Tutorial
#18Re: End to End Machine Learning Pipeline Tutorial
#19Reading articles like this written by people who want to share their fabulous domain knowledge for free of charge really is the reason why I read Hacker News. Thank you, i hope i will have the time to read through it all with thought and later hopefully utilize it with my own projects.
And people like you who take time out to read and learn is exactly the reason why people like me write such articles! Absolutely thrilled that people liked it and that I will be contributing in people learning this beautiful field of science I do research in :)