A simple library for flexible model stacking in scikit-learn.
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.
Requirements
- Python 3.8+
- scikit-learn
- numpy
Installation
From PyPI:
pip install layerlearnyashw
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
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file layeredlearning-1.1.1.tar.gz.
File metadata
- Download URL: layeredlearning-1.1.1.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b621c52bdaf9f119675855fb52acc3e1356721d6909d5714d798b9d89d48525
|
|
| MD5 |
f08431534c73d3a0bd6821a73e4acc6e
|
|
| BLAKE2b-256 |
e1331c2486af0246337944b07e5f34b509d9e9501c6eb82af86df5205ef4ff16
|
File details
Details for the file layeredlearning-1.1.1-py3-none-any.whl.
File metadata
- Download URL: layeredlearning-1.1.1-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e23002ba1033d4aecb8e4370271780e5e563fdae84f5b1fc65a6a006506e68f
|
|
| MD5 |
11d0799f177b00d49f0996257f065b75
|
|
| BLAKE2b-256 |
1ed2d98686cda8bca09c9a6e50d87e9b7418bcb7b96ce9ffeba5b83fa87f2867
|