|
|
ANTONYM = 'antonym'
|
|
|
HYPERNYM = 'hypernym'
|
|
|
HYPONYM = 'hyponym'
|
|
|
ATTRIBUTE = 'attribute'
|
|
|
ALSO_SEE = 'also see'
|
|
|
ENTAILMENT = 'entailment'
|
|
|
CAUSE = 'cause'
|
|
|
VERB_GROUP = 'verb group'
|
|
|
MEMBER_MERONYM = 'member meronym'
|
|
|
SUBSTANCE_MERONYM = 'substance meronym'
|
|
|
PART_MERONYM = 'part meronym'
|
|
|
MEMBER_HOLONYM = 'member holonym'
|
|
|
SUBSTANCE_HOLONYM = 'substance holonym'
|
|
|
PART_HOLONYM = 'part holonym'
|
|
|
SIMILAR = 'similar'
|
|
|
PARTICIPLE_OF = 'participle of'
|
|
|
PERTAINYM = 'pertainym'
|
|
|
FRAMES = 'frames'
|
|
|
CLASSIF_CATEGORY = 'domain category'
|
|
|
CLASSIF_USAGE = 'domain usage'
|
|
|
CLASSIF_REGIONAL = 'domain region'
|
|
|
CLASS_CATEGORY = 'class category'
|
|
|
CLASS_USAGE = 'class usage'
|
|
|
CLASS_REGIONAL = 'class region'
|
|
|
INSTANCE_HYPERNYM = 'hypernym (instance)'
|
|
|
INSTANCE_HYPONYM = 'hyponym (instance)'
|
|
|
POINTER_TYPES = ('antonym', 'hypernym', 'hyponym', 'attribute'...
|
|
|
ATTRIBUTIVE = 'attributive'
|
|
|
PREDICATIVE = 'predicative'
|
|
|
IMMEDIATE_POSTNOMINAL = 'immediate postnominal'
|
|
|
ADJECTIVE_POSITIONS = ('attributive', 'predicative', 'immediat...
|
|
|
VERB_FRAME_STRINGS = (None, 'Something %s', 'Somebody %s', 'It...
|
|
|
NOUN = 'noun'
|
|
|
VERB = 'verb'
|
|
|
ADJECTIVE = 'adj'
|
|
|
ADVERB = 'adv'
|
|
|
pos_abbrs = {'adj': 'adj.', 'adv': 'adv.', 'noun': 'n.', 'verb...
|
|
|
_POSNormalizationTable = {'A': 'adj', 'ADJ': 'adj', 'ADJ.': 'a...
|
|
|
FILE_OPEN_MODE = 'r'
|
|
|
GET_INDEX_SUBSTITUTIONS = ((' ', '-'), ('-', ' '), ('-', ''), ...
|
|
|
abbreviations = 'adverb adv adv. r'
|
|
|
pos = 'adv'
|
|
|
token = 'r'
|
|
|
tokens = ['adverb', 'adv', 'adv.', 'r']
|