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

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Rios <gparker@gmail.com>2009-04-30 03:16:59 +0400
committerGordon Rios <gparker@gmail.com>2009-04-30 03:16:59 +0400
commit89b6cd6a38264153ae425117e09ceff3d4d92b3e (patch)
tree86fd8a4de189f7fd09c414f5d82d7f583f97c792 /parse_args.h
initial check in
Diffstat (limited to 'parse_args.h')
-rw-r--r--parse_args.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/parse_args.h b/parse_args.h
new file mode 100644
index 00000000..c609e83c
--- /dev/null
+++ b/parse_args.h
@@ -0,0 +1,14 @@
+/*
+Copyright (c) 2007 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
+
+void parse_args(int argc, char *argv[], float &eta, float &eta_decay_rate, float &initial_t,
+ float &power_t, ofstream &predictions, ofstream &raw_predictions, bool &train,
+ int &numthreads, int& passes, regressor &r, example_file &e,
+ ofstream &final_regressor);
+#endif