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/simple_label.h')
-rw-r--r--vowpalwabbit/simple_label.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vowpalwabbit/simple_label.h b/vowpalwabbit/simple_label.h
index 898df9be..a8d5d114 100644
--- a/vowpalwabbit/simple_label.h
+++ b/vowpalwabbit/simple_label.h
@@ -17,7 +17,7 @@ struct label_data {
float initial;
};
-void return_simple_example(vw& all, void*, example* ec);
+void return_simple_example(vw& all, void*, example& ec);
size_t read_cached_simple_label(shared_data* sd, void* v, io_buf& cache);
void cache_simple_label(void* v, io_buf& cache);
@@ -32,8 +32,8 @@ const label_parser simple_label = {default_simple_label, parse_simple_label,
NULL,
sizeof(label_data)};
-float query_decision(vw& all, example* ec, float k);
+float query_decision(vw& all, example& ec, float k);
bool summarize_holdout_set(vw& all, size_t& no_win_counter);
-void print_update(vw& all, example *ec);
+void print_update(vw& all, example &ec);
#endif