├── README.md ├── README.pdf ├── data ├── input │ ├── sampleSubmission.csv │ ├── test.csv │ └── train.csv ├── log │ └── empty.log ├── output-py │ ├── ens_1level │ │ └── empty.csv │ ├── test │ │ └── empty.csv │ ├── test_raw │ │ └── empty.csv │ ├── train │ │ └── empty.csv │ └── train_raw │ │ └── empty.csv ├── output-r │ ├── test │ │ └── empty.csv │ └── train │ │ └── empty.csv ├── output-rgf │ └── empty.log └── submission │ └── empty.csv ├── otto-py ├── model.extratrees.stack.py ├── model.knn2.stack.py ├── model.knn4.stack.py ├── model.knn5.stack.py ├── model.knn6.stack.py ├── model.knn8.stack.py ├── model.linear.stack.py ├── model.nn.ens.py ├── model.nnb.stack.py ├── model.nnc.stack.py ├── model.nnd.stack.py ├── model.nne.stack.py ├── model.svc.stack.py ├── model.xgb.ens.py ├── model.xgbx.ens.py ├── model.xgbx.stack.py └── model.xgbz.stack.py ├── otto-r ├── .Rapp.history ├── 01-data.build.R ├── 02-models.build.R ├── 03-models.ens.1level.R ├── 04-models.ens.2level.R ├── model.h2o.stack.R ├── model.rgf.stack.R ├── utils.R └── utils.parallel.R └── rgf1.2 ├── BUILDLOG ├── COPYING ├── README ├── bin ├── rgf └── rgf.exe.file ├── makefile ├── proj_vc2010 └── rgf │ ├── rgf.sln │ ├── rgf.suo │ └── rgf.vcxproj ├── rgf1.2-guide.pdf ├── src ├── com │ ├── AzBmat.hpp │ ├── AzDmat.cpp │ ├── AzDmat.hpp │ ├── AzException.hpp │ ├── AzHelp.hpp │ ├── AzIntPool.cpp │ ├── AzIntPool.hpp │ ├── AzLoss.cpp │ ├── AzLoss.hpp │ ├── AzMemTempl.hpp │ ├── AzOut.hpp │ ├── AzParam.cpp │ ├── AzParam.hpp │ ├── AzPerfResult.hpp │ ├── AzPrint.hpp │ ├── AzReadOnlyMatrix.hpp │ ├── AzSmat.cpp │ ├── AzSmat.hpp │ ├── AzStrArray.hpp │ ├── AzStrPool.cpp │ ├── AzStrPool.hpp │ ├── AzSvDataS.cpp │ ├── AzSvDataS.hpp │ ├── AzSvFeatInfo.hpp │ ├── AzSvFeatInfoClone.hpp │ ├── AzTaskTools.cpp │ ├── AzTaskTools.hpp │ ├── AzTimer.hpp │ ├── AzTools.cpp │ ├── AzTools.hpp │ ├── AzUtil.cpp │ └── AzUtil.hpp └── tet │ ├── AzDataForTrTree.hpp │ ├── AzFindSplit.cpp │ ├── AzFindSplit.hpp │ ├── AzFsinfo.hpp │ ├── AzOptOnTree.cpp │ ├── AzOptOnTree.hpp │ ├── AzOptOnTree_TreeReg.cpp │ ├── AzOptOnTree_TreeReg.hpp │ ├── AzOptimizerT.hpp │ ├── AzRegDepth.hpp │ ├── AzReg_TreeReg.hpp │ ├── AzReg_TreeRegArr.hpp │ ├── AzReg_TreeRegArrImp.hpp │ ├── AzReg_TsrOpt.cpp │ ├── AzReg_TsrOpt.hpp │ ├── AzReg_TsrSib.cpp │ ├── AzReg_TsrSib.hpp │ ├── AzReg_Tsrbase.cpp │ ├── AzReg_Tsrbase.hpp │ ├── AzRgfTrainerSel.hpp │ ├── AzRgfTree.cpp │ ├── AzRgfTree.hpp │ ├── AzRgfTreeEnsImp.hpp │ ├── AzRgfTreeEnsemble.hpp │ ├── AzRgf_FindSplit.hpp │ ├── AzRgf_FindSplit_Dflt.cpp │ ├── AzRgf_FindSplit_Dflt.hpp │ ├── AzRgf_FindSplit_TreeReg.cpp │ ├── AzRgf_FindSplit_TreeReg.hpp │ ├── AzRgf_Optimizer.hpp │ ├── AzRgf_Optimizer_Dflt.cpp │ ├── AzRgf_Optimizer_Dflt.hpp │ ├── AzRgf_Optimizer_TreeReg.hpp │ ├── AzRgf_kw.hpp │ ├── AzRgforest.cpp │ ├── AzRgforest.hpp │ ├── AzRgforest_TreeReg.hpp │ ├── AzSortedFeat.cpp │ ├── AzSortedFeat.hpp │ ├── AzTET_Eval.hpp │ ├── AzTET_Eval_Dflt.hpp │ ├── AzTETmain.cpp │ ├── AzTETmain.hpp │ ├── AzTETmain_kw.hpp │ ├── AzTETproc.cpp │ ├── AzTETproc.hpp │ ├── AzTETrainer.hpp │ ├── AzTETselector.hpp │ ├── AzTE_ModelInfo.hpp │ ├── AzTrTree.cpp │ ├── AzTrTree.hpp │ ├── AzTrTreeEnsemble.hpp │ ├── AzTrTreeEnsemble_ReadOnly.hpp │ ├── AzTrTreeFeat.cpp │ ├── AzTrTreeFeat.hpp │ ├── AzTrTreeNode.hpp │ ├── AzTrTree_ReadOnly.hpp │ ├── AzTrTsplit.hpp │ ├── AzTrTtarget.hpp │ ├── AzTree.cpp │ ├── AzTree.hpp │ ├── AzTreeEnsemble.cpp │ ├── AzTreeEnsemble.hpp │ ├── AzTreeNodes.hpp │ ├── AzTreeRule.hpp │ └── driv_rgf.cpp └── test ├── call_exe.pl ├── output ├── sample.model-01 ├── sample.model-02 ├── sample.model-03 ├── sample.model-04 └── sample.model-05 └── sample ├── predict.inp ├── regress.test.x ├── regress.test.y ├── regress.train.x ├── regress.train.y ├── regress_train_test.inp ├── test.data.x ├── test.data.y ├── train.data.sparse.x ├── train.data.x ├── train.data.y ├── train.inp ├── train_predict.inp └── train_test.inp /README.md: -------------------------------------------------------------------------------- 1 | # otto_2015 2 | -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/README.pdf -------------------------------------------------------------------------------- /data/input/sampleSubmission.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/data/input/sampleSubmission.csv -------------------------------------------------------------------------------- /data/input/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/data/input/test.csv -------------------------------------------------------------------------------- /data/input/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/data/input/train.csv -------------------------------------------------------------------------------- /data/log/empty.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/output-py/ens_1level/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/output-py/test/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/output-py/test_raw/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/output-py/train/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/output-py/train_raw/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/output-r/test/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/output-r/train/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/output-rgf/empty.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/submission/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /otto-py/model.extratrees.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.extratrees.stack.py -------------------------------------------------------------------------------- /otto-py/model.knn2.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.knn2.stack.py -------------------------------------------------------------------------------- /otto-py/model.knn4.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.knn4.stack.py -------------------------------------------------------------------------------- /otto-py/model.knn5.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.knn5.stack.py -------------------------------------------------------------------------------- /otto-py/model.knn6.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.knn6.stack.py -------------------------------------------------------------------------------- /otto-py/model.knn8.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.knn8.stack.py -------------------------------------------------------------------------------- /otto-py/model.linear.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.linear.stack.py -------------------------------------------------------------------------------- /otto-py/model.nn.ens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.nn.ens.py -------------------------------------------------------------------------------- /otto-py/model.nnb.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.nnb.stack.py -------------------------------------------------------------------------------- /otto-py/model.nnc.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.nnc.stack.py -------------------------------------------------------------------------------- /otto-py/model.nnd.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.nnd.stack.py -------------------------------------------------------------------------------- /otto-py/model.nne.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.nne.stack.py -------------------------------------------------------------------------------- /otto-py/model.svc.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.svc.stack.py -------------------------------------------------------------------------------- /otto-py/model.xgb.ens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.xgb.ens.py -------------------------------------------------------------------------------- /otto-py/model.xgbx.ens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.xgbx.ens.py -------------------------------------------------------------------------------- /otto-py/model.xgbx.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.xgbx.stack.py -------------------------------------------------------------------------------- /otto-py/model.xgbz.stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-py/model.xgbz.stack.py -------------------------------------------------------------------------------- /otto-r/.Rapp.history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /otto-r/01-data.build.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-r/01-data.build.R -------------------------------------------------------------------------------- /otto-r/02-models.build.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-r/02-models.build.R -------------------------------------------------------------------------------- /otto-r/03-models.ens.1level.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-r/03-models.ens.1level.R -------------------------------------------------------------------------------- /otto-r/04-models.ens.2level.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-r/04-models.ens.2level.R -------------------------------------------------------------------------------- /otto-r/model.h2o.stack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-r/model.h2o.stack.R -------------------------------------------------------------------------------- /otto-r/model.rgf.stack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-r/model.rgf.stack.R -------------------------------------------------------------------------------- /otto-r/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-r/utils.R -------------------------------------------------------------------------------- /otto-r/utils.parallel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/otto-r/utils.parallel.R -------------------------------------------------------------------------------- /rgf1.2/BUILDLOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/BUILDLOG -------------------------------------------------------------------------------- /rgf1.2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/COPYING -------------------------------------------------------------------------------- /rgf1.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/README -------------------------------------------------------------------------------- /rgf1.2/bin/rgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/bin/rgf -------------------------------------------------------------------------------- /rgf1.2/bin/rgf.exe.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/bin/rgf.exe.file -------------------------------------------------------------------------------- /rgf1.2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/makefile -------------------------------------------------------------------------------- /rgf1.2/proj_vc2010/rgf/rgf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/proj_vc2010/rgf/rgf.sln -------------------------------------------------------------------------------- /rgf1.2/proj_vc2010/rgf/rgf.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/proj_vc2010/rgf/rgf.suo -------------------------------------------------------------------------------- /rgf1.2/proj_vc2010/rgf/rgf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/proj_vc2010/rgf/rgf.vcxproj -------------------------------------------------------------------------------- /rgf1.2/rgf1.2-guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/rgf1.2-guide.pdf -------------------------------------------------------------------------------- /rgf1.2/src/com/AzBmat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzBmat.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzDmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzDmat.cpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzDmat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzDmat.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzException.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzException.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzHelp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzHelp.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzIntPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzIntPool.cpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzIntPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzIntPool.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzLoss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzLoss.cpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzLoss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzLoss.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzMemTempl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzMemTempl.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzOut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzOut.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzParam.cpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzParam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzParam.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzPerfResult.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzPerfResult.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzPrint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzPrint.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzReadOnlyMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzReadOnlyMatrix.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzSmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzSmat.cpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzSmat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzSmat.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzStrArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzStrArray.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzStrPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzStrPool.cpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzStrPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzStrPool.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzSvDataS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzSvDataS.cpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzSvDataS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzSvDataS.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzSvFeatInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzSvFeatInfo.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzSvFeatInfoClone.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzSvFeatInfoClone.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzTaskTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzTaskTools.cpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzTaskTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzTaskTools.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzTimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzTimer.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzTools.cpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzTools.hpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzUtil.cpp -------------------------------------------------------------------------------- /rgf1.2/src/com/AzUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/com/AzUtil.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzDataForTrTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzDataForTrTree.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzFindSplit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzFindSplit.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzFindSplit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzFindSplit.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzFsinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzFsinfo.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzOptOnTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzOptOnTree.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzOptOnTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzOptOnTree.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzOptOnTree_TreeReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzOptOnTree_TreeReg.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzOptOnTree_TreeReg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzOptOnTree_TreeReg.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzOptimizerT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzOptimizerT.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRegDepth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRegDepth.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzReg_TreeReg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzReg_TreeReg.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzReg_TreeRegArr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzReg_TreeRegArr.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzReg_TreeRegArrImp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzReg_TreeRegArrImp.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzReg_TsrOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzReg_TsrOpt.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzReg_TsrOpt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzReg_TsrOpt.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzReg_TsrSib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzReg_TsrSib.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzReg_TsrSib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzReg_TsrSib.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzReg_Tsrbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzReg_Tsrbase.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzReg_Tsrbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzReg_Tsrbase.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgfTrainerSel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgfTrainerSel.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgfTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgfTree.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgfTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgfTree.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgfTreeEnsImp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgfTreeEnsImp.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgfTreeEnsemble.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgfTreeEnsemble.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgf_FindSplit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgf_FindSplit.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgf_FindSplit_Dflt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgf_FindSplit_Dflt.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgf_FindSplit_Dflt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgf_FindSplit_Dflt.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgf_FindSplit_TreeReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgf_FindSplit_TreeReg.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgf_FindSplit_TreeReg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgf_FindSplit_TreeReg.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgf_Optimizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgf_Optimizer.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgf_Optimizer_Dflt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgf_Optimizer_Dflt.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgf_Optimizer_Dflt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgf_Optimizer_Dflt.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgf_Optimizer_TreeReg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgf_Optimizer_TreeReg.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgf_kw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgf_kw.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgforest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgforest.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgforest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgforest.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzRgforest_TreeReg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzRgforest_TreeReg.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzSortedFeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzSortedFeat.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzSortedFeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzSortedFeat.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTET_Eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTET_Eval.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTET_Eval_Dflt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTET_Eval_Dflt.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTETmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTETmain.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTETmain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTETmain.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTETmain_kw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTETmain_kw.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTETproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTETproc.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTETproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTETproc.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTETrainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTETrainer.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTETselector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTETselector.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTE_ModelInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTE_ModelInfo.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTrTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTrTree.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTrTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTrTree.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTrTreeEnsemble.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTrTreeEnsemble.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTrTreeEnsemble_ReadOnly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTrTreeEnsemble_ReadOnly.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTrTreeFeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTrTreeFeat.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTrTreeFeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTrTreeFeat.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTrTreeNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTrTreeNode.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTrTree_ReadOnly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTrTree_ReadOnly.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTrTsplit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTrTsplit.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTrTtarget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTrTtarget.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTree.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTree.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTreeEnsemble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTreeEnsemble.cpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTreeEnsemble.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTreeEnsemble.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTreeNodes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTreeNodes.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/AzTreeRule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/AzTreeRule.hpp -------------------------------------------------------------------------------- /rgf1.2/src/tet/driv_rgf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/src/tet/driv_rgf.cpp -------------------------------------------------------------------------------- /rgf1.2/test/call_exe.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/call_exe.pl -------------------------------------------------------------------------------- /rgf1.2/test/output/sample.model-01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/output/sample.model-01 -------------------------------------------------------------------------------- /rgf1.2/test/output/sample.model-02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/output/sample.model-02 -------------------------------------------------------------------------------- /rgf1.2/test/output/sample.model-03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/output/sample.model-03 -------------------------------------------------------------------------------- /rgf1.2/test/output/sample.model-04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/output/sample.model-04 -------------------------------------------------------------------------------- /rgf1.2/test/output/sample.model-05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/output/sample.model-05 -------------------------------------------------------------------------------- /rgf1.2/test/sample/predict.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/predict.inp -------------------------------------------------------------------------------- /rgf1.2/test/sample/regress.test.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/regress.test.x -------------------------------------------------------------------------------- /rgf1.2/test/sample/regress.test.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/regress.test.y -------------------------------------------------------------------------------- /rgf1.2/test/sample/regress.train.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/regress.train.x -------------------------------------------------------------------------------- /rgf1.2/test/sample/regress.train.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/regress.train.y -------------------------------------------------------------------------------- /rgf1.2/test/sample/regress_train_test.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/regress_train_test.inp -------------------------------------------------------------------------------- /rgf1.2/test/sample/test.data.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/test.data.x -------------------------------------------------------------------------------- /rgf1.2/test/sample/test.data.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/test.data.y -------------------------------------------------------------------------------- /rgf1.2/test/sample/train.data.sparse.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/train.data.sparse.x -------------------------------------------------------------------------------- /rgf1.2/test/sample/train.data.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/train.data.x -------------------------------------------------------------------------------- /rgf1.2/test/sample/train.data.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/train.data.y -------------------------------------------------------------------------------- /rgf1.2/test/sample/train.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/train.inp -------------------------------------------------------------------------------- /rgf1.2/test/sample/train_predict.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/train_predict.inp -------------------------------------------------------------------------------- /rgf1.2/test/sample/train_test.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diefimov/otto_2015/HEAD/rgf1.2/test/sample/train_test.inp --------------------------------------------------------------------------------