Package miopia :: Package classifier :: Module PolarityType
[hide private]
[frames] | no frames]

Source Code for Module miopia.classifier.PolarityType

 1  ''' 
 2  Created on 29/01/2013 
 3   
 4  @author: David Vilares 
 5  ''' 
 6   
7 -class PolarityType(object):
8 ''' 9 The supported polarity classes by the system 10 ''' 11 STRONG_NEGATIVE = 'N+' 12 NEGATIVE = 'N' 13 NEUTRAL = 'NEU' 14 NONE = 'NONE' 15 POSITIVE = 'P' 16 STRONG_POSITIVE = 'P+' 17 OTHER = 'OTHER'
18