EdwardBurgin / ner_service

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ner_service

This project is to train a spacy NER model via API and run NER using the trained model.

Build a docker image

$docker build -t ner-service:latest .

Add docker-compose context for ner-service

ner-service:
    image: ner-service:latest
    container_name: custom-ner
    restart: always
    ports:
      - "9501:9501"
    volumes:
      - ./ner-training:/app/project-ner/training
      - ./ner-training:/app/project-ner/corpus
      - ./ner-training:/app/project-ner/metrics

or Run the docker image

$docker run -it -p 9501:9501 ner-service:latest

About


Languages

Language:Python 91.6%Language:Dockerfile 8.4%