コード例 #1
0
ファイル: annotation.py プロジェクト: irit-melodi/educe
 def __init__(self, node, children, origin=None, verbose=False):
     """
     See `educe.rst_dt.parse` to build trees from strings
     """
     SearchableTree.__init__(self, node, children)
     Standoff.__init__(self, origin)
     # WIP 2016-11-10 store num of head in node
     if len(children) == 1 and isinstance(children[0], EDU):
         # pre-terminal: head is num of terminal (EDU)
         node.head = children[0].num
     else:
         # internal node
         kids_nuclei = [i for i, kid in enumerate(children)
                        if kid.label().nuclearity == NUC_N]
         if len(kids_nuclei) == 1:
             # 1 nucleus, 1-n satellites: n mono-nuc relations
             pass
         elif len(kids_nuclei) == len(children):
             # all children are nuclei: 1 multi-nuc relation
             kid_rels = [kid.label().rel for kid in children]
             if len(set(kid_rels)) > 1:
                 if verbose:
                     err_msg = ('W: More than one label in multi-nuclear'
                                ' relation {}'.format(children))
                     print(err_msg)
         else:
             # corner case, should not happen
             err_msg = 'E: Unknown pattern in children'
             print(err_msg)
         # its head is the head of its leftmost nucleus child
         lnuc = children[kids_nuclei[0]]
         node.head = lnuc.label().head
コード例 #2
0
ファイル: annotation.py プロジェクト: chloebt/educe
 def __init__(self, node, children,
              origin=None):
     """
     See `educe.rst_dt.parse` to build trees from strings
     """
     SearchableTree.__init__(self, node, children)
     Standoff.__init__(self, origin)
コード例 #3
0
ファイル: annotation.py プロジェクト: chloebt/educe
 def __init__(self, node, children, origin=None):
     """
     Note, you should use `SimpleRSTTree.from_RSTTree(tree)`
     to create this tree instead
     """
     SearchableTree.__init__(self, node, children)
     Standoff.__init__(self, origin)
コード例 #4
0
 def __init__(self, node, children, origin=None):
     """
     Note, you should use `SimpleRSTTree.from_RSTTree(tree)`
     to create this tree instead
     """
     SearchableTree.__init__(self, node, children)
     Standoff.__init__(self, origin)
コード例 #5
0
ファイル: annotation.py プロジェクト: moreymat/educe
 def __init__(self, node, children, origin=None, verbose=False):
     """
     See `educe.rst_dt.parse` to build trees from strings
     """
     SearchableTree.__init__(self, node, children)
     Standoff.__init__(self, origin)
     # WIP 2016-11-10 store num of head in node
     if len(children) == 1 and isinstance(children[0], EDU):
         # pre-terminal: head is num of terminal (EDU)
         node.head = children[0].num
     else:
         # internal node
         kids_nuclei = [
             i for i, kid in enumerate(children)
             if kid.label().nuclearity == NUC_N
         ]
         if len(kids_nuclei) == 1:
             # 1 nucleus, 1-n satellites: n mono-nuc relations
             pass
         elif len(kids_nuclei) == len(children):
             # all children are nuclei: 1 multi-nuc relation
             kid_rels = [kid.label().rel for kid in children]
             if len(set(kid_rels)) > 1:
                 if verbose:
                     err_msg = ('W: More than one label in multi-nuclear'
                                ' relation {}'.format(children))
                     print(err_msg)
         else:
             # corner case, should not happen
             err_msg = 'E: Unknown pattern in children'
             print(err_msg)
         # its head is the head of its leftmost nucleus child
         lnuc = children[kids_nuclei[0]]
         node.head = lnuc.label().head
コード例 #6
0
ファイル: parse.py プロジェクト: arne-cl/educe
 def __init__(self,node,children,origin=None):
     """
     Note, you should use `RSTTree.build(str)` to create this tree
     instead
     """
     SearchableTree.__init__(self, node, children)
     Standoff.__init__(self, origin)
コード例 #7
0
ファイル: annotation.py プロジェクト: irit-melodi/educe
 def __init__(self, node, children, origin=None):
     """
     Note, you should use `SimpleRSTTree.from_RSTTree(tree)`
     to create this tree instead
     """
     SearchableTree.__init__(self, node, children)
     Standoff.__init__(self, origin)
     # WIP 2016-11-10 store num of head in node
     if len(children) == 1 and isinstance(children[0], EDU):
         node.head = children[0].num
     else:
         # head is head of the leftmost nucleus child
         lnuc_idx = node.nuclearity.index('N')
         node.head = children[lnuc_idx].label().head
コード例 #8
0
ファイル: annotation.py プロジェクト: moreymat/educe
 def __init__(self, node, children, origin=None):
     """
     Note, you should use `SimpleRSTTree.from_RSTTree(tree)`
     to create this tree instead
     """
     SearchableTree.__init__(self, node, children)
     Standoff.__init__(self, origin)
     # WIP 2016-11-10 store num of head in node
     if len(children) == 1 and isinstance(children[0], EDU):
         node.head = children[0].num
     else:
         # head is head of the leftmost nucleus child
         lnuc_idx = node.nuclearity.index('N')
         node.head = children[lnuc_idx].label().head
コード例 #9
0
 def __init__(self, node, children, origin=None):
     """
     See `educe.rst_dt.parse` to build trees from strings
     """
     SearchableTree.__init__(self, node, children)
     Standoff.__init__(self, origin)