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: 45e4edf2ede4e8559c445eb712515ab7072fa4ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
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); }

namespace CSOAA_AND_WAP_LDF {
  LEARNER::base_learner* setup(vw& all);

  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);
  }
}