Introduction to Scikit-learn: classifying poisonous mushrooms and glass types
30 November 2018
This tutorial is an introduction to using Scikit-learn for machine learning in Python, focused on building a classifier to separate poisonous from edible mushrooms and to separate different types of glass. Scikit-learn is an excellent library for this purpose. Besides the fact that it does a lot of useful things for you right out of the box, saving you coding time, it’s also easy to implement your code, and it also comes with a plethora of examples that can be found around the web. Among other things, the scikit-learn library can be used for clustering, classification and regression, and extracting ...
Read more...