public
Fork of gparker/vowpal_wabbit
Description: John Langford's original release of Vowpal Wabbit -- a fast online learning algorithm
Homepage: http://hunch.net/~vw/
Clone URL: git://github.com/JohnLangford/vowpal_wabbit.git
Daniel Hsu (author)
Wed Aug 26 10:09:27 -0700 2009
JohnLangford (committer)
Wed Aug 26 13:21:04 -0700 2009
name age message
file .gitignore Thu Apr 30 18:34:46 -0700 2009 add minimal program test this is not a regress... [gparker]
file License.txt Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file Makefile Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file README Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file cache.cc Sat Aug 22 09:01:48 -0700 2009 NaN check on input and making it so cache file ... [JohnLangford]
file cache.h Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file constant.h Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file gd.cc Wed Aug 26 13:21:04 -0700 2009 Fixed pthread_cond_wait bug due to spurious wak... [Daniel Hsu]
file gd.h Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file hash.cc Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file hash.h Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file io.cc Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file io.h Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file loss_functions.cc Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file loss_functions.h Fri Jul 31 14:00:24 -0700 2009 Removed virtual destructor warning. [JohnLangford]
file main.cc Sat Aug 22 09:01:48 -0700 2009 NaN check on input and making it so cache file ... [JohnLangford]
file offset_tree.cc Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file parse_args.cc Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file parse_args.h Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file parse_example.cc Wed Aug 26 13:21:04 -0700 2009 Fixed pthread_cond_wait bug due to spurious wak... [Daniel Hsu]
file parse_example.h Wed Aug 26 13:21:04 -0700 2009 Fixed pthread_cond_wait bug due to spurious wak... [Daniel Hsu]
file parse_primitives.cc Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file parse_primitives.h Fri Jul 31 13:50:17 -0700 2009 Removed ulong. [JohnLangford]
file parse_regressor.cc Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file parse_regressor.h Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file source.cc Sat Aug 22 09:01:48 -0700 2009 NaN check on input and making it so cache file ... [JohnLangford]
file source.h Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file sparse_dense.cc Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file sparse_dense.h Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file static_data.h Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
directory test/ Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file v_array.h Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
file vw.cc Wed Aug 05 12:43:38 -0700 2009 Made saving rarer. [JohnLangford]
file vw.h Fri Jul 31 13:19:24 -0700 2009 Initial release of version 3.10. I've incorpor... [JohnLangford]
README
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.

Checked into github with clone URL:
git://github.com/gparker/vowpal_wabbit.git

To get the code install git -- in a clean directory:

git clone git://github.com/gparker/vowpal_wabbit.git

I've 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:

git checkout 2.3
git checkout -b from-2.3

Or, in one command:

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