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@hunch.net>2014-03-27 19:03:32 +0400
committerJohn Langford <jl@hunch.net>2014-03-27 19:03:32 +0400
commit05f7e5110a7b038e056d794a9edc710d64090f7b (patch)
treed95df9828f545598fa0b7ddadc7857d49f95606a /vowpalwabbit/mf.cc
parentd639c86415e89d5df6f9df409e8bec4bb7570662 (diff)
more minor refactoring
Diffstat (limited to 'vowpalwabbit/mf.cc')
-rw-r--r--vowpalwabbit/mf.cc17
1 files changed, 2 insertions, 15 deletions
diff --git a/vowpalwabbit/mf.cc b/vowpalwabbit/mf.cc
index d0236ed0..d5cf542b 100644
--- a/vowpalwabbit/mf.cc
+++ b/vowpalwabbit/mf.cc
@@ -3,28 +3,15 @@
individual contributors. All rights reserved. Released under a BSD (revised)
license as described in the file LICENSE.
*/
-#include <fstream>
-#include <float.h>
#ifdef _WIN32
#include <winsock2.h>
#else
#include <netdb.h>
#endif
-#include <string.h>
-#include <stdio.h>
-#include <map>
-#include "parse_example.h"
-#include "constant.h"
-#include "sparse_dense.h"
-#include "gd.h"
-#include "cache.h"
+#include "reductions.h"
#include "simple_label.h"
+#include "gd.h"
#include "rand48.h"
-#include "vw.h"
-#include <algorithm>
-#include "hash.h"
-#include <sstream>
-#include "parse_primitives.h"
using namespace std;