diff options
author | Joe Zhao <ztuowen@gmail.com> | 2015-06-27 21:00:58 +0800 |
---|---|---|
committer | Joe Zhao <ztuowen@gmail.com> | 2015-06-27 21:00:58 +0800 |
commit | adda4ca85447baa0e42ff436c535573bb981be44 (patch) | |
tree | 14a16a0c22f5587b3fcc3047721029319a93c3af /README | |
parent | 60881b380b02637c27497c4508faf2345a534679 (diff) | |
download | ranksvm-adda4ca85447baa0e42ff436c535573bb981be44.tar.gz ranksvm-adda4ca85447baa0e42ff436c535573bb981be44.tar.bz2 ranksvm-adda4ca85447baa0e42ff436c535573bb981be44.zip |
readmedev
Diffstat (limited to 'README')
-rw-r--r-- | README | 21 |
1 files changed, 20 insertions, 1 deletions
@@ -21,4 +21,23 @@ How to build(Release): How to build it under windows(un-tested) 1.Install & configure: Eigen3 & boost -2.use cmake or VS
\ No newline at end of file +2.use cmake or VS + +What if I want to: +1.add a program option: + in train.cpp or split.cpp + add description to desc.add_options() + add control flow in main() +2.add a new training model: + create a new model .h file in ./model + add a .cpp + create a new class inherit from RSVM + provide member functions: string getName() + int train(RidList &D) + int predict(RidList &D,vector<double> &res) + add a new option when reading model file(RSVM::loadModel) +3.support new data format(dataProvider.h)? + currently only support .rid; almost impossible to change +4.support new data source? + checkout fileDataProvider.h + multiplex in main() |