• Stars
    star
    32
  • Rank 775,374 (Top 16 %)
  • Language
    Julia
  • License
    Other
  • Created over 7 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A variety of loaders for various NLP corpora.

CorpusLoaders

A collection of various means for loading various different corpora used in NLP.

Installation

As per the standard Julia package installation:

julia> Pkg.add("CorpusLoaders")

Also, in the Pkg REPL, the package can be added with the add command, as:

pkg> add CorpusLoaders

Common Structure

For some corpus which we will say has type Corpus, it will have a constructior Corpus(path) where path argument is a path to the files describing it. That path will default to a predefined data dependency, if not provided. The data dependency will be downloaded the first time you call Corpus(). When the datadep resolves it will give full bibliograpghic details on the corpus etc. For more on that like configuration details, see DataDeps.jl.

Each corpus has a function load(::Corpus). This will return some iterator of data. It is often lazy, e.g. using a Channel, as many corpora are too large to fit in memory comfortably. It will often be an iterator of iterators of iterators ... Designed to be manipulated by using MultiResolutionIterators.jl. The corpus type is an indexer for using named levels with MultiResolutionInterators.jl. so lvls(Corpus, :para) works.

Corpora

Follow the links below for full docs on the usage of the corpora.