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 /shard | |
parent | 7f196f0502e3dd506b3f72033cfdf20588843d2f (diff) | |
parent | bd84f0f2f1eb693ebdf56b92e2aae67cd785d7ce (diff) |
Merge branch 'master' of ssh://github.com/pks/nlp_scripts
Diffstat (limited to 'shard')
-rwxr-xr-x | shard | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ #!/usr/bin/env ruby -require 'trollop' +require 'optimist' def make_shards(input, refs, alignments, output_prefix, num_shards=2, rand=false) lc = `wc -l #{input}`.split.first.to_i @@ -67,7 +67,7 @@ def make_shards(input, refs, alignments, output_prefix, num_shards=2, rand=false return [in_fns, refs_fns] end -opts = Trollop::options do +opts = Optimist::options do opt :input, 'input', :type => :string, :required => true opt :references, 'references', :type => :string, :required => true opt :alignments, 'alignments', :type => :string, :required => true |