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/parse_primitives.h
parente06a7349477dbe46c11ed05cf0476e825187f6eb (diff)
remove get_initial abstraction
Diffstat (limited to 'vowpalwabbit/parse_primitives.h')
-rw-r--r--vowpalwabbit/parse_primitives.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/vowpalwabbit/parse_primitives.h b/vowpalwabbit/parse_primitives.h
index 93500047..049e2844 100644
--- a/vowpalwabbit/parse_primitives.h
+++ b/vowpalwabbit/parse_primitives.h
@@ -71,7 +71,6 @@ struct label_parser {
size_t (*read_cached_label)(shared_data*, void*, io_buf& cache);
void (*delete_label)(void*);
float (*get_weight)(void*);
- float (*get_initial)(void*);
void (*copy_label)(void*&,void*); // copy_label(dst,src) performs a DEEP copy of src into dst (dst is allocated correctly). if this function is NULL, then we assume that a memcpy of size label_size is sufficient, so you need only specify this function if your label constains, for instance, pointers (otherwise you'll get double-free errors)
size_t label_size;
};