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.6.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.6-py3-none-any.whl (22.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: glmpynet-0.5.6.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.6.tar.gz
Algorithm Hash digest
SHA256 db067173192e4460712553a839b550c97fe9305f0f0ec4d7a594de0273c68114
MD5 fd1800ea6f57eac06b419952d8cd44ff
BLAKE2b-256 663a4f69ace6a9ed06279c7f09cb491d698d5caee75ce1e4e5d97ab138689d56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: glmpynet-0.5.6-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.6-py3-none-any.whl
Algorithm Hash digest
SHA256 a5fced08300bf67a2928fe671bab78f1679bcbc1b6034126d589dc1684924c11
MD5 d7ae1aebd402e26996ecd6fd7e92f4c6
BLAKE2b-256 e6555732a4c4e9a8ee8f8b3ddadb38076b46701cf54318d336bbaa057d2af7b6

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