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

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHal Daume III <me@hal3.name>2012-06-30 01:58:54 +0400
committerHal Daume III <me@hal3.name>2012-06-30 01:58:54 +0400
commit990368b9f10afb3d060654d85a2843f2d42d7851 (patch)
tree36c67ed17a80b0d0b03c1df06c1080dbc02b4f45 /vowpalwabbit/wap.h
parentac3a9dd68257ae690acc7288d5f10bf48bcf4ac6 (diff)
fixed wap_ldf bugs, merged csoaa_ldf and wap_ldf into a common set to refactor and make simpler
Diffstat (limited to 'vowpalwabbit/wap.h')
-rw-r--r--vowpalwabbit/wap.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/vowpalwabbit/wap.h b/vowpalwabbit/wap.h
index e30157eb..021a5a4d 100644
--- a/vowpalwabbit/wap.h
+++ b/vowpalwabbit/wap.h
@@ -5,21 +5,10 @@
#include "parse_primitives.h"
#include "global_data.h"
#include "example.h"
-#include "oaa.h"
-#include "csoaa.h"
#include "parse_args.h"
namespace WAP {
void parse_flags(vw&, std::vector<std::string>&, po::variables_map& vm, size_t s);
}
-namespace WAP_LDF {
- typedef OAA::mc_label label;
-
- void parse_flags(vw&, std::vector<std::string>&, po::variables_map& vm, size_t s);
- void global_print_newline();
-
- const label_parser cs_label_parser = CSOAA_LDF::cs_label_parser;
-}
-
#endif