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

bfgs.h « vowpalwabbit - github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: def7863400ed9f5990e5d573fb81e333b2aef3ef (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 BFGS_H
#define BFGS_H
#include "gd.h"

namespace BFGS {

  void drive(void*);
  void finish(void*);
  void learn(void*, example* ec);
  void save_load(void* in, io_buf& model_file, bool read, bool text);
}

#endif