├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── AutoxgbResult.R ├── RLearner_classif_autoxgboost.R ├── RLearner_classif_xgboost.custom.R ├── RLearner_classif_xgboost.earlystop.R ├── RLearner_regr_autoxgboost.R ├── RLearner_regr_xgboost.custom.R ├── RLearner_regr_xgboost.earlystop.R ├── autoxgboost.R ├── autoxgbparset.R ├── buildFinalLearner.R ├── createDMatrixFromTask.R ├── generateCatFeatPipeline.R ├── helpers.R └── zzz.R ├── README.md ├── inst └── CITATION ├── man ├── AutoxgbResult.Rd ├── autoxgboost.Rd ├── autoxgbparset.Rd └── figures │ └── hexagon.svg ├── poster_2018.pdf ├── tests ├── testthat.R └── testthat │ ├── helper_zzz.R │ ├── test_RLearner.R │ └── test_autoxgboost.R └── todo-files ├── ImpactFeatureWrapper.R ├── createImpactFeatures.R ├── customCPOs.R ├── featureInformation.R ├── helpers_old.R └── impactEncodingParSet.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Janek Thomas 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/AutoxgbResult.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/AutoxgbResult.R -------------------------------------------------------------------------------- /R/RLearner_classif_autoxgboost.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/RLearner_classif_autoxgboost.R -------------------------------------------------------------------------------- /R/RLearner_classif_xgboost.custom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/RLearner_classif_xgboost.custom.R -------------------------------------------------------------------------------- /R/RLearner_classif_xgboost.earlystop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/RLearner_classif_xgboost.earlystop.R -------------------------------------------------------------------------------- /R/RLearner_regr_autoxgboost.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/RLearner_regr_autoxgboost.R -------------------------------------------------------------------------------- /R/RLearner_regr_xgboost.custom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/RLearner_regr_xgboost.custom.R -------------------------------------------------------------------------------- /R/RLearner_regr_xgboost.earlystop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/RLearner_regr_xgboost.earlystop.R -------------------------------------------------------------------------------- /R/autoxgboost.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/autoxgboost.R -------------------------------------------------------------------------------- /R/autoxgbparset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/autoxgbparset.R -------------------------------------------------------------------------------- /R/buildFinalLearner.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/buildFinalLearner.R -------------------------------------------------------------------------------- /R/createDMatrixFromTask.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/createDMatrixFromTask.R -------------------------------------------------------------------------------- /R/generateCatFeatPipeline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/generateCatFeatPipeline.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/README.md -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/AutoxgbResult.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/man/AutoxgbResult.Rd -------------------------------------------------------------------------------- /man/autoxgboost.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/man/autoxgboost.Rd -------------------------------------------------------------------------------- /man/autoxgbparset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/man/autoxgbparset.Rd -------------------------------------------------------------------------------- /man/figures/hexagon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/man/figures/hexagon.svg -------------------------------------------------------------------------------- /poster_2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/poster_2018.pdf -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper_zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/tests/testthat/helper_zzz.R -------------------------------------------------------------------------------- /tests/testthat/test_RLearner.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/tests/testthat/test_RLearner.R -------------------------------------------------------------------------------- /tests/testthat/test_autoxgboost.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/tests/testthat/test_autoxgboost.R -------------------------------------------------------------------------------- /todo-files/ImpactFeatureWrapper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/todo-files/ImpactFeatureWrapper.R -------------------------------------------------------------------------------- /todo-files/createImpactFeatures.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/todo-files/createImpactFeatures.R -------------------------------------------------------------------------------- /todo-files/customCPOs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/todo-files/customCPOs.R -------------------------------------------------------------------------------- /todo-files/featureInformation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/todo-files/featureInformation.R -------------------------------------------------------------------------------- /todo-files/helpers_old.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/todo-files/helpers_old.R -------------------------------------------------------------------------------- /todo-files/impactEncodingParSet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ja-thomas/autoxgboost/HEAD/todo-files/impactEncodingParSet.R --------------------------------------------------------------------------------