Welcome to mirror list, hosted at ThFree Co, Russian Federation.

csoaa.h « vowpalwabbit - github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79f5e4d2e5476891ad60a4ff48ef87b41d686912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
Copyright (c) by respective owners including Yahoo!, Microsoft, and
individual contributors. All rights reserved.  Released under a BSD
license as described in the file LICENSE.
 */
#pragma once
namespace CSOAA {
  LEARNER::base_learner* setup(vw& all, po::variables_map& vm);
}

namespace CSOAA_AND_WAP_LDF {
  LEARNER::base_learner* setup(vw& all, po::variables_map& vm);

namespace LabelDict { 
  bool ec_is_example_header(example& ec);  // example headers look like "0:-1" or just "shared"
  void add_example_namespaces_from_example(example& target, example& source);
  void del_example_namespaces_from_example(example& target, example& source);
}

}