Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gd_mf.h « vowpalwabbit - github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 81775bd64e0e4fc005c2716d6e2412ff35de1608 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 GD_MATRIX_FACTORIZATION_H
#define GD_MATRIX_FACTORIZATION_H

#include <math.h>
#include "example.h"
#include "parse_regressor.h"
#include "parser.h"
#include "gd.h"

namespace GDMF{
  LEARNER::learner* setup(vw& all, po::variables_map& vm);
}
#endif