summaryrefslogtreecommitdiff
path: root/tf-idf
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2019-08-09 06:22:32 +0200
committerPatrick Simianer <p@simianer.de>2019-08-09 06:22:32 +0200
commitc76c33a94ba70e447f2681103e559530ae96a5f2 (patch)
tree26233f946cb4469734d613bffd91d73491fb253d /tf-idf
parent7f196f0502e3dd506b3f72033cfdf20588843d2f (diff)
parentbd84f0f2f1eb693ebdf56b92e2aae67cd785d7ce (diff)
Merge branch 'master' of ssh://github.com/pks/nlp_scripts
Diffstat (limited to 'tf-idf')
-rwxr-xr-xtf-idf4
1 files changed, 2 insertions, 2 deletions
diff --git a/tf-idf b/tf-idf
index 066548b..22c3dac 100755
--- a/tf-idf
+++ b/tf-idf
@@ -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