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
AgeCommit message (Collapse)Author
2011-08-04save command added: save_filename|Jake Hofman
2011-03-21fix arm alignment bug from Jani and extra whitespace removal from sudarshanJohn Langford
2011-01-20made 29 bits correct and explicitly disabled greater.John Langford
2010-09-24optimizations for speedJohn Langford
2010-04-20deleted debian-specific and tweaked n/skip generation so it made sense. ↵John Langford
Must debug further.
2010-04-19Supports signed differences in the cache format. This uses the ↵Shravan M Narayanamurthy
ZigZagEncoding & Decoding to convert signed integers to unsigned integers and vice versa essentially using the lsb to represent sign instead of msb. While encoding the signed differences are first converted to unsigned differences & then RLEd into the cache. While decoding the unsigned differences are RL decoded from the cache and converted to signed differences. A new option to sort the features disregarding order of occurrence is provided to allow better compression. Also fixes a bug in compressed option. Currently, reading from stdin doesn't work with compressed option turned on. So we check this and bail out with an error message. This is an effect of using zlib.
2009-12-31Applied Shravan's zlib compression patchJohn Langford
2009-12-11Adding support for compression using zlib/gzipShravan M Narayanamurthy
Abstracted all direct access to opening, closing, resetting, flushing, reading & writing files of io_buf into access through a function of io_buf which have all been declared virtual. Now that these accesses have been abstracted out, adding a new type of io_buf, in this case, comp_io_buf, is pretty easy. Just public inherit io_buf and override the default definitions of these virtual functions to work with compressed files. There is a nuance in this because of the current use of multiple files. The 'files' v_array is conveniently typed to int. So in the comp_io_buf, I hold a v_array of gzFiles whose indices are stored in 'files' v_array. Have introduced a new boolean flag compressed into parse_args. The input & output io_bufs in parser are now just pointers that will point to comp_io_buf if the compressed option is chosen. This is the root cause of most of the changes involving parser::input & parser::output. Because of the design of zlib which allows gzread to read from a normal file we can read from a mix of compressed and uncompressed files(cache) without extra logic.
2009-12-07searching for strange heisenbugJohn Langford
2009-12-05debugged a bitJohn Langford
2009-12-04tweaked format for tag and labelJohn Langford
2009-12-01fixed performance bug due to unnecessary sortingJohn Langford
2009-10-18Various bugfixes for cluster supportJohn Langford
2009-09-20first compiling (but not debugged) cluster version.John Langford
2009-08-31Fixed bad input assignment bug.John Langford
2009-08-31debugging odd cluster bugJohn Langford
2009-08-31Reworked things so input and output are distinct.John Langford
2009-08-23Made binary mode sending work.John Langford
2009-08-22Merge branch 'master' into clusterJohn Langford
Conflicts: main.cc parse_example.cc vw.cc
2009-08-22NaN check on input and making it so cache file is valid for smaller cache sizes.John Langford
2009-08-17First sending core.John Langford
2009-08-01Initial release of version 3.10. I've incorporated some of theJohn Langford
Gordon's changes.