本文整理匯總了Python中nltk.tag.stanford.POSTagger.parse_output方法的典型用法代碼示例。如果您正苦於以下問題:Python POSTagger.parse_output方法的具體用法?Python POSTagger.parse_output怎麽用?Python POSTagger.parse_output使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類nltk.tag.stanford.POSTagger
的用法示例。
在下文中一共展示了POSTagger.parse_output方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _parse
# 需要導入模塊: from nltk.tag.stanford import POSTagger [as 別名]
# 或者: from nltk.tag.stanford.POSTagger import parse_output [as 別名]
def _parse(self, text):
# clean up any leftover results
while True:
try:
self.pos_tagger.read_nonblocking(4000, 0.25)
except pexpect.TIMEOUT:
break
# send the actual text
self.pos_tagger.sendline(text)
max_expected_time = min(40, 3 + len(text) / 20.0)
end_time = time.time() + max_expected_time
incoming = ""
while True:
# Time left, read more data
try:
incoming += self.pos_tagger.read_nonblocking(2000, 0.5).decode('utf-8')
if "_" in incoming:
break
time.sleep(0.0001)
except pexpect.TIMEOUT:
if end_time - time.time() < 0:
# logger.error("Error: Timeout with input '%s'" % (incoming))
return {'error': "timed out after %f seconds" % max_expected_time}
else:
continue
except pexpect.EOF:
break
tagged_list = list(filter(None, incoming.split('\r\n')))
for item in tagged_list:
item.replace('_', ' ')
tagged_string = [item for item in tagged_list if item not in [text]][0]
result = POSTagger.parse_output(POSTagger, tagged_string)
return result