Skip to content

Commit

Permalink
small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnLangford committed Jan 2, 2015
1 parent 6688da8 commit abf03c9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion vowpalwabbit/ect.cc
Expand Up @@ -364,7 +364,7 @@ namespace ECT

base_learner* setup(vw& all)
{
new_options(all, "ECT options")
new_options(all, "Error Correcting Tournament options")
("ect", po::value<size_t>(), "Use error correcting tournament with <k> labels");
if (missing_required(all)) return NULL;
new_options(all)("error", po::value<size_t>()->default_value(0), "error in ECT");
Expand Down
2 changes: 1 addition & 1 deletion vowpalwabbit/log_multi.cc
Expand Up @@ -500,7 +500,7 @@ namespace LOG_MULTI

base_learner* setup(vw& all) //learner setup
{
new_options(all, "Log Multi options")
new_options(all, "Logarithmic Time Multiclass options")
("log_multi", po::value<size_t>(), "Use online tree for multiclass");
if (missing_required(all)) return NULL;
new_options(all)
Expand Down
2 changes: 1 addition & 1 deletion vowpalwabbit/nn.cc
Expand Up @@ -310,7 +310,7 @@ namespace NN {

base_learner* setup(vw& all)
{
new_options(all, "NN options")
new_options(all, "Neural Network options")
("nn", po::value<size_t>(), "Use sigmoidal feedforward network with <k> hidden units");
if(missing_required(all)) return NULL;
new_options(all)
Expand Down
9 changes: 0 additions & 9 deletions vowpalwabbit/oaa.cc
Expand Up @@ -62,15 +62,6 @@ namespace OAA {

void finish_example(vw& all, oaa&, example& ec) { MULTICLASS::finish_example(all, ec); }

/*{
new_options(all, "One-against-all options")
("oaa", po::value<size_t>(), "Use one-against-all multiclass learning with <k> labels");
if (missing_required(all,vm)) return NULL;
options(all)
...;
add_options(all)
}*/

LEARNER::base_learner* setup(vw& all)
{
new_options(all, "One-against-all options")
Expand Down

0 comments on commit abf03c9

Please sign in to comment.