Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ner/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def __init__(self, host='localhost', port=1234, location='/stanford-ner/ner',
def tag_text(self, text):
"""Tag the text with proper named entities token-by-token.

:param text: raw text strig to tag
:param text: raw text string to tag
:returns: tagged text in given output format
"""
for s in ('\f', '\n', '\r', '\t', '\v'): #strip whitespaces
Expand Down