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:
authorJake Hofman <jhofman@gmail>2013-06-27 04:01:12 +0400
committerJake Hofman <jhofman@gmail>2013-06-27 04:01:12 +0400
commitd962dee760f5fbe709ac47b336ac18d14607a877 (patch)
tree7cfa5e89aeec67861b3479f392d98c74504d648d /vowpalwabbit/mf.h
parentd1ef6e2a559147e254935c07e4964b6825910332 (diff)
(currently broken) reduction-friendly mf
Diffstat (limited to 'vowpalwabbit/mf.h')
-rw-r--r--vowpalwabbit/mf.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/vowpalwabbit/mf.h b/vowpalwabbit/mf.h
new file mode 100644
index 00000000..f90647b5
--- /dev/null
+++ b/vowpalwabbit/mf.h
@@ -0,0 +1,18 @@
+/*
+Copyright (c) by respective owners including Yahoo!, Microsoft, and
+individual contributors. All rights reserved. Released under a BSD
+license as described in the file LICENSE.
+ */
+#ifndef MF_H
+#define MF_H
+
+#include <math.h>
+#include "example.h"
+#include "parse_regressor.h"
+#include "parser.h"
+#include "gd.h"
+
+namespace MF{
+ learner setup(vw& all, po::variables_map& vm);
+}
+#endif