Repository of path construction algorithms based on patient admission and drug prescriptions using clinical datasets.
To replicate the experiments, you need access to ADMISSIONS.csv and PRESCRIPTIONS.csv files from MIMIC-III Clinical Database, which need to be present in the data subdirectory inside hnet directory.
cd
into thehnet
directory- On Linux/MacOS:
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
python3 source/main.py
- On Windows:
python -m venv venv
venv\Scripts\activate.bat
pip install -r requirements.txt
python source/main.py
make build
ordocker build -t hnet .
make run-hnet
ordocker-compose up -d && docker exec -it hnet python3 source/main.py