
scikit-learn: machine learning in Python — scikit-learn 1.7.2 …
Simple and efficient tools for predictive data analysis Accessible to everybody, and reusable in various contexts Built on NumPy, SciPy, and matplotlib Open source, commercially usable - …
Installing scikit-learn — scikit-learn 1.7.2 documentation
The Debian/Ubuntu package is split in three different packages called python3-sklearn (python modules), python3-sklearn-lib (low-level implementations and bindings), python-sklearn-doc …
Getting Started — scikit-learn 1.7.2 documentation
>>> from sklearn.preprocessing import StandardScaler >>> X = [[0, 15], ... [1, -10]] >>> # scale data according to computed scaling values >>> StandardScaler().fit(X).transform(X) array([[ …
User Guide — scikit-learn 1.7.2 documentation
Jan 1, 2010 · Supervised learning- Linear Models- Ordinary Least Squares, Ridge regression and classification, Lasso, Multi-task Lasso, Elastic-Net, Multi-task Elastic-Net, Least Angle …
API Reference — scikit-learn 1.7.2 documentation
API Reference # This is the class and function reference of scikit-learn. Please refer to the full user guide for further details, as the raw specifications of classes and functions may not be …
Examples — scikit-learn 1.7.2 documentation
Gaussian Process for Machine Learning # Examples concerning the sklearn.gaussian_process module.
LinearRegression — scikit-learn 1.7.2 documentation
Note that this method is only relevant when this estimator is used as a sub-estimator within a meta-estimator and metadata routing is enabled with enable_metadata_routing=True (see …
SpectralClustering — scikit-learn 1.7.2 documentation
See also sklearn.cluster.KMeans K-Means clustering. sklearn.cluster.DBSCAN Density-Based Spatial Clustering of Applications with Noise.
KMeans — scikit-learn 1.7.2 documentation
Note that this method is only relevant when this estimator is used as a sub-estimator within a meta-estimator and metadata routing is enabled with enable_metadata_routing=True (see …
2.3. Clustering — scikit-learn 1.7.2 documentation
Clustering of unlabeled data can be performed with the module sklearn.cluster. Each clustering algorithm comes in two variants: a class, that implements the fit method to learn the clusters …