package ontonotes
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class Argument (arg: String, span: Span) extends Product with Serializable
-
case class
DPos
(doc: String, sentence: Int, pos: Int) extends Product with Serializable
Represents a discrete word position in a sentence in a document
-
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
-
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)
-
case class
Frame
(lemma: String, pos: Int, sense: Int, args: IndexedSeq[Argument]) extends Product with Serializable
A Propbank mention
A Propbank mention
- Annotations
- @SerialVersionUID()
-
case class
Mention
(id: Int, mentionType: MentionType = MentionType.Ident) extends Product with Serializable
A coref mention
A coref mention
- Annotations
- @SerialVersionUID()
-
sealed
trait
MentionType
extends AnyRef
The kinds of mentions used by Ontonotes
-
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()
-
case class
Sense
(lemma: String, sense: String, pos: String) extends Product with Serializable
A wordnet sense
-
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
-
object
ConllOntoReader
Reads the Conll 2011 shared task format.
Reads the Conll 2011 shared task format. See http://conll.cemantix.org/2011/data.html
- object DPos extends Serializable
- object DSpan extends Serializable
- object MentionType
-
object
NerType
extends Enumeration
The NER types used in Ontonotes
The NER types used in Ontonotes
- Annotations
- @SerialVersionUID()