本文整理汇总了Python中nltk.corpus.wordnet.ADV属性的典型用法代码示例。如果您正苦于以下问题:Python wordnet.ADV属性的具体用法?Python wordnet.ADV怎么用?Python wordnet.ADV使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类nltk.corpus.wordnet
的用法示例。
在下文中一共展示了wordnet.ADV属性的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_simplified_pos
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def test_simplified_pos():
assert simplified_pos('') == ''
assert simplified_pos('N') == 'N'
assert simplified_pos('V') == 'V'
assert simplified_pos('ADJ') == 'ADJ'
assert simplified_pos('ADV') == 'ADV'
assert simplified_pos('AD') == ''
assert simplified_pos('ADX') == ''
assert simplified_pos('PRP') == ''
assert simplified_pos('XYZ') == ''
assert simplified_pos('NN') == 'N'
assert simplified_pos('NNP') == 'N'
assert simplified_pos('VX') == 'V'
assert simplified_pos('ADJY') == 'ADJ'
assert simplified_pos('ADVZ') == 'ADV'
assert simplified_pos('NNP', tagset='penn') == 'N'
assert simplified_pos('VFOO', tagset='penn') == 'V'
assert simplified_pos('JJ', tagset='penn') == 'ADJ'
assert simplified_pos('JJX', tagset='penn') == 'ADJ'
assert simplified_pos('RB', tagset='penn') == 'ADV'
assert simplified_pos('RBFOO', tagset='penn') == 'ADV'
assert simplified_pos('FOOBAR', tagset='penn') == ''
示例2: pos_tag_convert_penn_to_wn
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def pos_tag_convert_penn_to_wn(tag):
"""
Convert POS tag from Penn tagset to WordNet tagset.
:param tag: a tag from Penn tagset
:return: a tag from WordNet tagset or None if no corresponding tag could be found
"""
from nltk.corpus import wordnet as wn
if tag in ['JJ', 'JJR', 'JJS']:
return wn.ADJ
elif tag in ['RB', 'RBR', 'RBS']:
return wn.ADV
elif tag in ['NN', 'NNS', 'NNP', 'NNPS']:
return wn.NOUN
elif tag in ['VB', 'VBD', 'VBG', 'VBN', 'VBP', 'VBZ']:
return wn.VERB
return None
示例3: get_wordnet_pos
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def get_wordnet_pos(self,treebank_tag):
"""
return WORDNET POS compliance to WORDENT lemmatization (a,n,r,v)
"""
if treebank_tag.startswith('J'):
return wordnet.ADJ
elif treebank_tag.startswith('V'):
return wordnet.VERB
elif treebank_tag.startswith('N'):
return wordnet.NOUN
elif treebank_tag.startswith('R'):
return wordnet.ADV
else:
return wordnet.NOUN
示例4: pos_tag_text
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def pos_tag_text(text):
def penn_to_wn_tags(pos_tag):
if pos_tag.startswith('J'):
return wn.ADJ
elif pos_tag.startswith('V'):
return wn.VERB
elif pos_tag.startswith('N'):
return wn.NOUN
elif pos_tag.startswith('R'):
return wn.ADV
else:
return None
tagged_text = tag(text)
tagged_lower_text = [(word.lower(), penn_to_wn_tags(pos_tag))
for word, pos_tag in
tagged_text]
return tagged_lower_text
# lemmatize text based on POS tags
示例5: _pos_tuples
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def _pos_tuples():
return [
(wn.NOUN,'N','noun'),
(wn.VERB,'V','verb'),
(wn.ADJ,'J','adj'),
(wn.ADV,'R','adv')]
示例6: get_wordnet_pos
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def get_wordnet_pos(treebank_tag):
if treebank_tag.startswith('J'):
return wordnet.ADJ
elif treebank_tag.startswith('V'):
return wordnet.VERB
elif treebank_tag.startswith('N'):
return wordnet.NOUN
elif treebank_tag.startswith('R'):
return wordnet.ADV
else:
return None
示例7: wup_similarity
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def wup_similarity(tagx, tagy):
scores = []
for pos in [wn.NOUN, wn.VERB, wn.ADJ, wn.ADJ_SAT, wn.ADV]:
try:
synsetx = wn.synset('%s.%s.01' % (tagx,pos))
synsety = wn.synset('%s.%s.01' % (tagy,pos))
score = synsetx.wup_similarity(synsety)
if score is None:
score = 0
except Exception, e:
score = 0
scores.append(score)
示例8: test_pos_tag_convert_penn_to_wn
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def test_pos_tag_convert_penn_to_wn():
assert pos_tag_convert_penn_to_wn('JJ') == wn.ADJ
assert pos_tag_convert_penn_to_wn('RB') == wn.ADV
assert pos_tag_convert_penn_to_wn('NN') == wn.NOUN
assert pos_tag_convert_penn_to_wn('VB') == wn.VERB
for tag in ('', 'invalid', None):
assert pos_tag_convert_penn_to_wn(tag) is None
示例9: _lemmatize_wrapper_general_patternlib
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def _lemmatize_wrapper_general_patternlib(row, lemmatizer):
"""Wrapper function to lemmatize texts using ``pattern`` package."""
tok, pos = row
if pos.startswith('NP'): # singularize noun
return lemmatizer.singularize(tok)
elif pos.startswith('V'): # get infinitive of verb
return lemmatizer.conjugate(tok, lemmatizer.INFINITIVE)
elif pos.startswith('ADJ') or pos.startswith('ADV'): # get baseform of adjective or adverb
return lemmatizer.predicative(tok)
return tok
示例10: __get_wordnet_pos
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def __get_wordnet_pos(self, treebank_tag):
if treebank_tag.startswith("J"):
return wordnet.ADJ
elif treebank_tag.startswith("V"):
return wordnet.VERB
elif treebank_tag.startswith("N"):
return wordnet.NOUN
elif treebank_tag.startswith("R"):
return wordnet.ADV
else:
return ""
示例11: tagwn
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def tagwn(self, tag):
"""
Returns the WordNet tag from the Penn Treebank tag.
"""
return {
'N': wn.NOUN,
'V': wn.VERB,
'R': wn.ADV,
'J': wn.ADJ
}.get(tag[0], wn.NOUN)
示例12: get_wordnet_pos
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def get_wordnet_pos(treebank_tag):
""" Converts a Penn Tree-Bank part of speech tag into a corresponding WordNet-friendly tag.
Borrowed from: http://stackoverflow.com/questions/15586721/wordnet-lemmatization-and-pos-tagging-in-python. """
if treebank_tag.startswith('J') or treebank_tag.startswith('A'):
return wordnet.ADJ
elif treebank_tag.startswith('V'):
return wordnet.VERB
elif treebank_tag.startswith('N'):
return wordnet.NOUN
elif treebank_tag.startswith('R'):
return wordnet.ADV
else:
return 'OTHER'
示例13: convert_to_wn_pos
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def convert_to_wn_pos(pos):
if pos.startswith("J"):
return wn.ADJ
elif pos.startswith("V"):
return wn.VERB
elif pos.startswith("N"):
return wn.NOUN
elif pos.startswith("R"):
return wn.ADV
else:
return ""
示例14: get_word_net_pos
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def get_word_net_pos(treebank_tag):
if treebank_tag.startswith('J'):
return wordnet.ADJ
elif treebank_tag.startswith('V'):
return wordnet.VERB
elif treebank_tag.startswith('N'):
return wordnet.NOUN
elif treebank_tag.startswith('R'):
return wordnet.ADV
else:
return None
示例15: lemmatize
# 需要导入模块: from nltk.corpus import wordnet [as 别名]
# 或者: from nltk.corpus.wordnet import ADV [as 别名]
def lemmatize(self, token, pos_tag):
tag = {
'N': wn.NOUN,
'V': wn.VERB,
'R': wn.ADV,
'J': wn.ADJ
}.get(pos_tag[0], wn.NOUN)
return self.lemmatizer.lemmatize(token, tag)