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>2013-10-27 02:11:19 +0400
committerHal Daume III <me@hal3.name>2013-10-27 02:11:19 +0400
commit22af6bf176c9d4c7436badf6335a5889be905afc (patch)
tree7ea5fc5a2ceefff1190a0be57b232d898bc87d30 /vowpalwabbit/vw.h
parenteebd084ceb5a53be106c7ce02f2219def09c24bd (diff)
imperative searn working, including snapshotting; minor bug fixes for copying auditing features, offets for history, etc.
Diffstat (limited to 'vowpalwabbit/vw.h')
-rw-r--r--vowpalwabbit/vw.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vowpalwabbit/vw.h b/vowpalwabbit/vw.h
index a3233bf6..7d09bd12 100644
--- a/vowpalwabbit/vw.h
+++ b/vowpalwabbit/vw.h
@@ -58,7 +58,7 @@ namespace VW {
//notify VW that you are done with the example.
void finish_example(vw& all, example* ec);
- void copy_example_data(example*&, example*, size_t, void(*copy_example)(void*&,void*));
+ void copy_example_data(bool audit, example*&, example*, size_t, void(*copy_example)(void*&,void*));
// after export_example, must call releaseFeatureSpace to free native memory
primitive_feature_space* export_example(vw& all, example* e, size_t& len);