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.
cdinto thehnetdirectory- On Linux/MacOS:
python3 -m venv venvsource venv/bin/activatepip3 install -r requirements.txtpython3 source/main.py
- On Windows:
python -m venv venvvenv\Scripts\activate.batpip install -r requirements.txtpython source/main.py
make buildordocker build -t hnet .make run-hnetordocker-compose up -d && docker exec -it hnet python3 source/main.py