pyner
pyner copied to clipboard
Python interface to the Stanford Named Entity Recognizer
There is a small typo in ner/client.py. Should read `string` rather than `strig`. Semi-automated pull request generated by https://github.com/timgates42/meticulous/blob/master/docs/NOTE.md
I tried to run this query: tagger.get_entities('University of California is located in California, United States') and got this error: ``` --------------------------------------------------------------------------- TypeError Traceback (most recent call last) in () ---->...
Hi, When I try using the get_entities functions, I receive the following error. socket.error: [Errno 10061] No connection could be made because the target machine actively refused it Googling it,...
tagger = ner.HttpNER(host='localhost', port=8080) throws back an AttributeError: 'module' object has no attribute 'HttpNER'
Thank you for publishing your library. Just a suggestion, it would be helpful to cut releases and publish this package to the [python 'cheeseshop'](https://wiki.python.org/moin/CheeseShop) I am willing to help out...
Fixed a typo like a true programming prodigy.
`SocketNER.tag_text` would now retrieve data in chunks of size 4092, and bail after a two-second timeout. May address issue #14 and issue #11. It will probably desirable to make the...
Hi is it possible to create our own training data, so that we can use the custom Tagger.
causes [Errno 57] Socket is not connected error on multiple calls (at least on OSX). You can "fix" this by removing the shutdown code in ner/utils, but perhaps it should...
The socket may get closed due to an error, in which case the close() in the finally clause raises a second exception.