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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/vowpalwabbit/simple_label.h b/vowpalwabbit/simple_label.h
index e3651348..898df9be 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, 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);
@@ -34,5 +34,6 @@ const label_parser simple_label = {default_simple_label, parse_simple_label,
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);
#endif