Skip to content

Latest commit

 

History

History
 
 

credit_scoring

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Credit Scoring in FHE

In this directory, CreditScoring.ipynb compares scikit-learn models and Concrete ML models, in term of speed and accuracy, on a credit scoring task. This notebook was inspired by an existing notebook https://www.kaggle.com/code/ajay1735/my-credit-scoring-model. The data-set hmeq.csv file comes from https://www.kaggle.com/code/ajay1735/my-credit-scoring-model/input .

Installation

  • First, create a virtual env and activate it:
python3.8 -m venv .venv
source .venv/bin/activate
  • Then, install required packages:
pip3 install -U pip wheel setuptools --ignore-installed
pip3 install -r requirements.txt --ignore-installed