Skip to content

Commit 703b6d2

Browse files
committed
Fixing default arg.
1 parent a8ab72e commit 703b6d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/dest_train.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ int main(int argc, char **argv)
5454
TCLAP::ValueArg<float> learnArg("", "train-learn", "Learning rate of each tree.", false, 0.08f, "float", cmd);
5555

5656
TCLAP::ValueArg<int> numShapesPerImageArg("", "create-num-shapes", "Number of shapes per image to create.", false, 20, "int", cmd);
57-
TCLAP::ValueArg<int> numTransformsPerShapeArg("", "create-num-transforms", "Number of transform perturbation per shape", false, 10, "int", cmd);
57+
TCLAP::ValueArg<int> numTransformsPerShapeArg("", "create-num-transforms", "Number of transform perturbation per shape", false, 1, "int", cmd);
5858

5959
TCLAP::SwitchArg noCombinationsArg("", "create-no-combinations", "Disable linear combinations of shapes.", cmd, false);
6060

0 commit comments

Comments
 (0)