CoolFace
Apppublic

maheshdev209/fhehp

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
README.md62 linesDownload Raw Back to root
1---2title: Health Prediction On Encrypted Data Using Fully Homomorphic Encryption3emoji: 🩺😷4colorFrom: gray5colorTo: blue6sdk: gradio7sdk_version: 3.33.18app_file: app.py9pinned: true10tags:11  - FHE12  - PPML13  - privacy14  - privacy preserving machine learning15  - image processing16  - homomorphic encryption17  - security18python_version: 3.10.619---20 21# Healthcare prediction using FHE22 23## Running the application on your machine24 25From this directory, i.e., `health_prediction`, you can proceed with the following steps.26 27### Do once28 29First, create a virtual env and activate it:30 31<!--pytest-codeblocks:skip-->32 33```bash34python3 -m venv .venv35source .venv/bin/activate36```37 38Then, install required packages:39 40<!--pytest-codeblocks:skip-->41 42```bash43pip3 install pip --upgrade44pip3 install -U pip wheel setuptools --ignore-installed45pip3 install -r requirements.txt --ignore-installed46```47 48## Run the following steps each time you relaunch the application49 50In a terminal, run:51 52<!--pytest-codeblocks:skip-->53 54```bash55source .venv/bin/activate56python3 app.py57```58 59## Interacting with the application60 61Open the given URL link (search for a line like `Running on local URL:  http://127.0.0.1:8888/`).62