Vowpal Wabbit
multilabel.h
Go to the documentation of this file.
1 /*
2 Copyright (c) by respective owners including Yahoo!, Microsoft, and
3 individual contributors. All rights reserved. Released under a BSD
4 license as described in the file LICENSE.
5  */
6 #pragma once
7 #include "label_parser.h"
8 
9 struct example;
10 struct vw;
11 
12 namespace MULTILABEL
13 {
14 struct labels
15 {
17 };
18 
19 void output_example(vw& all, example& ec);
21 
22 void print_update(vw& all, bool is_test, example& ec, const v_array<example*>* ec_seq);
23 } // namespace MULTILABEL
void print_update(vw &all, bool is_test, example &ec)
Definition: multilabel.cc:121
void output_example(vw &all, example &ec)
Definition: multilabel.cc:140
label_parser multilabel
Definition: multilabel.cc:118
v_array< uint32_t > label_v
Definition: multilabel.h:16