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

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

#include <boost/program_options.hpp>
#include <boost/program_options/parsers.hpp>
namespace po = boost::program_options;
#include "io_buf.h" // for save/load
#include "example.h" // for example definition
#include "parser.h" // for finish_example()
#include "learner.h" // for core reduction definition
#include "global_data.h" // for vw datastructure
#include "memory.h"

#endif