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

https://github.com/sezaakgun/logistic-regression

My logistic regression model mostly from scratch
https://github.com/sezaakgun/logistic-regression

basic-python-syntax logistic-regression machine-learning python python3

Last synced: 3 months ago
JSON representation

My logistic regression model mostly from scratch

Awesome Lists containing this project

README

        

# logistic-regression

The main challenge is to predict rather a passenger would live or not.

# Prerequisies
python 3.6 or higher and pip.

### Setup

```sh
$ git clone https://github.com/sezaakgun/logistic-regression.git
$ cd logistic-regression
$ pip install pandas
$ pip install numpy
$ pip install sklearn
```

### How To Run
```sh
$ python logistic-regression.py
```

# References

- Data we have is downloaded from [kaggle](https://www.kaggle.com/c/titanic).

- I highly inspired form this [source](https://towardsdatascience.com/logistic-regression-detailed-overview-46c4da4303bc).

# License
This project is licensed under the MIT License - see the LICENSE.txt file for details.