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
- Install dependencies
pip install -r requirements.txt- Run the server
uvicorn src.main:app --host 0.0.0.0