Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 556 Bytes

File metadata and controls

25 lines (18 loc) · 556 Bytes

COVID_Taxonomy_Classification

Running with FastAPI

Clone this repository, populate the models directory, and then run

pip install -r requirements.txt
uvicorn application:app --host 0.0.0.0 --port 8081

Example request:

curl -X POST 'http://localhost:8081/covid/categorize' -H 'Content-Type: application/json' -d '{"text":"eat alkaline foods to prevent covid"}'

Docker

docker build -t covidcat .
docker run -p 8081:8081 covidcat

Model

The model is not publicly available at this time. It is stored internally on S3