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@nyclamp.(none)>2013-10-30 22:56:20 +0400
committerJohn Langford <jl@nyclamp.(none)>2013-10-30 22:56:20 +0400
commite97d707e051504cd8b3cfc5fb87e5a04d3ccf76c (patch)
treee5d3724a60f0eeaab0e87f8719f03d42d0af4175 /vowpalwabbit/gd_mf.cc
parentf586afa471b742d6797b32777d4e980055bbdeb7 (diff)
eliminated driver
Diffstat (limited to 'vowpalwabbit/gd_mf.cc')
-rw-r--r--vowpalwabbit/gd_mf.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vowpalwabbit/gd_mf.cc b/vowpalwabbit/gd_mf.cc
index 2114d558..c91ddcf1 100644
--- a/vowpalwabbit/gd_mf.cc
+++ b/vowpalwabbit/gd_mf.cc
@@ -295,7 +295,7 @@ void end_pass(void* d)
gdmf* data = (gdmf*)calloc(1,sizeof(gdmf));
data->all = &all;
sl_t sl = {data, save_load};
- learner l(data,LEARNER::generic_driver,learn,sl);
+ learner l(data,learn,sl);
l.set_end_pass(end_pass);
return l;
}