Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

README.md

File metadata and controls

30 lines (21 loc) · 1.01 KB

LargeMovieReviewDataset.jl

Build Status codecov

A julia package that provides an interface to the Large Movie Review Dataset. Downloading and managing the data will happen automatically, courtesy of DataDeps.jl.

Installation

LargeMovieReviewDataset.jl is registered, so it can be installed with Julia's package manager.

julia> ]add LargeMovieReviewDataset

Usage

LargeMovieReviewDataset.jl exports the following functions:

  • review_files
  • trainfiles
  • testfiles
  • review_id
  • review_rating
julia> using LargeMovieReviewDataset
julia> for file in trainfiles()
           # ...
       end