This is a quick example of a NER Model Extractor. This small project does not intend to become an official guide, for that, please refer to the official documentation
The following steps assume you have some Linux-based OS, and that you have some previous experience with both Python & CLI; plus
- Clone this project to some location in your host computer; change your working directory to it.
- Create a
venv
and enable it. - Inside
venv
, runpip install -r requirements.txt
, and wait until all the libraries get installed. - As a quick test, you can use the server locally. To do so, run
uvicorn src.app:app --reload
; when you see a message 'Application complete' in your CLI, then open a web browser and hithttp://127.0.0.1/docs
. You should access the documentation of the API. - The Dockerfile contains the instructions to build an image, which could be achieved through docker build and then docker run commands. These instructions are outside the scope of this quick guide.