Skip to content
Snippets Groups Projects
Select Git revision
  • fc759eb7696ed9344403b3e0b0901ca11f77be4c
  • main default
  • styling
  • updated_prediction_service
4 results

cs591-dpath

user avatar
EC2 Default User authored
fc759eb7
History

Drexel 2022-2023 AIML Capstone - Digital Pathology

All documentation can be found on our tema Confluence page: https://drexel-cs591-dpath.atlassian.net/wiki/spaces/D2ACDP/overview

Dependency Installation and Setup

A SQS queue is required to send messages and trigger the diagnosis listener. This service is configured to send messages to the digpath-request queue.

A SQL database is also required to run the service. Run the command below to create a database with a request table and processing table:

The request table will keep track of the requests that are submitted, which file was requested for the processing/diagnosis, and the processing table will keep track of the progress of for that request.

pip install -e .
cd db
python setup_db.py

Running the application

Follow the instructions in the digpath folder to run the application.