Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 726 Bytes

File metadata and controls

36 lines (30 loc) · 726 Bytes

Calabi ML Server (NER & Suggestion)

FastAPI based Calabi NER / Term recommendation server

calabi-ml-server/
├── src
│   ├── nlp
│   │   ├── config.py
│   │   ├── constants.py
│   │   ├── dtos.py
│   │   ├── exceptions.py
│   │   ├── router.py
│   │   ├── schemas.py
│   │   ├── service.py
│   │   └── utils.py           
│   ├── config.py              
│   └── main.py
├── .env
├── Dockerfile
├── README.md
└── requirements.txt

Run Locally

  1. Install dependencies
pip install -r requirements.txt
  1. Run the server
uvicorn src.main:app --host 0.0.0.0