Skip to content

spaCy part-of-speech tagging and named entity recognition as a gRPC service

License

Notifications You must be signed in to change notification settings

turbolent/spacy-grpc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spacy-grpc

spaCy part-of-speech tagging and named entity recognition as a gRPC service

Usage

  • Run the server:

    $ pipenv run python -m spacy_grpc
  • Run the test client:

    $ PYTHONPATH=. pipenv run python spacy_grpc/client.py tag localhost "Hello, world!"
    Text    Tag    Lemma    Entity      Index    Length
    ------  -----  -------  --------  -------  --------
    hello   UH     hello                    0         5
    ,       ,      ,                        5         1
            _SP                             7         1
    world   NN     world                    8         5
    !       .      !                       13         1

About

spaCy part-of-speech tagging and named entity recognition as a gRPC service

Resources

License

Stars

Watchers

Forks

Releases

No releases published