Skip to content

Julia interface to the large (IMDB) movie review corpus for sentiment classification

Notifications You must be signed in to change notification settings

dellison/LargeMovieReviewDataset.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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