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

cs591-dpath

user avatar
EC2 Default User authored
f273aea9
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.