Back to: Building Your First Model
0
Scikit-Learn is one of Python’s most popular machine learning libraries, offering a consistent API for dozens of algorithms.
Typical workflow:
- Load data
- Split into training and test sets
- Train the model
- Evaluate performance
- Make predictions
Example models include:
- Linear Regression
- Decision Trees
- Logistic Regression
Evaluation metrics such as accuracy, RMSE, and F1 score help determine how well a model generalises to new data.