Sha256: ef350b44fc0d1212890898646774d09624adfd8faf9b2fc63114a9e8e019cb92

Contents?: true

Size: 1.67 KB

Versions: 4

Compression:

Stored size: 1.67 KB

Contents

require_relative "dataset"

module Datasets
  class PennTreebank < Dataset
    Record = Struct.new(:word)

    DESCRIPTION = <<~DESC
      `Penn Tree Bank <https://www.cis.upenn.edu/~treebank/>`_ is originally a
      corpus of English sentences with linguistic structure annotations. This
      function uses a variant distributed at
      `https://github.com/wojzaremba/lstm <https://github.com/wojzaremba/lstm>`_,
      which omits the annotation and splits the dataset into three parts:
      training, validation, and test.
    DESC

    def initialize(type: :train)
      valid_types = [:train, :test, :valid]
      unless valid_types.include?(type)
        valid_types_label = valid_types.collect(&:inspect).join(", ")
        message = "Type must be one of [#{valid_types_label}]: #{type.inspect}"
        raise ArgumentError, message
      end
      @type = type

      super()

      @metadata.id = "penn-treebank-#{@type}"
      @metadata.name = "Penn Treebank: #{@type}"
      @metadata.description = DESCRIPTION
      @metadata.url = "https://github.com/wojzaremba/lstm"
      @metadata.licenses = ["Apache-2.0"]
    end

    def each(&block)
      return to_enum(__method__) unless block_given?

      base_name = "ptb.#{@type}.txt"
      data_path = cache_dir_path + base_name
      base_url = "https://raw.githubusercontent.com/wojzaremba/lstm/master/data"
      download(data_path, "#{base_url}/#{base_name}")

      parse_data(data_path, &block)
    end

    private
    def parse_data(data_path)
      File.open(data_path) do |f|
        f.each_line do |line|
          line.split.each do |word|
            yield(Record.new(word.strip))
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
red-datasets-0.1.8 lib/datasets/penn-treebank.rb
red-datasets-0.1.7 lib/datasets/penn-treebank.rb
red-datasets-0.1.6 lib/datasets/penn-treebank.rb
red-datasets-0.1.5 lib/datasets/penn-treebank.rb