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

parse_args.h - github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 422feb79b0a4dcc8a6c9b7e0e1b03438d31d052b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
Copyright (c) 2009 Yahoo! Inc.  All rights reserved.  The copyrights
embodied in the content of this file are licensed under the BSD
(revised) open source license
 */

#ifndef PA_H
#define PA_H

#include <boost/program_options.hpp>
namespace po = boost::program_options;
#include "gd.h"

po::variables_map parse_args(int argc, char *argv[], boost::program_options::options_description& desc,
		gd_vars& vars,
		regressor &r, parser* p,
		string &final_regressor_name);

#endif