Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 935 Bytes

README.md

File metadata and controls

55 lines (36 loc) · 935 Bytes

Project

This project contains the publicly available code for my master project software engineering on vascular age.

Architecture

Architecture

Usage Hints

  1. Ensure you are in the root dir of the project
cd PROJECT_DIR
  1. If no virtual environment exists yet (i.e. no venv3.* folder available) then create it:
make venv
  1. Load the virtual environment:
source source.sh
  1. install software requirements (if not done yet)
make pip
  1. install the project itself:
make install
  1. run the project
python3 realage/main.py
# OR:
make run
  1. Alternatively, run one of the notebooks (not publicly available because those contain private information)
make lab
# go to localhost:8080 (or the next port if 8080 was unavailable)