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: 35571cb2787705dccd7214468318607ef4f06379 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
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.
 */
#pragma once
#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"
#include "parse_args.h"