summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Simianer <patrick@lilt.com>2021-05-21 17:47:54 +0200
committerPatrick Simianer <patrick@lilt.com>2021-05-21 17:47:54 +0200
commit53954eb5d4211c708f8b097247a5056a89026711 (patch)
treeaae85cccc53dfe94788530d8e7b2ff1f8a2b8363
parent258f273fd9144fe7de975e6e434754d4bf179588 (diff)
train-test-split: remove unused paramter
-rwxr-xr-xtrain-test-split1
1 files changed, 0 insertions, 1 deletions
diff --git a/train-test-split b/train-test-split
index aa55534..ab2f916 100755
--- a/train-test-split
+++ b/train-test-split
@@ -9,7 +9,6 @@ conf = Optimist::options do
opt :size, "one size", :type => :int, :required => true
opt :repeat, "number of repetitions", :type => :int, :default => 1
opt :prefix, "prefix for output files", :type => :string
- opt :sets, "number of sets", :type => :int, :default => 1
end
fn = conf[:foreign]
fn_ext = fn.split('.').last