
com.johnsnowlabs.nlp.annotators.common.DependencyParsed.scala Maven / Gradle / Ivy
package com.johnsnowlabs.nlp.annotators.common
import com.johnsnowlabs.nlp.{Annotation, AnnotatorType}
case class DependencyParsedSentence(tokens: Array[WordWithDependency])
case class WordWithDependency(word: String, begin: Int, end: Int, dependency: Int)
object DependencyParsed extends Annotated[DependencyParsedSentence]{
override def annotatorType: String = AnnotatorType.DEPENDENCY
override def unpack(annotations: Seq[Annotation]): Seq[DependencyParsedSentence] = {
val sentences = TokenizedWithSentence.unpack(annotations)
val depAnnotations = annotations
.filter(a => a.annotatorType == annotatorType)
.sortBy(a => a.begin)
var last = 0
sentences.map{sentence =>
val sorted = sentence.indexedTokens.sortBy(t => t.begin)
val dependencies = (last until (last + sorted.length)).map { i =>
depAnnotations(i).metadata("head").toInt
}
last += sorted.length
val words = sorted.zip(dependencies).map{
case (token, dependency) =>
WordWithDependency(token.token, token.begin, token.end, dependency)
}
DependencyParsedSentence(words)
}
}
override def pack(items: Seq[DependencyParsedSentence]): Seq[Annotation] = {
items.flatMap{sentence =>
sentence.tokens.map(t =>
Annotation(annotatorType, t.begin, t.end, t.dependency.toString, Map.empty[String, String]))
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy