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:
authorPaulius Klyvis <paulius.klyvis@adform.com>2014-12-02 20:05:10 +0300
committerPaulius Klyvis <paulius.klyvis@adform.com>2014-12-02 20:05:10 +0300
commitea22da457db8a1d6a54edab7ba7b66933181a67f (patch)
tree85cd1db6fd6c6a0a0cf7572b9cc2d37b1012a338 /vowpalwabbit
parentb9621fd13c71fe0342c4676f48a02638b9eea27a (diff)
use save_load_online_state from gd.cc v3
Diffstat (limited to 'vowpalwabbit')
-rw-r--r--vowpalwabbit/gd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vowpalwabbit/gd.h b/vowpalwabbit/gd.h
index 86366e87..3c6b64d1 100644
--- a/vowpalwabbit/gd.h
+++ b/vowpalwabbit/gd.h
@@ -26,6 +26,7 @@ namespace GD{
void train_one_example_single_thread(regressor& r, example* ex);
LEARNER::learner* setup(vw& all, po::variables_map& vm);
void save_load_regressor(vw& all, io_buf& model_file, bool read, bool text);
+ void save_load_online_state(vw& all, io_buf& model_file, bool read, bool text);
void output_and_account_example(example* ec);
template <class R, void (*T)(R&, const float, float&)>