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:
authorJohn Langford <jl@hunch.net>2011-11-16 23:21:56 +0400
committerJohn Langford <jl@hunch.net>2011-11-16 23:21:56 +0400
commitdd2c60e587da1cd9097029c7f5beca7f7daeb9a5 (patch)
treea91c84111828225cc3771f56eb7df865e7983525
parentaf6dc00d3a726ab2edafdb8163cb568f798b36c5 (diff)
updated README
-rw-r--r--README32
1 files changed, 13 insertions, 19 deletions
diff --git a/README b/README
index fffa4171..e3b25bcc 100644
--- a/README
+++ b/README
@@ -2,30 +2,24 @@ This is the vowpal wabbit fast online learning code. It is Copyright
(c) 2009 Yahoo! Inc, and released for use under the BSD (revised) open
source license.
-Contributing authors are John Langford (Primary), Lihong Li, Alex
-Strehl, and Shubham Chopra, and Gordon Rios. This is the second VW
-release, and our intention is to create an open source project this
-time.
+You can download the latest version from here:
-Checked into github with clone URL:
-git://github.com/JohnLangford/vowpal_wabbit.git
+https://github.com/JohnLangford/vowpal_wabbit/archives/master
-To get the code install git -- in a clean directory:
+Alternatively, the very latest version is available here:
git clone git://github.com/JohnLangford/vowpal_wabbit.git
-Gordon created a tag for the completely stock initial distribution '2.3'
-so to check out that original release and create a branch based on it:
+You should be able to build it on posix systems with:
+make
+(make test)
+make install
-git checkout 2.3
-git checkout -b from-2.3
+If 'make' fails, you are probably missing the dependency on boost program options. Intall it and try again.
-Or, in one command:
+Be sure to read the wiki: https://github.com/JohnLangford/vowpal_wabbit/wiki
+for the tutorial, command line options, etc.
-git checkout -b from-2.3 2.3
-
-Swicegood, Travis. Pragmatic Version Control with Git. 2008. (p. 102)
-
-Alternatively, the code can be downloaded directly from github:
-
-http://github.com/gparker/vowpal_wabbit/downloads
+The 'cluster' directory has it's own documentation for cluster
+parallel use, and the examples at the end of test/Runtests give some
+example flags.