Skip to main content

A library for Augmented Model Stacking and ensemble with a focus on flexibility and performance.

Project description

LayerLearn — Flexible Model Library

layerlearn is a small Python package that makes it easy to build stacked estimators (regressors and classifiers) around scikit-learn models. this library is designed to provide a flexible and easy-to-use interface for building stacked models, allowing users to combine multiple models to improve performance. with this library you can stack any scikit-learn compatible models and also you can use the default models provided by the library.

Features

  • Flexible Stacking: Easily stack any scikit-learn compatible models.
  • Regression and Classification: Supports both regression and classification tasks.
  • Customizable: Allows customization of the base and meta models.
  • Easy to Use: Simple API for building and training stacked models.

Requirements

  • Python 3.8+
  • scikit-learn
  • numpy
  • xgboost
  • catboost
  • lightgbm

Installation

From PyPI:

pip install layeredlearning

From source (recommended for development):

git clone https://github.com/Mr-J12/newalgo.git
cd newalgo
pip install -e .

Examples & tests

See example scripts in the repository:

  • testing/regression_default_dataset.py
  • testing/classification_default_dataset.py
  • testing/instantiation_checking.py

Quick examples

Regression:

from layerlearn.flexiblestacked import FlexibleStackedRegressor
from sklearn.linear_model import LinearRegression
from sklearn.ensemble import RandomForestRegressor
from sklearn.datasets import make_regression
from sklearn.model_selection import train_test_split

X, y = make_regression(n_samples=200, n_features=10, noise=10)
X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=0)

base = LinearRegression()
meta = RandomForestRegressor(random_state=0)
stack = FlexibleStackedRegressor(base, meta)
stack.fit(X_train, y_train)
preds = stack.predict(X_test)
print(preds[:5])

Classification:

from layerlearn.flexiblestacked import FlexibleStackedClassifier
from sklearn.linear_model import LogisticRegression
from sklearn.ensemble import RandomForestClassifier
from sklearn.datasets import make_classification
from sklearn.model_selection import train_test_split

X, y = make_classification(n_samples=200, n_features=10, n_classes=2, random_state=0)
X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=0)

base = LogisticRegression(max_iter=1000)
meta = RandomForestClassifier(random_state=0)
stack = FlexibleStackedClassifier(base, meta)
stack.fit(X_train, y_train)
preds = stack.predict(X_test)
print(preds[:5])

Visualization

Regression Default Dataset Report

Classification Default Dataset Report

Model-wise Testing Results

Regression Model Performance

The regression testing uses a synthetic dataset with 200 samples and 10 features. The following models are evaluated:

  • baseLinear Regressor: Baseline linear model providing initial predictions
  • baseForest Regressor: Ensemble of trees capturing non-linear patterns and reducing variance
  • baseXGBR Regressor: Regularized gradient boosting with strong performance on tabular data
  • baseLight Regressor: Fast, memory-efficient gradient boosting suited for large datasets
  • baseCat Regressor: Ordered boosting with robust handling of categorical features

Results and performance metrics are visualized in the regression default dataset report above, showing R² Score across all base models.

Regression Model Visualizations

Linear Regression Results

Random Forest Regressor Results

XGBoost Regressor Results

LightGBM Regressor Results

CatBoost Regressor Results

Classification Model Performance

The classification testing uses a synthetic binary classification dataset with 200 samples and 10 features. The following models are evaluated:

  • Logistic Regression : Standard logistic classification baseline
  • Random Forest Classifier : Ensemble method for combining predictions
  • XGBoost Classifier: Gradient boosting for improved classification accuracy
  • LightGBM Classifier: Fast classification with categorical feature support
  • CatBoost Classifier: Optimized for categorical data with robust performance

Results and performance metrics are displayed in the classification default dataset report above, showing Accuracy, Precision, Recall, and F1-Score across all base models.

Classification Model Visualizations

Logistic Regression Results

Random Forest Classifier Results

XGBoost Classifier Results

LightGBM Classifier Results

CatBoost Classifier Results

Development

  • Install development requirements (scikit-learn, numpy).
  • Run example scripts to verify behavior: python testing/regression_default_dataset.py

License

See LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

layeredlearning-1.6.8.tar.gz (3.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

layeredlearning-1.6.8-py3-none-any.whl (41.9 kB view details)

Uploaded Python 3

File details

Details for the file layeredlearning-1.6.8.tar.gz.

File metadata

  • Download URL: layeredlearning-1.6.8.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for layeredlearning-1.6.8.tar.gz
Algorithm Hash digest
SHA256 8461b6a8353987c8f86cfa39859fb3fb6c86af8fa0ac6a40f8e6c6f316100a3f
MD5 30cd709571228619da8626ce5897d8fa
BLAKE2b-256 a1a990c5e916c9aa208b7768c359b5d0526226159bbb7b9d23d0142bf05bee11

See more details on using hashes here.

File details

Details for the file layeredlearning-1.6.8-py3-none-any.whl.

File metadata

File hashes

Hashes for layeredlearning-1.6.8-py3-none-any.whl
Algorithm Hash digest
SHA256 3d8871eb1b102e5f2f4bf910a10d23098320db8355750c7ac6c0923e9039e8b9
MD5 ddd7044c5c91dfff9dda3687dab17a41
BLAKE2b-256 205500a8d2a02174e9bc6988b7d8d3f23fd58cd004db5c371152589109e825c7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page