Show HN: Python Machine Learning – A Crash Course
1–10 of 22 posts
Re: Show HN: Python Machine Learning – A Crash Course
#2Re: Show HN: Python Machine Learning – A Crash Course
#3I swear an AI crash course gets posted to HN every other day..
Re: Show HN: Python Machine Learning – A Crash Course
#4I swear an AI crash course gets posted to HN every other day..
It certainly does seem that way, especially with python. I wouldn’t be opposed to a fun tutorial in a different language. Also not trying to be pedantic (is anyway) but ... should always have three .’s. (I learned that recently)
Re: Show HN: Python Machine Learning – A Crash Course
#5Re: Show HN: Python Machine Learning – A Crash Course
#6I swear an AI crash course gets posted to HN every other day..
It certainly does seem that way, especially with python. I wouldn’t be opposed to a fun tutorial in a different language. Also not trying to be pedantic (is anyway) but ... should always have three .’s. (I learned that recently)
Wait, that was annoying and didn't contribute to the discussion. Huh, really makes you think.
Re: Show HN: Python Machine Learning – A Crash Course
#7Re: Show HN: Python Machine Learning – A Crash Course
#8I swear an AI crash course gets posted to HN every other day..
It certainly does seem that way, especially with python. I wouldn’t be opposed to a fun tutorial in a different language. Also not trying to be pedantic (is anyway) but ... should always have three .’s. (I learned that recently)
Re: Show HN: Python Machine Learning – A Crash Course
#9Really nice series of tutorials that are code-focused! I think one of the things that surprised me most about ML is how simple a lot of the code is.
- choosing the right algorithm(s) for the specific task and data at hand
- tuning hyperparameters
- interpreting preliminary results and/or the output of statistical tests
- chasing down and cleaning data(!!)
- deploying the resulting ML pipeline into something more maintainable than a GitHub repo of inconsistently named Jupyter Notebooks strewn with hardcoded paths to CSV files and dangerously obsolete documentation written by employees who have since left your company.
Re: Show HN: Python Machine Learning – A Crash Course
#10Really nice series of tutorials that are code-focused! I think one of the things that surprised me most about ML is how simple a lot of the code is.
The code itself is indeed simple, thanks to the combined efforts of very smart and capable researchers and developers across the world. But the time taken to write the actual code to perform ML is negligible compared to: - choosing the right algorithm(s) for the specific task and data at hand - tuning hyperparameters - interpreting preliminary results and/or the output of statistical tests - chasing down and cleaning…