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:
Diffstat (limited to 'vowpalwabbit/csoaa.h')
-rw-r--r--vowpalwabbit/csoaa.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vowpalwabbit/csoaa.h b/vowpalwabbit/csoaa.h
index 4978ec46..a3ecebba 100644
--- a/vowpalwabbit/csoaa.h
+++ b/vowpalwabbit/csoaa.h
@@ -30,7 +30,7 @@ namespace CSOAA {
LEARNER::learner* setup(vw& all, std::vector<std::string>&, po::variables_map& vm, po::variables_map& vm_file);
- void output_example(vw& all, example* ec);
+ void output_example(vw& all, example& ec);
size_t read_cached_label(shared_data* sd, void* v, io_buf& cache);
void cache_label(void* v, io_buf& cache);
void default_label(void* v);
@@ -45,7 +45,7 @@ namespace CSOAA {
copy_label,
sizeof(label)};
- bool example_is_test(example* ec);
+ bool example_is_test(example& ec);
}
namespace CSOAA_AND_WAP_LDF {
@@ -53,7 +53,7 @@ namespace CSOAA_AND_WAP_LDF {
LEARNER::learner* setup(vw& all, std::vector<std::string>&, po::variables_map& vm, po::variables_map& vm_file);
void global_print_newline(vw& all);
- void output_example(vw& all, example* ec, bool&hit_loss);
+ void output_example(vw& all, example& ec, bool& hit_loss);
const label_parser cs_label_parser = CSOAA::cs_label_parser;
}