|
__init__(self,
parser,
dictionaries,
conf,
preprocessor,
lexical_processor)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
|
|
|
|
|
|
analyze_from_conll_list(self,
list_conll_files) |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
visit_function(self,
semantic_category)
Returns:
An specific visit function according the semantic category of the
word |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
_visit_noun(self,
graph,
node)
This function processes a noun node and realizes the recursive calls
to their children. |
source code
|
|
|
_visit_adjective(self,
graph,
node)
This function processes an adjective node and realizes the recursive
calls to their children. |
source code
|
|
|
_visit_verb(self,
graph,
node)
This function processes a verb node and realizes the recursive calls
to their children. |
source code
|
|
|
_visit_adverb(self,
graph,
node)
This function processes an adverb node and realizes the recursive
calls to their children. |
source code
|
|
|
|
|
_visit_adversative(self,
graph,
node)
This function processes an artificial adversative node and realizes
the recursive calls to their children. |
source code
|
|
|
|
|
_shift_negation(self,
semantic_orientation)
A function to shift the semantic orientation of a negation semantic
dependent words |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_visit_negation(self,
graph,
node)
This function processes a negation node and realizes the recursive
calls to their children. |
source code
|
|
|
_visit_emoticon(self,
graph,
node)
This function processes a emoticon node and realizes the recursive
calls to their children. |
source code
|
|
|
_visit_other(self,
graph,
node)
This function processes an other node and realizes the recursive
calls to their children. |
source code
|
|
Inherited from Analyzer.Analyzer :
get_semantic_category ,
negation_node
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|