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:
authorHal Daume III <me@hal3.name>2014-01-08 18:48:06 +0400
committerHal Daume III <me@hal3.name>2014-01-08 18:48:06 +0400
commite22b1febf4830f7b54eb16827718515ce390d844 (patch)
tree9e9a0406e1bccbd27b0a599415bc16520ae31bd7 /vowpalwabbit/vw.h
parenta324cef09b742ef9a70c4b2216c5cce8e4eee4ff (diff)
working on ldf searn, need to fix csoaa ldf -- warning about breaking stuff :P
Diffstat (limited to 'vowpalwabbit/vw.h')
-rw-r--r--vowpalwabbit/vw.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/vowpalwabbit/vw.h b/vowpalwabbit/vw.h
index 56d1ae1d..cbae849a 100644
--- a/vowpalwabbit/vw.h
+++ b/vowpalwabbit/vw.h
@@ -58,7 +58,8 @@ namespace VW {
//notify VW that you are done with the example.
void finish_example(vw& all, example* ec);
- void copy_example_data(bool audit, example*&, example*, size_t, void(*copy_example)(void*&,void*));
+ void copy_example_data(bool audit, example*, example*, size_t, void(*copy_label)(void*&,void*));
+ void copy_example_data(bool audit, example*, example*); // don't copy the label
// after export_example, must call releaseFeatureSpace to free native memory
primitive_feature_space* export_example(vw& all, example* e, size_t& len);