An open API service indexing awesome lists of open source software.

https://github.com/saniyaabushakimova/a-study-of-sigmoid-based-multi-class-logistic-regression

Investigated how multi-class logistic regression would perform if the activation function was changed from softmax to sigmoid. It included mathematical analysis and empirical evaluation, such as rewriting the model from scratch. Tech: Python (scikit-learn, pandas)
https://github.com/saniyaabushakimova/a-study-of-sigmoid-based-multi-class-logistic-regression

aaai multiclass-logistic-regression python research statistical-learning

Last synced: 7 months ago
JSON representation

Investigated how multi-class logistic regression would perform if the activation function was changed from softmax to sigmoid. It included mathematical analysis and empirical evaluation, such as rewriting the model from scratch. Tech: Python (scikit-learn, pandas)

Awesome Lists containing this project

README

          

Project completed on Dec 9, 2021.

### Purpose
- Investigate how sigmoid-based multi-class logistic regression would perform compared to softmax_based one.

### Content
- `Final Project/Final_project_report.pdf` - Report (AAAI format) that contains description and results of the work done.
- `Final Project/Final_project_solution.ipynb` - Jupyther Notebook with Data exploration, training procedures and experiments.
- `Final Project/Preprocessing.ipynb` - Jupyter Notebook with data preprocessing.