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
2010-10-19removed send_counterJohn Langford
2010-10-19fixed reset/daemon interaction bugJohn Langford
2010-09-22bug fixes from NikosJohn Langford
2010-09-21integrated Nikos bugfix & packingJohn Langford
2010-09-20fixed all known bugsJohn Langford
2010-09-18debugged delayed global update with Nikos helpJohn Langford
2010-09-08removed more printsJohn Langford
2010-09-05debugged someJohn Langford
2010-09-05finished implementing backprop, debuggingJohn Langford
2010-08-30partially implemented backpropJohn Langford
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-05Optimized network speed via allowing Nagle and fixed bugs revealed.John Langford
2009-11-25made compile on fedora 11John Langford
2009-10-20Fixed heisenbug.John Langford
2009-10-18Various bugfixes for cluster supportJohn Langford
2009-10-10Apparently working cluster parallel.John Langford
2009-10-07Debugging multisource.John Langford
2009-10-01Debugging second link.John Langford
2009-09-29Half of cluster parallel once again working.John Langford
2009-09-17Still grinding.John Langford
2009-09-15added multisourceJohn Langford