Package

epic

ontonotes

Permalink

package ontonotes

Visibility
  1. Public
  2. All

Type Members

  1. case class Argument(arg: String, span: Span) extends Product with Serializable

    Permalink
  2. case class DPos(doc: String, sentence: Int, pos: Int) extends Product with Serializable

    Permalink

    Represents a discrete word position in a sentence in a document

  3. case class DSpan(doc: String, sentence: Int, begin: Int, end: Int) extends Product with Serializable

    Permalink

    Represents a Span in a particular sentence in a particular Document

  4. case class Document(id: String, sentences: IndexedSeq[Sentence]) extends Example[IndexedSeq[OntoAnnotations], IndexedSeq[IndexedSeq[String]]] with Product with Serializable

    Permalink

    Represents an ontonotes document (a single file, or portion thereof)

  5. case class Frame(lemma: String, pos: Int, sense: Int, args: IndexedSeq[Argument]) extends Product with Serializable

    Permalink

    A Propbank mention

    A Propbank mention

    Annotations
    @SerialVersionUID()
  6. case class Mention(id: Int, mentionType: MentionType = MentionType.Ident) extends Product with Serializable

    Permalink

    A coref mention

    A coref mention

    Annotations
    @SerialVersionUID()
  7. sealed trait MentionType extends AnyRef

    Permalink

    The kinds of mentions used by Ontonotes

  8. case class OntoAnnotations(tree: Tree[AnnotatedLabel], ner: Map[DSpan, NerType.Value], coref: Map[DSpan, Mention], srl: IndexedSeq[Frame], speaker: Option[String]) extends Product with Serializable

    Permalink
    Annotations
    @SerialVersionUID()
  9. case class Sense(lemma: String, sense: String, pos: String) extends Product with Serializable

    Permalink

    A wordnet sense

  10. case class Sentence(docId: String, index: Int, words: IndexedSeq[String], annotations: OntoAnnotations) extends Example[OntoAnnotations, IndexedSeq[String]] with Product with Serializable

    Permalink

    represents an annotation ontonotes sentence.

    represents an annotation ontonotes sentence. Doesn't include raw sentence, for now.

    Annotations
    @SerialVersionUID()

Value Members

  1. object ConllOntoReader

    Permalink

    Reads the Conll 2011 shared task format.

    Reads the Conll 2011 shared task format. See http://conll.cemantix.org/2011/data.html

  2. object DPos extends Serializable

    Permalink
  3. object DSpan extends Serializable

    Permalink
  4. object MentionType

    Permalink
  5. object NerType extends Enumeration

    Permalink

    The NER types used in Ontonotes

    The NER types used in Ontonotes

    Annotations
    @SerialVersionUID()

Ungrouped