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

https://github.com/itsmandrew/diabetes-cs178

Final project for CS178, predicting whether and when will patient with diabetes be readmitted in hospital after the treatment.
https://github.com/itsmandrew/diabetes-cs178

knn logistic-regression neural-network python scikit-learn

Last synced: 2 months ago
JSON representation

Final project for CS178, predicting whether and when will patient with diabetes be readmitted in hospital after the treatment.

Awesome Lists containing this project

README

          

# Installation

This program is ran on Python 3.10.

If you are currently running a different Python version, you can follow this so that you can change Python versions and create the environment for this project. (Optional if conda-forge doesn't work) [Link text Here](https://ggkbase-help.berkeley.edu/how-to/install-pyenv/)

Clone the repository.

```bash
git clone
cd
```

We also use miniconda for the virtual environment by following these steps.

(current directory)

```bash
conda config --add channels conda-forge
conda search python # Checking if the Python version is there
conda create --name [name_of_env] python3.10
```

If the above does not work, I recommend using pyenv to switch into the Python version and then running the command above without the last flag 'python3.10'

Once the environment is created we activate the virtual environment.

```bash
conda activate [name_of_env]
pip install -r requirements.txt
```

Done.