https://github.com/zhreshold/adaboost
Simple ada-boost training/testing module
https://github.com/zhreshold/adaboost
Last synced: 11 months ago
JSON representation
Simple ada-boost training/testing module
- Host: GitHub
- URL: https://github.com/zhreshold/adaboost
- Owner: zhreshold
- Created: 2013-11-13T17:52:29.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2016-12-09T23:04:08.000Z (over 9 years ago)
- Last Synced: 2025-03-18T03:46:26.016Z (about 1 year ago)
- Language: C++
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.txt
Awesome Lists containing this project
README
#ADA-BOOST
Adaptive boosting algorithm implementation in C++
## Usage
*TRAINING MODULE*
```
Usage: train.exe [options] train_file [model_file]
options:
-f fast thresholding mode: all features must be normalized to (0,1)
0 -- disable fast mode(default)
1 -- enable fast mode
-s fast mode threholding pool size: quantized threshold number(default 100)
-a accuracy: target accuracy(default 0.95)
-i iteration: maximum iteration(default 1000)
```
*TESTING MODULE*
```
Usage: test.exe test_file model_file predict_file
```