├── .gitignore ├── LICENSE ├── README.md └── examples ├── README.md ├── otto_boost.py ├── sklearn_example.py ├── usage.py ├── xgboost-avazu.py └── xgboost-avazu.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpearmain/BayesBoost/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpearmain/BayesBoost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpearmain/BayesBoost/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpearmain/BayesBoost/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/otto_boost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpearmain/BayesBoost/HEAD/examples/otto_boost.py -------------------------------------------------------------------------------- /examples/sklearn_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpearmain/BayesBoost/HEAD/examples/sklearn_example.py -------------------------------------------------------------------------------- /examples/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpearmain/BayesBoost/HEAD/examples/usage.py -------------------------------------------------------------------------------- /examples/xgboost-avazu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpearmain/BayesBoost/HEAD/examples/xgboost-avazu.py -------------------------------------------------------------------------------- /examples/xgboost-avazu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpearmain/BayesBoost/HEAD/examples/xgboost-avazu.txt --------------------------------------------------------------------------------