diff options
author | Patrick Simianer <p@simianer.de> | 2019-08-09 06:22:32 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2019-08-09 06:22:32 +0200 |
commit | c76c33a94ba70e447f2681103e559530ae96a5f2 (patch) | |
tree | 26233f946cb4469734d613bffd91d73491fb253d /tf-idf | |
parent | 7f196f0502e3dd506b3f72033cfdf20588843d2f (diff) | |
parent | bd84f0f2f1eb693ebdf56b92e2aae67cd785d7ce (diff) |
Merge branch 'master' of ssh://github.com/pks/nlp_scripts
Diffstat (limited to 'tf-idf')
-rwxr-xr-x | tf-idf | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,10 +1,10 @@ #!/usr/bin/env ruby require 'zipf' -require 'trollop' +require 'optimist' def main - conf = Trollop::options do + conf = Optimist::options do opt :documents, "input files (documents)", :type => :string, :required => true opt :filter_stopwords, "filter stopwords (give file)", :type => :string, :default => nil opt :one_item_per_line, "one item per line (allow multi-word items)", :type => :bool, :default => false |