Goto

Collaborating Authors

 use scikit-learn


An introduction to Machine Learning with Scikit-Learn

#artificialintelligence

In this Scikit-learn tutorial introduces you to machine learning in Python and introduction to Machine Learning with Scikit-Learn. It will explain how to use scikit-learn to do machine learning. Welcome to this video course on Scikit-Learn. This course will explain how to use scikit-learn to do machine learning. Methods to load Toy Datasets and exploring their feature names, number of instances and other details have been shown.


datas-frame – Scalable Machine Learning (Part 2): Partial Fit

#artificialintelligence

This work is supported by Anaconda, Inc. and the Data Driven Discovery Initiative from the Moore Foundation. This is part two of my series on scalable machine learning. Scikit-learn supports out-of-core learning (fitting a model on a dataset that doesn't fit in RAM), through it's partial_fit API. The basic idea is that, for certain estimators, learning can be done in batches. The estimator will see a batch, and then incrementally update whatever it's learning (the coefficients, for example).