Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
29658c4c
"tools/vscode:/vscode.git/clone" did not exist on "972bf3c46ba6aee1ba908b0f30e2ad702f1c3517"
Commit
29658c4c
authored
Feb 22, 2014
by
Davis King
Browse files
Minor CLI cleanup
parent
89bc5427
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
tools/mltool/src/main.cpp
tools/mltool/src/main.cpp
+2
-1
No files found.
tools/mltool/src/main.cpp
View file @
29658c4c
...
...
@@ -41,6 +41,7 @@ parse_args (command_line_parser& parser, int argc, char* argv[])
parser
.
add_option
(
"train-best"
,
"Train and save a network using best parameters"
,
1
);
parser
.
set_group_name
(
"Algorithm Specific Options"
);
// Algorithm-specific options
parser
.
add_option
(
"rbk-gamma"
,
"Width of radial basis kernels: {float}."
,
1
);
...
...
@@ -78,7 +79,7 @@ parse_args (command_line_parser& parser, int argc, char* argv[])
// Check if the -h option was given
if
(
parser
.
option
(
"h"
)
||
parser
.
option
(
"help"
))
{
std
::
cout
<<
"Usage:
dlib_test
[-a algorithm] --in input_file
\n
"
;
std
::
cout
<<
"Usage:
mltool
[-a algorithm] --in input_file
\n
"
;
parser
.
print_options
(
std
::
cout
);
std
::
cout
<<
std
::
endl
;
exit
(
0
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment