A Python implementation of the Fisher Scoring algorithm for logistic regression, multinomial regression, and focal loss regression.
Project description
Fisher Scoring Logistic Regression Suite
Author: xRiskLab
GitHub: xRiskLab
Beta Version: 0.1
2024 MIT License
Overview
This repository contains Python implementations of the Fisher Scoring algorithm for various logistic regression models:
- Fisher Scoring Logistic Regression: Standard logistic regression using Fisher scoring.
- Fisher Scoring Multinomial Regression: Multinomial logistic regression for multi-class classification.
- Fisher Scoring Focal Loss Regression: Logistic regression with focal loss for imbalanced classification problems.
The Fisher Scoring algorithm is an iterative optimization algorithm that updates model parameters using the observed or expected Fisher information matrix.
Models
Fisher Scoring Logistic Regression
The FisherScoringLogisticRegression
class is a custom implementation of logistic regression using the Fisher scoring algorithm. It provides methods for fitting the model, making predictions, and computing model statistics, including standard errors, Wald statistic, p-values, and confidence intervals.
Parameters:
epsilon
: Convergence threshold for the algorithm.max_iter
: Maximum number of iterations for the algorithm.information
: Type of information matrix to use ('expected' or 'observed').use_bias
: Include a bias term in the model.significance
: Significance level for computing confidence intervals.
Methods:
fit(X, y)
: Fit the model to the data.predict(X)
: Predict target labels for input data.predict_proba(X)
: Predict class probabilities for input data.get_params()
: Get model parameters.set_params(**params)
: Set model parameters.summary()
: Get a summary of model parameters, standard errors, p-values, and confidence intervals.display_summary()
: Display a summary of model parameters, standard errors, p-values, and confidence intervals.
Fisher Scoring Multinomial Regression
The FisherScoringMultinomialRegression
class implements the Fisher Scoring algorithm for multinomial logistic regression, suitable for multi-class classification tasks.
Parameters:
epsilon
: Convergence threshold for the algorithm.max_iter
: Maximum number of iterations for the algorithm.information
: Type of information matrix to use ('expected' or 'observed').use_bias
: Include a bias term in the model.verbose
: Enable verbose output.
The algorithm is in a beta version and may require further testing and optimization.
Fisher Scoring Focal Loss Regression
The FisherScoringFocalRegression
class implements the Fisher Scoring algorithm with focal loss, designed for imbalanced classification problems where the positive class is rare.
Parameters:
gamma
: Focusing parameter for focal loss.epsilon
: Convergence threshold for the algorithm.max_iter
: Maximum number of iterations for the algorithm.information
: Type of information matrix to use ('expected' or 'observed').use_bias
: Include a bias term in the model.verbose
: Enable verbose output.
The algorithm is experimental and may require further testing and optimization.
Installation
To use the models, clone the repository and install the required dependencies.
git clone https://github.com/xRiskLab/fisher-scoring.git
cd fisher-scoring
pip install -r requirements.txt
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
Built Distribution
File details
Details for the file fisher_scoring-0.1.2.tar.gz
.
File metadata
- Download URL: fisher_scoring-0.1.2.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.10.12 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7f9096ab465c52e15df605b627b09585bce700a9e5f9ce9dc032a9d9fe2044d |
|
MD5 | 568de23eacdd68e5bd5bdeed6c889b7c |
|
BLAKE2b-256 | cbebdcf624323e32af7812e3298af7c3ecff1ef490d5d504384f4e4895670a57 |
Provenance
File details
Details for the file fisher_scoring-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: fisher_scoring-0.1.2-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.10.12 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3aa3a893f05740076794e19739a60ab4c213ebd07fb5650e0f6dc13a425cd476 |
|
MD5 | 7661110b088373b1b9911f355c57cc38 |
|
BLAKE2b-256 | 58ab492ca8feaa6cf44950c20add18bc730eea7dbae365fdfa01191360e3a3a1 |