scikit learn:
data
Scikit-Learn is possibly the most popular machine learning framework in the world. In this series of videos we'd like to give an overview of the main features and how you can use the framework to approach most machine learning problems. Do watch all the videos because we also want to highlight the dangers of it.
Notes
You can use scikit-learn
to load datasets as well.
from sklearn.datasets import load_boston
X, y = load_boston(return_X_y=True)
Feedback? See an issue? Something unclear? Feel free to mention it here.
If you want to be kept up to date, consider signing up for the newsletter.