Packages

p

epic

ontonotes

package ontonotes

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class Argument (arg: String, span: Span) extends Product with Serializable
  2. case class DPos (doc: String, sentence: Int, pos: Int) extends Product with Serializable

    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

    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

    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

    A Propbank mention

    A Propbank mention

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

    A coref mention

    A coref mention

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

    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
    Annotations
    @SerialVersionUID()
  9. case class Sense (lemma: String, sense: String, pos: String) extends Product with Serializable

    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

    represents an annotation ontonotes sentence.

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

    Annotations
    @SerialVersionUID()

Value Members

  1. object ConllOntoReader

    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
  3. object DSpan extends Serializable
  4. object MentionType
  5. object NerType extends Enumeration

    The NER types used in Ontonotes

    The NER types used in Ontonotes

    Annotations
    @SerialVersionUID()

Ungrouped