Ejemplo n.º 1
0
 def run(self, input: Seq[Postag]) -> Seq[Chunktag]:
     return NltkTagger.run(self, input)
Ejemplo n.º 2
0
 def run(
     self, input: Seq[Seq[Word]], y: Supervised[Seq[Seq[Postag]]]
 ) -> Seq[Seq[Postag]]:
     return NltkTagger.run(self, input, y)
Ejemplo n.º 3
0
 def run(self, input: List(List(Postag()))) -> List(List(Chunktag())):
     return NltkTagger.run(self, input)
Ejemplo n.º 4
0
 def run(
     self, input: Tuple(List(List(Word())), List(List(Postag())))
 ) -> List(List(Postag())):
     return NltkTagger.run(self, input)