class Rlid::NGrams3000

Public Class Methods

filename() click to toggle source
# File lib/rlid/models/ordered_ngrams.rb, line 84
def self.filename
  return "3grams3000"
end
new(string) click to toggle source
Calls superclass method Rlid::OrderedNGrams::new
# File lib/rlid/models/ordered_ngrams.rb, line 81
def initialize(string)
  super(string, 3000)
end