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:
authorJohn Langford <jl@hunch.net>2014-02-07 18:12:50 +0400
committerJohn Langford <jl@hunch.net>2014-02-07 18:12:50 +0400
commit630bd1297e7cacfd996e481264526138cedd43b1 (patch)
tree65b4dff3744060f27bdc13ef94635a064d9c67c2 /vowpalwabbit/cb.h
parente06a7349477dbe46c11ed05cf0476e825187f6eb (diff)
remove get_initial abstraction
Diffstat (limited to 'vowpalwabbit/cb.h')
-rw-r--r--vowpalwabbit/cb.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/vowpalwabbit/cb.h b/vowpalwabbit/cb.h
index 066410b1..5f1876ce 100644
--- a/vowpalwabbit/cb.h
+++ b/vowpalwabbit/cb.h
@@ -41,11 +41,10 @@ namespace CB {
void parse_label(parser* p, shared_data* sd, void* v, v_array<substring>& words);
void delete_label(void* v);
float weight(void* v);
- float initial(void* v);
void copy_label(void*&dst,void*src);
const label_parser cb_label_parser = {default_label, parse_label,
cache_label, read_cached_label,
- delete_label, weight, initial,
+ delete_label, weight,
copy_label,
sizeof(label)};