nlpserver
nlpserver copied to clipboard
NLP Web Service
Hello, I'm trying to run the Docker environment based on this: https://github.com/web64/nlpserver/pull/6 I receive the error: `No module named 'click._bashcomplete'` In this line: `RUN python3 -m spacy download en &&...
Is it possible to turn this repo into a Docker image? I think it would be useful and convenient to have this whole set up in Docker for easy usage,...
OSError: [E941] Can't find model 'es'. It looks like you're trying to load a model from a shortcut, which is deprecated as of spaCy v3.0. To load the model, use...
`polyglot download LANG:en` tellusererror POLYGLOT: main(): Can't open config file "polyglot.ini": No such file or directory OR `polyglot` tellusererror POLYGLOT: pipex_open(): execvp(): ../nlpserver: Permission denied I made polyglot.ini file in...
Flask inbuilt server is not intended for live run, using waitress for production run
Love the project! Thanks for putting it together. The README mentions an ask for ways this project can be improved. It would be amazing if you included the [spacy-transformers](https://spacy.io/universe/project/spacy-transformers) so...
Any chance? Using Chocalatey or Cmder?
I have added /gensim/similarity endpoint that measures the Similarity percentage of texts
I try to use nlpserver in Docker, with this docker-compose.yml: ```yml nlp: build: context: ./.docker-config/dockerfiles dockerfile: nlpserver.dockerfile ports: - '6400:6400' - '9000:9000' volumes: - ./.docker-config/nlpserver/nlpserver.conf:/etc/supervisor/conf.d/nlpserver.conf - ./.docker-config/nlpserver/entrypoint.sh:/usr/local/bin/entrypoint.sh networks: - custom...