Loading...

scikit-learn

Standard Python library for classical ML, built on a unified estimator API.

When to use: Tabular ML; classical algorithms; production-ready baselines.

Example: clf = LogisticRegression(); clf.fit(X_train, y_train); clf.score(X_test, y_test).

More Python for ML Glossary terms