Skip to main content

A scikit-learn compatible wrapper for glmnet-based logistic regression.

Project description

glmpynet

CircleCI ReadTheDocs Codecov

High-Performance Logistic Regression for Scikit-Learn

glmpynet is a Python package that provides a scikit-learn-compatible LogisticRegression API powered by the high-performance glmnetpp C++ library.

This project bridges the computational speed of glmnetpp with the ease-of-use of the Python data science ecosystem, acting as a drop-in replacement for sklearn.linear_model.LogisticRegression for regularized logistic regression.

Key Features

  • High Performance: Designed to leverage the optimized glmnetpp C++ backend for fitting models, suitable for large datasets. (Note: Currently uses a mock backend for API development).
  • Fully Scikit-learn Compatible: Implements the full estimator API, including fit, predict, and predict_proba, enabling seamless integration with sklearn tools like Pipeline and GridSearchCV.
  • User-Friendly Hybrid API: Accepts both standard Scikit-learn parameters (e.g., C, penalty) for ease of use and glmnet-native parameters (e.g., alpha, nlambda) for advanced control.
  • Robust Development: Built with Bazel and Conda for reproducible builds, with a comprehensive test suite to ensure reliability.

Installation

Once released, install glmpynet via pip:

pip install glmpynet

Quick Start

Using glmpynet is as simple as any Scikit-learn estimator.

from glmpynet.logistic_regression import LogisticRegression
from sklearn.model_selection import train_test_split
from sklearn.datasets import make_classification
from sklearn.metrics import accuracy_score

# 1. Generate synthetic data
X, y = make_classification(n_samples=1000, n_features=50, n_informative=10, random_state=42)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)

# 2. Instantiate and fit the model using familiar sklearn parameters
model = LogisticRegression(penalty='l1', C=0.5)
model.fit(X_train, y_train)

# 3. Make predictions
y_pred = model.predict(X_test)

# 4. Evaluate the model
accuracy = accuracy_score(y_test, y_pred)
print(f"Model Accuracy: {accuracy:.2f}")

Project Status

The Python API for glmpynet.LogisticRegression is now complete and fully tested against a mock backend. The next major phase of development is to implement the real C++ binding that connects this API to the glmnetpp engine.

See the ROADMAP.md for the full development plan.

Contributing

Contributions are welcome! See CONTRIBUTING.md for guidelines on reporting bugs, suggesting features, or submitting pull requests.

License

This project is distributed under the GNU General Public License version 2.

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

glmpynet-0.5.5.tar.gz (24.0 kB view details)

Uploaded Source

Built Distribution

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

glmpynet-0.5.5-py3-none-any.whl (22.1 kB view details)

Uploaded Python 3

File details

Details for the file glmpynet-0.5.5.tar.gz.

File metadata

  • Download URL: glmpynet-0.5.5.tar.gz
  • Upload date:
  • Size: 24.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for glmpynet-0.5.5.tar.gz
Algorithm Hash digest
SHA256 7e318bc807968691b6d998ccb6ee9ca3082ec148b85838ecba7895966f12d9c9
MD5 91d87b48fc5f15fdfffd0ec286e35ea9
BLAKE2b-256 41d20b1d405787f392397f9142675ce66ede35362a11ed8fb3804b916001d958

See more details on using hashes here.

File details

Details for the file glmpynet-0.5.5-py3-none-any.whl.

File metadata

  • Download URL: glmpynet-0.5.5-py3-none-any.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for glmpynet-0.5.5-py3-none-any.whl
Algorithm Hash digest
SHA256 6d820928c53b6ecf1f7fb950c8e43d2f929fec09a436972d4c626fafb5fe7362
MD5 acde9f617204186548e8bf710cac6a6d
BLAKE2b-256 afa2e1b0e7533dae4284885c0f08a28fc67205c7995cbde10c58469481062b22

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