├── README.md ├── data ├── adult.data.csv └── credit.data.csv ├── output ├── adult.data.stat ├── credit.out ├── credit.stat ├── stand.out └── stand.stat └── script ├── data.py ├── data.pyc ├── gbt.py ├── model.py ├── model.pyc ├── tree.py └── tree.pyc /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/README.md -------------------------------------------------------------------------------- /data/adult.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/data/adult.data.csv -------------------------------------------------------------------------------- /data/credit.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/data/credit.data.csv -------------------------------------------------------------------------------- /output/adult.data.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/output/adult.data.stat -------------------------------------------------------------------------------- /output/credit.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/output/credit.out -------------------------------------------------------------------------------- /output/credit.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/output/credit.stat -------------------------------------------------------------------------------- /output/stand.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/output/stand.out -------------------------------------------------------------------------------- /output/stand.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/output/stand.stat -------------------------------------------------------------------------------- /script/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/script/data.py -------------------------------------------------------------------------------- /script/data.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/script/data.pyc -------------------------------------------------------------------------------- /script/gbt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/script/gbt.py -------------------------------------------------------------------------------- /script/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/script/model.py -------------------------------------------------------------------------------- /script/model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/script/model.pyc -------------------------------------------------------------------------------- /script/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/script/tree.py -------------------------------------------------------------------------------- /script/tree.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluekingsong/simple-gbdt/HEAD/script/tree.pyc --------------------------------------------------------------------------------