Package

nlpdata.datasets

conll

Permalink

package conll

Visibility
  1. Public
  2. All

Type Members

  1. case class CoNLLFile(path: CoNLLPath, sentences: Vector[CoNLLSentence]) extends Product with Serializable

    Permalink

    Represents a single CoNLL annotation file.

    Represents a single CoNLL annotation file.

    sentences

    all of the sentences in the annotation file

  2. class CoNLLFileSystemService extends CoNLLService[Try]

    Permalink
  3. case class CoNLLPath(split: String, language: String, domain: String, source: String, section: Int, name: String, number: Int) extends Product with Serializable

    Permalink
  4. case class CoNLLSentence(path: CoNLLSentencePath, partNum: Int, words: List[Word], syntaxTree: SyntaxTree, predicateArgumentStructures: List[PredicateArgumentStructure]) extends Product with Serializable

    Permalink

    Represents an annotated sentence from the CoNLL data.

    Represents an annotated sentence from the CoNLL data.

    As of now, we're lazy-loading the members of this class, only implementing them as we need them. I believe coref spans are already implemented in the coref annotation project; if necessary ask me (Julian) and I can put them in.

  5. case class CoNLLSentencePath(filePath: CoNLLPath, sentenceNum: Int) extends Product with Serializable

    Permalink

    Represents a unique index to a CoNLL sentence.

    Represents a unique index to a CoNLL sentence.

    This can be used to easily serialize a sentence without worrying about the data definition changing. The FileManager extension methods for the conll package include one to retrieve a sentence directly from such a path.

    filePath

    the path to the CoNLL file containing this sentence

    sentenceNum

    the index of this sentence in the document

  6. trait CoNLLService[M[_]] extends AnyRef

    Permalink
  7. sealed trait CoNLLServiceRequestA[A] extends AnyRef

    Permalink

Value Members

  1. object CoNLLParsing

    Permalink
  2. object CoNLLPath extends Serializable

    Permalink
  3. object CoNLLSentence extends Serializable

    Permalink
  4. object CoNLLService

    Permalink
  5. object CoNLLServiceRequestA

    Permalink
  6. object FreeCoNLLService extends CoNLLService[[β$0$]Free[CoNLLServiceRequestA, β$0$]]

    Permalink

Ungrouped