Semaphore is a student-built and maintained Python application that semi-automates the process of operationalizing AI models. Semaphore downloads data, runs models, post-process outputs, and saves outputs. Semaphore currently takes model data in the form of .H5 files and input specifications and a DSPEC JSON. Examples of both are included in this repository.
- Python version >= 3.10
- Some version of SQLite (deprecated) SQLite Download Page OR
- PostGres 15.4 with SQLAlchemy 2.0.20 //you can use pgAdmin to access and view the PG database
- Requirements:
Docker Desktop
docker-compose
- Dependencies:
- Python 3.10.5
- You will need to create a
.env
file in the root directory of the project. This file will contain the environment variables for the docker container. You can copy the contents ofenv.dist
and replace the values with your own. - Ensure that Docker Desktop is running on your machine
- Run
docker compose build
anddocker compose up
(rundocker compose up -d
to run in the background) - Intitalize the database by running:
docker exec semaphore-core python3 tools/migrate_db.py
- Database can be accessed using pgAdmin or VSCode Postgresql Explorer plugin
- To stop the containers: Press
ctrl+C
in the terminal or if running in background close in Docker Desktop (docker compose down
also works) - If you are making changes to the code, be sure to
docker compose down
anddocker compose build
beforedocker compose up
. If you are making changes to the database, be sure to delete the existing DB volume on Docker Desktop before building again
Currently, you can run Semaphore through the make_and_save_prediction and make_prediction methods in the src/semaphoreRunner.py
which contains documentation for the CLI. Keep in mind the DB will need to be loaded with the proper location mappings for your ingested data. Feel free to reach out to one of the authors for help getting Semaphore up and running.
- Make sure your environment is activated!
source ./venv/vsem/Scripts/activate
pip install -r requirements.txt
to install new dependencies (if you haven't already)- From the root directory, run
uvicorn src.API.apiDriver:app
- You can specify
--host
and--port
if you so desire - uvicorn will give you a link to the index page of the API. Add
/docs
to the URL to access the docs page