Some time ago, I reviewed and tested a few auto ML frameworks and concepts.
Quite recently, a first version of FLAML - Fast and Lightweight AutoML was released publicly though the first paper is from November 2019 and a second paper is originates from May 2020 or so.


Contents


Introduction

FLAML was designed specifically to be CPU cost effective.

For example, given one CPU hour, when tested on a recent large-scale AutoML bench-mark (Gijsbers et al., 2019), the state-of-the-art solutions underperform a tuned random forest baseline on 36-51% of the tasks. And the ratio is higher when the budget is smaller.

Gijsbers et al. (2019) can be found here.

Interesting, the authors state that their customers prefer single learners over ensembles. I wonder if random forests and XGBoost etc. is counted as a single learner or as an ensemble ;).

They main concept used in FLAM is a so called Estimated cost for improvement (ECI) which should predict the cost of finding something better performing.

It seems like FLAML outperforms e.g. auto-sklearn and TPOT by quite a margin in most cases (figure 5 in the paper). Therefore, let’s have a look at it.

Installation

The installation is straight forward. Either you build it yourself or use pip

pip install flaml

setup.py states a few interesting dependencies:

install_requires = [
    "NumPy>=1.16.2",
    "lightgbm>=2.3.1",
    "xgboost>=0.90",
    "scipy>=1.4.1",
    "catboost>=0.23",
    "scikit-learn>=0.23",
]

NB!: version 0.1.3 is the current version released. Therefore, don’t expect a fully functional framework that contains everything you ever wished for.

Structure

The structure of FLAML can be obtained easily using pyreverse.

Packages:

flaml structure: packages

Classes:

flaml structure: classes

Standard Examples

These are slightly modified examples of the examples provided in the README.md. However, proper train-test splitting is used in the examples below. Run times are limited to 300 seconds.

NB!: unlike auto-sklearn, FLAML seems to utilize n_jobs=-1 similar to TPOT. However, I’m not sure if this is used by the estimator used or FLAML itself (haven’t read the source code yet).

Iris

We can simply run a slightly modified version of the example provided:

automl = AutoML()
# Provide configurations.
automl_settings = {
    "time_budget": 300,  # in seconds
    "metric": 'accuracy',
    "task": 'classification',
    "log_file_name": "./iris.log",
}
X, y = load_iris(return_X_y=True)
X_train, X_test, y_train, y_test = \
    sklearn.model_selection.train_test_split(X, y, random_state=1)

# Train with labeled input data.
automl.fit(X_train=X_train, y_train=y_train,
                        **automl_settings)
# Predict
y_pred = automl.predict(X_test)

NB!: the default log file example test/iris.log will crash because FLAML will not create the subfolder test automatically.

When running this pipeline, it will provide some verbose output:

[flaml.automl: 12-27 15:08:38] {660} INFO - List of ML learners in AutoML Run: ['lgbm', 'rf', 'catboost', 'xgboost', 'extra_tree', 'lrl1']
[flaml.automl: 12-27 15:08:38] {665} INFO - Evaluation method: cv
[flaml.automl: 12-27 15:08:38] {683} INFO - Minimizing error metric: 1-accuracy
[flaml.automl: 12-27 15:08:38] {327} INFO - Using StratifiedKFold
...
...
...

The best model can be displayed as follows:

print(automl.model)
XGBClassifier(base_score=0.5, booster='gbtree', colsample_bylevel=0.6,
              colsample_bynode=1, colsample_bytree=0.7, gamma=0, gpu_id=-1,
              grow_policy='lossguide', importance_type='gain',
              interaction_constraints='', learning_rate=0.2808682393870288,
              max_delta_step=0, max_depth=0, max_leaves=17,
              min_child_weight=4.365720617683898, missing=nan,
              monotone_constraints='()', n_estimators=4, n_jobs=-1,
              num_parallel_tree=1, objective='multi:softprob', random_state=0,
              reg_alpha=1.414922432297792e-10, reg_lambda=0.3737808799890258,
              scale_pos_weight=None, subsample=0.6, tree_method='hist',
              validate_parameters=1, verbosity=0)

However, we also wrote a detailed log file called ./iris.log. We can display it as follows using the log file parser provided.

time_history, best_valid_loss_history, valid_loss_history, config_history, train_loss_history = \
    get_output_from_log(filename = "./iris.log", time_budget = 300)
for config in config_history:
    print(config)

This yields

{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4, 'max_leaves': 4, 'min_child_weight': 20, 'learning_rate': 0.1, 'subsample': 1.0, 'log_max_bin': 8, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 4, 'max_leaves': 4, 'min_child_weight': 20, 'learning_rate': 0.1, 'subsample': 1.0, 'log_max_bin': 8, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 7.894981155455872, 'learning_rate': 0.10256417385025636, 'subsample': 1.0, 'log_max_bin': 9.851426356535264, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 7.894981155455872, 'learning_rate': 0.10256417385025636, 'subsample': 1.0, 'log_max_bin': 9.851426356535264, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.998084785585089, 'min_child_weight': 20.0, 'learning_rate': 0.07705018455324941, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 7.894981155455872, 'learning_rate': 0.10256417385025636, 'subsample': 1.0, 'log_max_bin': 9.851426356535264, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.308911454665785, 'max_leaves': 4.0, 'min_child_weight': 2.70081171673294, 'learning_rate': 0.1365267301899276, 'subsample': 0.6, 'log_max_bin': 3.8397037351278778, 'reg_alpha': 2.538955758238087e-10, 'reg_lambda': 0.493467372705641, 'colsample_bytree': 0.8004136541579197}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 7.894981155455872, 'learning_rate': 0.10256417385025636, 'subsample': 1.0, 'log_max_bin': 9.851426356535264, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4, 'max_leaves': 4, 'min_child_weight': 20.0, 'learning_rate': 0.1, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 7.894981155455872, 'learning_rate': 0.10256417385025636, 'subsample': 1.0, 'log_max_bin': 9.851426356535264, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4, 'criterion': 1, 'max_features': 1.0}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 4, 'criterion': 1, 'max_features': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4, 'criterion': 1, 'max_features': 1.0}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 4, 'criterion': 1, 'max_features': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.958916697114618, 'min_child_weight': 4.957943091638631, 'learning_rate': 0.06460502403471573, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.982736695930078, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.958916697114618, 'min_child_weight': 4.957943091638631, 'learning_rate': 0.06460502403471573, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.982736695930078, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 13.921226863709666, 'learning_rate': 0.06609868172609984, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.9370404180594524, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.958916697114618, 'min_child_weight': 4.957943091638631, 'learning_rate': 0.06460502403471573, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.982736695930078, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.935737100020023, 'max_leaves': 6.414024752398033, 'min_child_weight': 1.7657351568636774, 'learning_rate': 0.06314511910875402, 'subsample': 0.6961726473099935, 'reg_alpha': 1.6492229808468353e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6319597161112644, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 5.935737100020023, 'max_leaves': 6.414024752398033, 'min_child_weight': 1.7657351568636774, 'learning_rate': 0.06314511910875402, 'subsample': 0.6961726473099935, 'reg_alpha': 1.6492229808468353e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6319597161112644, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.266793609254558, 'min_child_weight': 2.936669759131059, 'learning_rate': 0.04356149059521255, 'subsample': 0.6, 'reg_alpha': 1.8849967981583014e-10, 'reg_lambda': 0.4599744160312808, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.266793609254558, 'min_child_weight': 2.936669759131059, 'learning_rate': 0.04356149059521255, 'subsample': 0.6, 'reg_alpha': 1.8849967981583014e-10, 'reg_lambda': 0.4599744160312808, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.856558335755294, 'max_leaves': 4.0, 'min_child_weight': 5.398511133455855, 'learning_rate': 0.6460450655226637, 'subsample': 0.6603060260736631, 'log_max_bin': 9.90518202836897, 'reg_alpha': 1.926404484764305e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8092124113108985}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.266793609254558, 'min_child_weight': 2.936669759131059, 'learning_rate': 0.04356149059521255, 'subsample': 0.6, 'reg_alpha': 1.8849967981583014e-10, 'reg_lambda': 0.4599744160312808, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.557336614081197, 'max_leaves': 7.470355714483524, 'min_child_weight': 4.890377172408786, 'learning_rate': 0.08604582873385896, 'subsample': 1.0, 'reg_alpha': 1.2583999796070395e-10, 'reg_lambda': 0.730614154963662, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.266793609254558, 'min_child_weight': 2.936669759131059, 'learning_rate': 0.04356149059521255, 'subsample': 0.6, 'reg_alpha': 1.8849967981583014e-10, 'reg_lambda': 0.4599744160312808, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.495230893761812, 'min_child_weight': 1.7634691497521147, 'learning_rate': 0.022053404456665843, 'subsample': 0.6, 'reg_alpha': 2.823595825372319e-10, 'reg_lambda': 0.28958713975893446, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.266793609254558, 'min_child_weight': 2.936669759131059, 'learning_rate': 0.04356149059521255, 'subsample': 0.6, 'reg_alpha': 1.8849967981583014e-10, 'reg_lambda': 0.4599744160312808, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.830856115548636, 'min_child_weight': 11.498508771394107, 'learning_rate': 0.1722526657834541, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.7978079799409172, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.266793609254558, 'min_child_weight': 2.936669759131059, 'learning_rate': 0.04356149059521255, 'subsample': 0.6, 'reg_alpha': 1.8849967981583014e-10, 'reg_lambda': 0.4599744160312808, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.957708500677522, 'max_leaves': 4.0, 'min_child_weight': 2.534582791339937, 'learning_rate': 1.0, 'subsample': 0.9075270064094437, 'log_max_bin': 9.722081304599483, 'reg_alpha': 4.727599400427505e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.266793609254558, 'min_child_weight': 2.936669759131059, 'learning_rate': 0.04356149059521255, 'subsample': 0.6, 'reg_alpha': 1.8849967981583014e-10, 'reg_lambda': 0.4599744160312808, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.541296490191744, 'max_leaves': 17.61363372554154, 'min_child_weight': 2.358789817981401, 'learning_rate': 0.04209950712370813, 'subsample': 0.6848427347473781, 'reg_alpha': 1.0996693553769307e-10, 'reg_lambda': 0.195032188243214, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.266793609254558, 'min_child_weight': 2.936669759131059, 'learning_rate': 0.04356149059521255, 'subsample': 0.6, 'reg_alpha': 1.8849967981583014e-10, 'reg_lambda': 0.4599744160312808, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.875397384470188, 'min_child_weight': 3.656124512855122, 'learning_rate': 0.04507424415446814, 'subsample': 0.6, 'reg_alpha': 3.2311648148539366e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9751372929220349}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.266793609254558, 'min_child_weight': 2.936669759131059, 'learning_rate': 0.04356149059521255, 'subsample': 0.6, 'reg_alpha': 1.8849967981583014e-10, 'reg_lambda': 0.4599744160312808, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 3.021257064703339, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 2.897190962007109e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.266793609254558, 'min_child_weight': 2.936669759131059, 'learning_rate': 0.04356149059521255, 'subsample': 0.6, 'reg_alpha': 1.8849967981583014e-10, 'reg_lambda': 0.4599744160312808, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.358338739983031, 'max_leaves': 16.12229229975558, 'min_child_weight': 9.646290214271621, 'learning_rate': 0.3535468502371456, 'subsample': 0.6, 'log_max_bin': 4.620503043732852, 'reg_alpha': 1.2809077094279992e-10, 'reg_lambda': 0.8629615914992687, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.266793609254558, 'min_child_weight': 2.936669759131059, 'learning_rate': 0.04356149059521255, 'subsample': 0.6, 'reg_alpha': 1.8849967981583014e-10, 'reg_lambda': 0.4599744160312808, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 3.5336782860296285, 'learning_rate': 0.4742731454632868, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 2.412822441928966e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.266793609254558, 'min_child_weight': 2.936669759131059, 'learning_rate': 0.04356149059521255, 'subsample': 0.6, 'reg_alpha': 1.8849967981583014e-10, 'reg_lambda': 0.4599744160312808, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.66580558862549, 'min_child_weight': 1.3116979990351345, 'learning_rate': 0.04603378213465901, 'subsample': 1.0, 'reg_alpha': 3.6803607028785024e-10, 'reg_lambda': 0.3887028812104125, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.599438013764696, 'max_leaves': 44.8378507232909, 'min_child_weight': 16.14129472183094, 'learning_rate': 0.04587462617894714, 'subsample': 0.6, 'reg_alpha': 3.1692601851078286e-10, 'reg_lambda': 0.3148307896391685, 'colsample_bylevel': 0.9165300924556793, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.63773551626054, 'max_leaves': 19.653964735531055, 'min_child_weight': 2.8154844658279736, 'learning_rate': 0.08787171756489343, 'subsample': 1.0, 'reg_alpha': 2.7704207935952343e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8532286869288488}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 49.42759233847697, 'min_child_weight': 7.520021596793163, 'learning_rate': 0.024032562530384383, 'subsample': 0.6583603685209679, 'reg_alpha': 4.2101982014550405e-10, 'reg_lambda': 0.11450300937708519, 'colsample_bylevel': 0.8197974960379285, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.11339944929688, 'max_leaves': 26.332333423753916, 'min_child_weight': 16.892955008172947, 'learning_rate': 0.07280428842733677, 'subsample': 1.0, 'reg_alpha': 9.943426507322622e-10, 'reg_lambda': 0.1695919472030623, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9694597475961861}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 36.89183716268403, 'min_child_weight': 1.253333355722465, 'learning_rate': 0.029006293346830362, 'subsample': 0.923268128425571, 'reg_alpha': 1.1730383519080254e-10, 'reg_lambda': 0.721588713643146, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.868601713411024, 'min_child_weight': 2.036916107815257, 'learning_rate': 0.14875637565757832, 'subsample': 1.0, 'reg_alpha': 9.084031717742059e-10, 'reg_lambda': 0.29289139059816405, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.8669915894407465, 'max_leaves': 51.48490447451473, 'min_child_weight': 10.394391750954878, 'learning_rate': 0.014196248985600997, 'subsample': 0.8011766354340686, 'reg_alpha': 1.2840136411773262e-10, 'reg_lambda': 0.4178191608041796, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.087551740185147, 'max_leaves': 9.700821790842273, 'min_child_weight': 2.541053663173045, 'learning_rate': 0.1115354510780395, 'subsample': 0.8710114941360737, 'reg_alpha': 1.700126593707729e-10, 'reg_lambda': 0.4524932283792394, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 100.14081051356841, 'min_child_weight': 8.332175071825777, 'learning_rate': 0.018933733863262883, 'subsample': 1.0, 'reg_alpha': 6.860677719904825e-10, 'reg_lambda': 0.27044743954473005, 'colsample_bylevel': 0.7683043167685761, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.034384605874077, 'max_leaves': 16.8955784322063, 'min_child_weight': 15.871118861335734, 'learning_rate': 0.029521036410307244, 'subsample': 1.0, 'reg_alpha': 5.806183489643591e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9253313062574632}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.438633624126049, 'max_leaves': 57.49718251319883, 'min_child_weight': 1.334027183177438, 'learning_rate': 0.07153483765540326, 'subsample': 0.8272036565472958, 'reg_alpha': 2.0088963194623888e-10, 'reg_lambda': 0.1128407980756352, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.051980519569126, 'max_leaves': 76.89475638107709, 'min_child_weight': 5.608560879673948, 'learning_rate': 0.015088873829336057, 'subsample': 0.6, 'reg_alpha': 3.14860768496388e-10, 'reg_lambda': 0.3267539509470428, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.419358651357332, 'max_leaves': 12.633477268180716, 'min_child_weight': 3.7750332826364685, 'learning_rate': 0.13995627313980263, 'subsample': 1.0, 'reg_alpha': 3.704501103192254e-10, 'reg_lambda': 0.374519220568897, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.919258064075809, 'max_leaves': 20.867816813437948, 'min_child_weight': 5.9153677790002135, 'learning_rate': 0.0444033678250686, 'subsample': 0.704301168789443, 'reg_alpha': 6.444582480723625e-10, 'reg_lambda': 0.06895371177617438, 'colsample_bylevel': 0.911197542210344, 'colsample_bytree': 0.8072206053543889}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 46.552457569833656, 'min_child_weight': 3.579237129367549, 'learning_rate': 0.04755906253215185, 'subsample': 1.0, 'reg_alpha': 1.8098954707083858e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.120731325573002, 'criterion': 1.1509704974177115, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.378552483450079, 'max_leaves': 32.04190166517917, 'min_child_weight': 4.216384371926717, 'learning_rate': 0.03263509177571889, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.6452488525669419, 'colsample_bylevel': 0.8188098083173937, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 30.318055617726692, 'min_child_weight': 5.021483366040237, 'learning_rate': 0.06470895076819677, 'subsample': 0.6, 'reg_alpha': 1.2584660526148967e-09, 'reg_lambda': 0.18965649383126662, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 71.91768521706706, 'min_child_weight': 4.434036965073846, 'learning_rate': 0.03346507991523198, 'subsample': 0.6, 'reg_alpha': 4.1830037938777564e-10, 'reg_lambda': 0.978203023064366, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.186722260590664, 'max_leaves': 13.507778425439275, 'min_child_weight': 4.774994921159709, 'learning_rate': 0.06310406406856889, 'subsample': 1.0, 'reg_alpha': 2.7884317627298735e-10, 'reg_lambda': 0.12510249114047334, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.623950360176486, 'max_leaves': 35.3083973846074, 'min_child_weight': 14.358616967918511, 'learning_rate': 0.0914216261786025, 'subsample': 0.8735170903141873, 'reg_alpha': 6.502468518333043e-10, 'reg_lambda': 0.47490410023646357, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.5132327927784, 'min_child_weight': 1.4745503717919206, 'learning_rate': 0.023099376321582495, 'subsample': 1.0, 'reg_alpha': 1.7937834853921692e-10, 'reg_lambda': 0.2576849409503118, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.59565998923837, 'max_leaves': 49.17941419523343, 'min_child_weight': 1.713334613363947, 'learning_rate': 0.03271491431324249, 'subsample': 0.9900955679411655, 'reg_alpha': 4.741597027649554e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7175808311801616, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.753146162460517, 'min_child_weight': 12.357483367999027, 'learning_rate': 0.06455106459428384, 'subsample': 0.978872553143787, 'reg_alpha': 2.459935033376349e-10, 'reg_lambda': 0.1204738424541725, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.87789355086909, 'max_leaves': 30.649724715437493, 'min_child_weight': 4.151415687522732, 'learning_rate': 0.010681494782064798, 'subsample': 0.8164276888477597, 'reg_alpha': 1.520949471749627e-10, 'reg_lambda': 0.13491980926944372, 'colsample_bylevel': 0.6930370467144499, 'colsample_bytree': 0.8769807288310857}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.695167437942352, 'min_child_weight': 5.100068406085408, 'learning_rate': 0.19770477729170005, 'subsample': 1.0, 'reg_alpha': 7.668907389178798e-10, 'reg_lambda': 0.9070249631179207, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 78.36052980827309, 'min_child_weight': 3.1719441253436793, 'learning_rate': 0.17246535770215624, 'subsample': 1.0, 'reg_alpha': 1.4683755317413518e-10, 'reg_lambda': 0.5210731829981157, 'colsample_bylevel': 0.6832151209624012, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.245232695065232, 'max_leaves': 12.397161672585687, 'min_child_weight': 6.674929680915481, 'learning_rate': 0.01224467670010332, 'subsample': 0.8589295627235934, 'reg_alpha': 7.943486111237427e-10, 'reg_lambda': 0.23485306674655068, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.962659099546197, 'max_leaves': 22.38584238850297, 'min_child_weight': 5.081975039705214, 'learning_rate': 0.0316359729833515, 'subsample': 1.0, 'reg_alpha': 2.3303414078175176e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 43.39564890716609, 'min_child_weight': 4.166195981491903, 'learning_rate': 0.06675257145218537, 'subsample': 0.6909312980981271, 'reg_alpha': 5.005284034064453e-10, 'reg_lambda': 0.10346926659520521, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9010945983905038}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 36.33780883719191, 'min_child_weight': 4.404852433724241, 'learning_rate': 0.05127154283102103, 'subsample': 0.8049908988080207, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.915159176776105, 'max_leaves': 26.73381218815676, 'min_child_weight': 4.806631846815573, 'learning_rate': 0.04118819973860581, 'subsample': 1.0, 'reg_alpha': 1.5893157558083363e-09, 'reg_lambda': 0.11408483397970078, 'colsample_bylevel': 0.9910581454897587, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.476590798233886, 'max_leaves': 38.54104773924974, 'min_child_weight': 3.304699118835353, 'learning_rate': 0.04391322260003346, 'subsample': 0.6, 'reg_alpha': 2.638671223370878e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9176719891132065, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.205546132398474, 'min_child_weight': 6.406787192149483, 'learning_rate': 0.04808990144642602, 'subsample': 1.0, 'reg_alpha': 4.420414540151623e-10, 'reg_lambda': 0.10104353727086793, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.7955272555908355, 'max_leaves': 31.223719447509865, 'min_child_weight': 1.1958687071794738, 'learning_rate': 0.03333248598758954, 'subsample': 0.6, 'reg_alpha': 2.4990319459493126e-10, 'reg_lambda': 0.47633019258145737, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.11250594009887, 'min_child_weight': 17.704706094700487, 'learning_rate': 0.06335508692081482, 'subsample': 1.0, 'reg_alpha': 4.667415581211174e-10, 'reg_lambda': 0.2569134540124004, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.43002395961039, 'min_child_weight': 20.0, 'learning_rate': 0.0562872440902587, 'subsample': 0.7597586822420421, 'reg_alpha': 3.7652457127366163e-10, 'reg_lambda': 0.5182835713691496, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.036494985339973, 'max_leaves': 35.41550522205338, 'min_child_weight': 0.8175772872161706, 'learning_rate': 0.037517959551266265, 'subsample': 1.0, 'reg_alpha': 3.097811280419938e-10, 'reg_lambda': 0.23611714086019434, 'colsample_bylevel': 0.8548282557248337, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.215000267447734, 'criterion': 1.0, 'max_features': 0.9653369853029371}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.00497717562261, 'min_child_weight': 12.480724763632383, 'learning_rate': 0.03172298850735085, 'subsample': 1.0, 'reg_alpha': 1.9296111240597204e-10, 'reg_lambda': 0.350394413408028, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.595131470420731, 'max_leaves': 40.468614057635946, 'min_child_weight': 1.6964162249741006, 'learning_rate': 0.06656947048167403, 'subsample': 0.6, 'reg_alpha': 6.04475196946849e-10, 'reg_lambda': 0.3492511020259614, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9266163398790279}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.552637167337384, 'max_leaves': 51.78703223897176, 'min_child_weight': 8.049654766088358, 'learning_rate': 0.07142194724027406, 'subsample': 1.0, 'reg_alpha': 7.464825766138259e-10, 'reg_lambda': 0.23551327721773269, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.758521482750243, 'min_child_weight': 2.63023751995647, 'learning_rate': 0.029567697726389702, 'subsample': 0.9596910466589178, 'reg_alpha': 1.5625308624587482e-10, 'reg_lambda': 0.519612467170407, 'colsample_bylevel': 0.8206105131600748, 'colsample_bytree': 0.8141008223697909}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.531102151242745, 'max_leaves': 53.245634674698394, 'min_child_weight': 2.3713480712090194, 'learning_rate': 0.06644627215748215, 'subsample': 1.0, 'reg_alpha': 1.8180373239681686e-10, 'reg_lambda': 0.22481882691526883, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.244653532963717, 'min_child_weight': 8.92846741712925, 'learning_rate': 0.03178180623926515, 'subsample': 0.6, 'reg_alpha': 6.415721222383729e-10, 'reg_lambda': 0.5443300132182248, 'colsample_bylevel': 0.6299178655281356, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.456185150159166, 'max_leaves': 26.039312195704778, 'min_child_weight': 1.7594956057964373, 'learning_rate': 0.08364872337514365, 'subsample': 1.0, 'reg_alpha': 4.051129772354656e-10, 'reg_lambda': 0.2825645478513348, 'colsample_bylevel': 0.6937401778521674, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 37.30698220757433, 'min_child_weight': 12.033280400764781, 'learning_rate': 0.025245843114183097, 'subsample': 0.6, 'reg_alpha': 2.879201925859011e-10, 'reg_lambda': 0.43308913293283824, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7246173902045973}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.774489542811107, 'min_child_weight': 2.0424933264854457, 'learning_rate': 0.048241508925995776, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.2846329136142394, 'colsample_bylevel': 0.6326751289722282, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.0154215904351975, 'max_leaves': 76.04594716109949, 'min_child_weight': 10.366008894087267, 'learning_rate': 0.04377521752626204, 'subsample': 0.6, 'reg_alpha': 1.315493148999502e-09, 'reg_lambda': 0.4299419679635108, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.845504369134742, 'criterion': 1.234094394470851, 'max_features': 0.41281542578002944}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 29.450596500598465, 'criterion': 1.0734455094044788, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.689763996297819, 'criterion': 1.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 1.5977755012408774, 'max_features': 0.5006880730577074}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 1.835760699035599, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.627726289728487, 'criterion': 1.0, 'max_features': 0.6556413977088912}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.465462683074316, 'max_leaves': 20.18251882280286, 'min_child_weight': 11.660372431085282, 'learning_rate': 0.05167410420249107, 'subsample': 0.7370876596119428, 'reg_alpha': 4.08852911815605e-10, 'reg_lambda': 0.22121111176171057, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 48.133147567540384, 'min_child_weight': 1.8157656724598634, 'learning_rate': 0.04086732764162312, 'subsample': 1.0, 'reg_alpha': 2.8528647602560896e-10, 'reg_lambda': 0.5532074498966288, 'colsample_bylevel': 0.6551538418685402, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.9661539979157885, 'max_leaves': 43.14420153159819, 'min_child_weight': 5.999342758249614, 'learning_rate': 0.07103495389567678, 'subsample': 1.0, 'reg_alpha': 3.4707740652066524e-10, 'reg_lambda': 0.14892544587430673, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 22.516308618463057, 'min_child_weight': 3.5291372474673164, 'learning_rate': 0.02972878042733693, 'subsample': 0.6, 'reg_alpha': 3.360639564354304e-10, 'reg_lambda': 0.8217241473279139, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9768615016326395}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.331578937976178, 'max_leaves': 18.444487813568294, 'min_child_weight': 6.4922632338006645, 'learning_rate': 0.08920514498236387, 'subsample': 1.0, 'reg_alpha': 4.0812672929957135e-10, 'reg_lambda': 0.22078098009590727, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 52.66875212810227, 'min_child_weight': 3.2611900081672034, 'learning_rate': 0.023673326773338943, 'subsample': 0.6, 'reg_alpha': 2.8579408808842626e-10, 'reg_lambda': 0.5542852240864865, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.06915286337036, 'min_child_weight': 5.792218321738386, 'learning_rate': 0.03179938207542461, 'subsample': 0.6210593851958858, 'reg_alpha': 7.425215922666536e-10, 'reg_lambda': 0.6730592243101906, 'colsample_bylevel': 0.7414954291230912, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.136328795354416, 'max_leaves': 80.49016925876855, 'min_child_weight': 3.6553359718850573, 'learning_rate': 0.06640954663904043, 'subsample': 1.0, 'reg_alpha': 1.570866189475003e-10, 'reg_lambda': 0.18182001019585642, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.72949921856473, 'min_child_weight': 2.3810065890552794, 'learning_rate': 0.07117190967938637, 'subsample': 0.6, 'reg_alpha': 1.2196099428823166e-10, 'reg_lambda': 0.18153192896288817, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.681816488350936, 'max_leaves': 65.95255835705805, 'min_child_weight': 8.892249221730507, 'learning_rate': 0.029671573469697357, 'subsample': 1.0, 'reg_alpha': 9.56373036358051e-10, 'reg_lambda': 0.6741273324513187, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.056577501696192, 'max_leaves': 33.1884677683878, 'min_child_weight': 1.2090328758746332, 'learning_rate': 0.028595762112490018, 'subsample': 1.0, 'reg_alpha': 3.509192376709348e-10, 'reg_lambda': 0.6252104120777169, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 29.270653998312664, 'min_child_weight': 17.511934051541402, 'learning_rate': 0.0738494934572209, 'subsample': 0.6, 'reg_alpha': 3.323847595213896e-10, 'reg_lambda': 0.195735119989144, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.195941019400988, 'max_leaves': 112.0, 'min_child_weight': 2.8993894597528445, 'learning_rate': 0.023967110176648605, 'subsample': 0.8478535341356133, 'reg_alpha': 5.777632471381964e-10, 'reg_lambda': 0.2061622587383284, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.118305915385665, 'min_child_weight': 7.302400826919903, 'learning_rate': 0.0881116885375738, 'subsample': 1.0, 'reg_alpha': 2.0188235752694666e-10, 'reg_lambda': 0.5935889322100387, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.118934238501381, 'max_leaves': 61.752000286485874, 'min_child_weight': 10.809036810500192, 'learning_rate': 0.02125763393113054, 'subsample': 1.0, 'reg_alpha': 1.6119904387722278e-10, 'reg_lambda': 0.30918232785867794, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.731444362543638, 'min_child_weight': 1.9587780446722571, 'learning_rate': 0.0993423141010062, 'subsample': 0.6, 'reg_alpha': 7.235787732929856e-10, 'reg_lambda': 0.39580410650905606, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.457705713655374, 'criterion': 1.2600479219235374, 'max_features': 0.5350834276227863}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 1.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.07642790781484, 'max_leaves': 46.17596033548093, 'min_child_weight': 20.0, 'learning_rate': 0.058241922311012634, 'subsample': 0.8321641609081001, 'reg_alpha': 4.064218699495172e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6429952883602673, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.03796325457654, 'min_child_weight': 0.9122125635005209, 'learning_rate': 0.03625880574053909, 'subsample': 1.0, 'reg_alpha': 2.869929377549767e-10, 'reg_lambda': 0.11492531112853868, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.882921017022873, 'min_child_weight': 1.5406448161143322, 'learning_rate': 0.03997401387352433, 'subsample': 1.0, 'reg_alpha': 3.9116100306703835e-10, 'reg_lambda': 0.63808249359576, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.814032784829392, 'max_leaves': 30.469233238195383, 'min_child_weight': 13.742625014545078, 'learning_rate': 0.05282888412737699, 'subsample': 0.8953975292900572, 'reg_alpha': 2.981897620420328e-10, 'reg_lambda': 0.19178654210817744, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.521773563151054, 'min_child_weight': 2.870974827986761, 'learning_rate': 0.04404031559419061, 'subsample': 1.0, 'reg_alpha': 3.600347917507657e-10, 'reg_lambda': 0.11457775895251138, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7267818969258091}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.19213507524502, 'max_leaves': 66.89597193883242, 'min_child_weight': 7.3746741984878375, 'learning_rate': 0.047951122023956246, 'subsample': 0.8350921646888693, 'reg_alpha': 3.239692637966701e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6695053826481691, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.344003949603266, 'min_child_weight': 15.163600495657688, 'learning_rate': 0.027486805754993213, 'subsample': 1.0, 'reg_alpha': 2.7034447675497637e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.042264231243641, 'max_leaves': 39.90502789901425, 'min_child_weight': 1.3962715513723187, 'learning_rate': 0.07682895443923866, 'subsample': 0.6, 'reg_alpha': 4.314503030531618e-10, 'reg_lambda': 0.0946080946100448, 'colsample_bylevel': 0.7206044242228928, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 2.0, 'max_features': 0.6016208682277384}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.064489154998945, 'criterion': 1.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 27.46601416441243, 'criterion': 1.0, 'max_features': 0.26602694135520943}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.619189083875294, 'max_leaves': 22.768080647459115, 'min_child_weight': 8.108732956068183, 'learning_rate': 0.029406930101686407, 'subsample': 1.0, 'reg_alpha': 1.225038871737494e-10, 'reg_lambda': 0.2992846263518162, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 42.66710803710385, 'min_child_weight': 2.611074270563756, 'learning_rate': 0.07181241087485946, 'subsample': 0.6, 'reg_alpha': 9.521347372369514e-10, 'reg_lambda': 0.40889382297451726, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.120590665200969, 'max_leaves': 16.359240706007032, 'min_child_weight': 2.1677442411243066, 'learning_rate': 0.029949346158810546, 'subsample': 0.6, 'reg_alpha': 7.094092418430179e-10, 'reg_lambda': 0.5600540027859487, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 59.38222771096708, 'min_child_weight': 9.767067344384152, 'learning_rate': 0.07051180803188685, 'subsample': 1.0, 'reg_alpha': 1.6441878614614074e-10, 'reg_lambda': 0.2185068482998875, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.38278843425731, 'max_leaves': 37.76642381189493, 'min_child_weight': 12.11202845288223, 'learning_rate': 0.07146118893848996, 'subsample': 0.6088392758011623, 'reg_alpha': 6.666047717494913e-10, 'reg_lambda': 0.3777845824974071, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.722534959125877, 'min_child_weight': 1.7480559982852188, 'learning_rate': 0.029551461127358077, 'subsample': 1.0, 'reg_alpha': 1.7497655487608204e-10, 'reg_lambda': 0.32392966970094395, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.384518067003901, 'max_leaves': 38.18991110880419, 'min_child_weight': 7.354791011322751, 'learning_rate': 0.14877563949248196, 'subsample': 1.0, 'reg_alpha': 1.2740769155389593e-10, 'reg_lambda': 0.411572787922626, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.084178669270668, 'max_leaves': 25.43729819152883, 'min_child_weight': 2.8787363170301927, 'learning_rate': 0.014194410820444103, 'subsample': 0.7683186675449319, 'reg_alpha': 9.154879505476476e-10, 'reg_lambda': 0.29733655532517905, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.454937354813467, 'min_child_weight': 1.4710265995043053, 'learning_rate': 0.04242127582553831, 'subsample': 1.0, 'reg_alpha': 2.082100585072105e-10, 'reg_lambda': 0.17291454262263467, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.950372917701607, 'max_leaves': 52.638930065468664, 'min_child_weight': 14.39301233274542, 'learning_rate': 0.049781212515047676, 'subsample': 0.6238831656690284, 'reg_alpha': 5.602044745626143e-10, 'reg_lambda': 0.7077232092245952, 'colsample_bylevel': 0.8264975399825121, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.850260833410777, 'min_child_weight': 3.871833242993392, 'learning_rate': 0.04918595838422432, 'subsample': 1.0, 'reg_alpha': 4.1765009826928745e-10, 'reg_lambda': 0.30304119748358105, 'colsample_bylevel': 0.9470866426660918, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.627290429331317, 'max_leaves': 112.0, 'min_child_weight': 5.468340876192574, 'learning_rate': 0.042934662989262816, 'subsample': 0.6, 'reg_alpha': 2.7927733504201675e-10, 'reg_lambda': 0.4038250773910846, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.875041416808266, 'min_child_weight': 8.983709944651242, 'learning_rate': 0.03577932690953073, 'subsample': 1.0, 'reg_alpha': 2.754391350757814e-10, 'reg_lambda': 0.09697886046213515, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.881376349163639, 'max_leaves': 30.47676531865994, 'min_child_weight': 2.3567662044863535, 'learning_rate': 0.05902242242762958, 'subsample': 0.6426590209789026, 'reg_alpha': 4.234699850934105e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.512114064227376, 'max_leaves': 11.290614196722105, 'min_child_weight': 2.2557015689627073, 'learning_rate': 0.03083135281252909, 'subsample': 1.0, 'reg_alpha': 1.1885195843941407e-10, 'reg_lambda': 0.3493168095314064, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 86.04032870635706, 'min_child_weight': 9.38621681156088, 'learning_rate': 0.06849464439239272, 'subsample': 0.7382369460322714, 'reg_alpha': 9.813906977741683e-10, 'reg_lambda': 0.35032850320216696, 'colsample_bylevel': 0.68130893670624, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 94.13090259367232, 'min_child_weight': 1.8658777781865696, 'learning_rate': 0.06308400169707605, 'subsample': 1.0, 'reg_alpha': 3.9223691023979063e-10, 'reg_lambda': 0.9999890090195768, 'colsample_bylevel': 0.792777879372904, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.28861672572759, 'max_leaves': 10.32018317062153, 'min_child_weight': 11.347208394881788, 'learning_rate': 0.033475722690693835, 'subsample': 0.6027328089198839, 'reg_alpha': 2.973718265151947e-10, 'reg_lambda': 0.12237698006948627, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.890774110196782, 'max_leaves': 85.23091748924371, 'min_child_weight': 5.6947452763341095, 'learning_rate': 0.029519326683451003, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.43654883748919554, 'colsample_bylevel': 0.6145503292027304, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.39783760869675, 'min_child_weight': 3.7179018482967927, 'learning_rate': 0.0715389808743326, 'subsample': 0.6925240918505405, 'reg_alpha': 1.5298542291071068e-09, 'reg_lambda': 0.28032518819735225, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.019371616104863, 'max_leaves': 49.35543962199095, 'min_child_weight': 12.9005779870646, 'learning_rate': 0.10192245987108431, 'subsample': 0.6, 'reg_alpha': 3.1871973202377233e-10, 'reg_lambda': 0.1449993522429598, 'colsample_bylevel': 0.7327176264695291, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.682696866300226, 'min_child_weight': 1.6412058443964044, 'learning_rate': 0.0207195013709603, 'subsample': 1.0, 'reg_alpha': 3.6596481078863097e-10, 'reg_lambda': 0.8439736670095079, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.889275019218184, 'max_leaves': 53.40713028734995, 'min_child_weight': 12.858038173588923, 'learning_rate': 0.06016949359296952, 'subsample': 0.6, 'reg_alpha': 5.528157888442443e-10, 'reg_lambda': 0.9584370860710193, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.189484279643636, 'min_child_weight': 1.6466356455490574, 'learning_rate': 0.03509722985731307, 'subsample': 1.0, 'reg_alpha': 2.1099289994690502e-10, 'reg_lambda': 0.12768249142795185, 'colsample_bylevel': 0.9574881228521427, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 34.2914765718149, 'min_child_weight': 1.8324807523644957, 'learning_rate': 0.04134368318811313, 'subsample': 0.6544009269508118, 'reg_alpha': 1.710668346780967e-10, 'reg_lambda': 0.11722996818453879, 'colsample_bylevel': 0.6418701462317212, 'colsample_bytree': 0.7684473093557701}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.649945812575943, 'max_leaves': 28.329143387808834, 'min_child_weight': 11.554011664866117, 'learning_rate': 0.05107872313702672, 'subsample': 1.0, 'reg_alpha': 6.818399758443509e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.293322428279468, 'max_leaves': 30.809503815892544, 'min_child_weight': 8.786628302681258, 'learning_rate': 0.04943856433460376, 'subsample': 0.9405160264674706, 'reg_alpha': 2.092653451243406e-10, 'reg_lambda': 0.4200925608064009, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.170931828072698, 'max_leaves': 31.53079525680407, 'min_child_weight': 2.4096278184433024, 'learning_rate': 0.04271528867096303, 'subsample': 1.0, 'reg_alpha': 5.573794665111805e-10, 'reg_lambda': 0.2913063606543862, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.253352343731798, 'max_leaves': 73.79295352876319, 'min_child_weight': 5.617923766230392, 'learning_rate': 0.021873966827708376, 'subsample': 0.6233120047657615, 'reg_alpha': 7.734998749430477e-10, 'reg_lambda': 0.9990001778975893, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.164511112893429, 'min_child_weight': 3.768741775338952, 'learning_rate': 0.09654319052708456, 'subsample': 1.0, 'reg_alpha': 1.5079537851673365e-10, 'reg_lambda': 0.1224981113457211, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.059427629324395, 'max_leaves': 27.578749909982847, 'min_child_weight': 5.309333829042057, 'learning_rate': 0.020168404883838597, 'subsample': 1.0, 'reg_alpha': 1.3550621431978997e-10, 'reg_lambda': 0.1309984082865512, 'colsample_bylevel': 0.9217535162003996, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 35.22451742567891, 'min_child_weight': 3.9877891784932453, 'learning_rate': 0.10470746492811618, 'subsample': 0.6, 'reg_alpha': 8.607738546175911e-10, 'reg_lambda': 0.9341765035709797, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.741561337173337, 'max_leaves': 14.071767669853154, 'min_child_weight': 1.627023308665798, 'learning_rate': 0.04354249676495492, 'subsample': 0.6, 'reg_alpha': 3.2007015483928623e-10, 'reg_lambda': 0.5368593312459761, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 69.03526121056042, 'min_child_weight': 13.0130305298601, 'learning_rate': 0.04849934440898301, 'subsample': 1.0, 'reg_alpha': 3.644207517044207e-10, 'reg_lambda': 0.22794729997982374, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.305990826716025, 'criterion': 2.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.033671250255578, 'criterion': 1.0, 'max_features': 0.7354544996684652}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 29.881953367260174, 'min_child_weight': 0.9284060524648231, 'learning_rate': 0.10541828883038315, 'subsample': 1.0, 'reg_alpha': 3.76187960471077e-10, 'reg_lambda': 0.17138035576583793, 'colsample_bylevel': 0.7348331032587978, 'colsample_bytree': 0.9818586561404141}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.131496019383122, 'max_leaves': 32.50952656418331, 'min_child_weight': 20.0, 'learning_rate': 0.020032411552689987, 'subsample': 0.6040597331343918, 'reg_alpha': 3.100583183965315e-10, 'reg_lambda': 0.7140587057346265, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.161551011885773, 'max_leaves': 10.753705707613765, 'min_child_weight': 7.0680607667653765, 'learning_rate': 0.03661228468571453, 'subsample': 1.0, 'reg_alpha': 3.732679778704516e-10, 'reg_lambda': 0.13222803789328616, 'colsample_bylevel': 0.7601023557964437, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 90.336129999804, 'min_child_weight': 2.9955181042043293, 'learning_rate': 0.05767961669582881, 'subsample': 0.6, 'reg_alpha': 3.1248382754430863e-10, 'reg_lambda': 0.9254893060218937, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.470647312107827, 'max_leaves': 61.86377975599503, 'min_child_weight': 8.961599818688418, 'learning_rate': 0.014547388600441335, 'subsample': 1.0, 'reg_alpha': 3.7233092053218656e-10, 'reg_lambda': 0.26116043619126966, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.703019773674455, 'min_child_weight': 2.3625808356571696, 'learning_rate': 0.14516574795881307, 'subsample': 0.9660139994654666, 'reg_alpha': 3.1327026575704426e-10, 'reg_lambda': 0.46858412710288233, 'colsample_bylevel': 0.953675172567952, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.77672084596102, 'min_child_weight': 10.196759465491397, 'learning_rate': 0.12896255049801642, 'subsample': 0.6, 'reg_alpha': 9.807169637775916e-10, 'reg_lambda': 0.3990322472136223, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.726444196403235}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.539466640902647, 'max_leaves': 54.64720772747863, 'min_child_weight': 2.076395354829691, 'learning_rate': 0.016375161152408026, 'subsample': 1.0, 'reg_alpha': 1.1893360748589521e-10, 'reg_lambda': 0.3066810662071133, 'colsample_bylevel': 0.8325252503922346, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 51.586250506592854, 'min_child_weight': 2.2575268641619743, 'learning_rate': 0.05211877023795681, 'subsample': 0.6, 'reg_alpha': 6.861140030775603e-10, 'reg_lambda': 0.1461001487313501, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8911031055190834}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.649293065071534, 'max_leaves': 18.831532573945797, 'min_child_weight': 9.378627702984856, 'learning_rate': 0.04051865647230138, 'subsample': 1.0, 'reg_alpha': 1.7000120373799988e-10, 'reg_lambda': 0.8376147190070229, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.138516829104917, 'min_child_weight': 5.602526226898053, 'learning_rate': 0.027763129243554167, 'subsample': 1.0, 'reg_alpha': 2.5614505050929527e-10, 'reg_lambda': 0.8135453268420741, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.3515146305826296, 'max_leaves': 64.17062964285581, 'min_child_weight': 3.7790994867300403, 'learning_rate': 0.07606428398271692, 'subsample': 0.6, 'reg_alpha': 4.553677933372765e-10, 'reg_lambda': 0.15042263902064018, 'colsample_bylevel': 0.8410466858390223, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.025937232185154, 'max_leaves': 30.633555182976888, 'min_child_weight': 6.59579350338557, 'learning_rate': 0.04745008033874722, 'subsample': 1.0, 'reg_alpha': 2.7375961747652854e-10, 'reg_lambda': 0.6644201298072783, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.711897328928593, 'min_child_weight': 3.2100010374179146, 'learning_rate': 0.04450535240308367, 'subsample': 0.6, 'reg_alpha': 4.2606797708096394e-10, 'reg_lambda': 0.18418411715188454, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7273485676475421}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.7442948606197, 'min_child_weight': 6.510751123579943, 'learning_rate': 0.01849851759882611, 'subsample': 0.6, 'reg_alpha': 2.4062764327986213e-10, 'reg_lambda': 0.20700705874112618, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.1246157864892785, 'max_leaves': 82.71660140618879, 'min_child_weight': 3.2519295526105596, 'learning_rate': 0.1141595555291732, 'subsample': 1.0, 'reg_alpha': 4.847331953836433e-10, 'reg_lambda': 0.5911664837455209, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 47.097036848122805, 'min_child_weight': 2.66996533803789, 'learning_rate': 0.15190129160999047, 'subsample': 0.6, 'reg_alpha': 1.678750052729804e-10, 'reg_lambda': 0.414585230661382, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7642252233064334}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.405306234415405, 'max_leaves': 20.626523913071853, 'min_child_weight': 7.929879720469075, 'learning_rate': 0.013902334368904644, 'subsample': 1.0, 'reg_alpha': 6.948038883752539e-10, 'reg_lambda': 0.2951760602548961, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.787405276075201, 'max_leaves': 60.104812721591806, 'min_child_weight': 8.528078010880359, 'learning_rate': 0.09812563839619705, 'subsample': 0.6, 'reg_alpha': 9.508018717910027e-10, 'reg_lambda': 0.34316885378392514, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.162568566387904, 'min_child_weight': 2.4826817908383987, 'learning_rate': 0.02152121078187473, 'subsample': 1.0, 'reg_alpha': 1.2267561716614065e-10, 'reg_lambda': 0.3566047258576309, 'colsample_bylevel': 0.9670885122276137, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.190391293850817, 'max_leaves': 19.13053303647483, 'min_child_weight': 1.349021442708294, 'learning_rate': 0.091999586104359, 'subsample': 0.8066168013485819, 'reg_alpha': 1.148814869406889e-09, 'reg_lambda': 0.46377540009562085, 'colsample_bylevel': 0.7715425735026216, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 50.77998375322006, 'min_child_weight': 15.694712714096022, 'learning_rate': 0.022954261388035958, 'subsample': 1.0, 'reg_alpha': 1.0153089895581009e-10, 'reg_lambda': 0.263868318589694, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.809599387509274, 'max_leaves': 8.214606992090728, 'min_child_weight': 6.600503247641038, 'learning_rate': 0.04726318178453713, 'subsample': 0.6, 'reg_alpha': 6.710266448043823e-10, 'reg_lambda': 0.35151946644366583, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.2077105629830407, 'learning_rate': 0.04468134533679404, 'subsample': 1.0, 'reg_alpha': 1.7382350958460967e-10, 'reg_lambda': 0.34813330898732997, 'colsample_bylevel': 0.8362788891898029, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.897387834514716, 'max_leaves': 14.857013861194304, 'min_child_weight': 5.289241160568865, 'learning_rate': 0.017046589374095738, 'subsample': 0.6, 'reg_alpha': 1.8676893086476057e-10, 'reg_lambda': 0.6738443203288065, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 65.38650134264195, 'min_child_weight': 4.002937915991127, 'learning_rate': 0.12388299504883216, 'subsample': 1.0, 'reg_alpha': 6.245161113501378e-10, 'reg_lambda': 0.18160817170170723, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 55.137732822584724, 'min_child_weight': 1.6981732858894116, 'learning_rate': 0.057662371180257785, 'subsample': 0.7929033040835055, 'reg_alpha': 3.0148167393553657e-10, 'reg_lambda': 0.16939097366901912, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.294666436038368, 'max_leaves': 17.61857274597117, 'min_child_weight': 12.467811244229415, 'learning_rate': 0.03662323459486177, 'subsample': 1.0, 'reg_alpha': 3.868898726150209e-10, 'reg_lambda': 0.7224448409252875, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.502145723364843, 'criterion': 1.0, 'max_features': 0.5169171459428278}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 26.47642760439144, 'criterion': 2.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.05208904742257, 'max_leaves': 31.87586000394611, 'min_child_weight': 1.9745012874015806, 'learning_rate': 0.023214429966562502, 'subsample': 0.6, 'reg_alpha': 1.856456986376657e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7431900471260331, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.419240286853882, 'max_leaves': 30.47598266093432, 'min_child_weight': 10.722962868423739, 'learning_rate': 0.09096852906025851, 'subsample': 1.0, 'reg_alpha': 6.282946886495643e-10, 'reg_lambda': 0.11864869493204411, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.491131512152064, 'max_leaves': 10.657728284798667, 'min_child_weight': 9.174361126263548, 'learning_rate': 0.028280680091646204, 'subsample': 1.0, 'reg_alpha': 4.945124480553852e-10, 'reg_lambda': 0.4529420585305712, 'colsample_bylevel': 0.6431956950403394, 'colsample_bytree': 0.9371931239009946}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 91.14964566775713, 'min_child_weight': 2.3077905586091716, 'learning_rate': 0.0746722688488094, 'subsample': 0.6, 'reg_alpha': 2.3586910073418287e-10, 'reg_lambda': 0.2701794472862678, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 100.93819806637667, 'min_child_weight': 6.181462056663585, 'learning_rate': 0.02559728402150102, 'subsample': 1.0, 'reg_alpha': 8.055202833338533e-10, 'reg_lambda': 0.16915281205110647, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.879651960406568}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.438925668119817, 'max_leaves': 9.6241876256183, 'min_child_weight': 3.4251611988199726, 'learning_rate': 0.08250025843588472, 'subsample': 0.6, 'reg_alpha': 1.4480107929987493e-10, 'reg_lambda': 0.7234620195939782, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.553094259976078, 'criterion': 1.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.011482491577434, 'criterion': 2.0, 'max_features': 0.7532895123635542}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 2.0, 'max_features': 0.25185640100018586}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.151682320524014, 'max_leaves': 64.45370811249279, 'min_child_weight': 6.309374052455254, 'learning_rate': 0.12890639721358785, 'subsample': 0.8146271640463253, 'reg_alpha': 5.851328554985017e-10, 'reg_lambda': 0.11113280531633038, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.072028983765165, 'min_child_weight': 3.355721789901309, 'learning_rate': 0.01638229438319898, 'subsample': 1.0, 'reg_alpha': 1.9933969752102169e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.316804822481119, 'min_child_weight': 8.481826088724988, 'learning_rate': 0.06646471845301986, 'subsample': 1.0, 'reg_alpha': 2.048501673748947e-10, 'reg_lambda': 0.11416777859079003, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.20264533964613, 'max_leaves': 85.8412044760925, 'min_child_weight': 2.4962200081662758, 'learning_rate': 0.03177298567093572, 'subsample': 0.6, 'reg_alpha': 5.693927806816027e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.939410489904459, 'min_child_weight': 4.6344380705848796, 'learning_rate': 0.058712517545934775, 'subsample': 0.6, 'reg_alpha': 3.6432710115878355e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.24311192479859, 'max_leaves': 88.80260574179401, 'min_child_weight': 4.568515894698316, 'learning_rate': 0.03596818251539609, 'subsample': 1.0, 'reg_alpha': 3.2015242910476785e-10, 'reg_lambda': 0.09834548040003249, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8783720075656661}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.92844477286817, 'max_leaves': 69.48407610646323, 'min_child_weight': 3.4236283093850868, 'learning_rate': 0.05687354211918631, 'subsample': 1.0, 'reg_alpha': 1.572303814618557e-10, 'reg_lambda': 0.28827482745178257, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.980874629378137, 'min_child_weight': 6.184229733824343, 'learning_rate': 0.03713119437162973, 'subsample': 0.6, 'reg_alpha': 7.418426727723744e-10, 'reg_lambda': 0.42451030535076073, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.299912280305506, 'min_child_weight': 6.387073762334008, 'learning_rate': 0.03007373142040563, 'subsample': 1.0, 'reg_alpha': 1.507479238367254e-09, 'reg_lambda': 0.4244080601866748, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.302352137460069, 'max_leaves': 34.32689639319774, 'min_child_weight': 3.314898931232167, 'learning_rate': 0.07022017047068825, 'subsample': 0.6262345911779835, 'reg_alpha': 1e-10, 'reg_lambda': 0.2883442764321381, 'colsample_bylevel': 0.8400823021520828, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.409130163449149, 'max_leaves': 14.335616598916294, 'min_child_weight': 7.101187959501116, 'learning_rate': 0.05306419578041768, 'subsample': 1.0, 'reg_alpha': 1.0278814117939474e-10, 'reg_lambda': 0.1843458542419272, 'colsample_bylevel': 0.6458593762461129, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 67.76465805147637, 'min_child_weight': 2.981543948591591, 'learning_rate': 0.03979675025641092, 'subsample': 0.66591901803811, 'reg_alpha': 1.134763262438149e-09, 'reg_lambda': 0.6638371962837515, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.985680480599882}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 55.42782262368734, 'min_child_weight': 1.7199069945889431, 'learning_rate': 0.04912685296646627, 'subsample': 0.9443712596955609, 'reg_alpha': 7.030074021308478e-10, 'reg_lambda': 0.16921278291645286, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.4628743183081285, 'max_leaves': 17.526363309957596, 'min_child_weight': 12.310260993805793, 'learning_rate': 0.042986318469698616, 'subsample': 1.0, 'reg_alpha': 1.659160430902167e-10, 'reg_lambda': 0.7232056167229153, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.996283320582859, 'learning_rate': 0.4572500899383176, 'subsample': 0.6, 'log_max_bin': 6.054430389056009, 'reg_alpha': 3.2294639029379336e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.670271380779503, 'min_child_weight': 1.49879404361297, 'learning_rate': 0.561097695003502, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 8.807447237490941e-10, 'reg_lambda': 0.7055288052118514, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.954493874858326, 'max_leaves': 4.0, 'min_child_weight': 0.6622527351916268, 'learning_rate': 0.372622533669996, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1.184161178506275e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.811789690732091, 'max_leaves': 7.401271100332279, 'min_child_weight': 0.8991339522399192, 'learning_rate': 0.14310249766608585, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 1.1132555579698006e-10, 'reg_lambda': 0.34363792049079306, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.6900725957913725, 'max_leaves': 4.0, 'min_child_weight': 0.4877790280037866, 'learning_rate': 0.9702664514118614, 'subsample': 1.0, 'log_max_bin': 3.4842482577885736, 'reg_alpha': 1.2595829292229852e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.066456869170812, 'max_leaves': 82.97926871064887, 'min_child_weight': 7.400414635570975, 'learning_rate': 0.047974853326108506, 'subsample': 1.0, 'reg_alpha': 6.445276873172941e-10, 'reg_lambda': 0.13356827955084064, 'colsample_bylevel': 0.7390284666830765, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.707118800601863, 'min_child_weight': 2.8609888811761786, 'learning_rate': 0.04401853055549247, 'subsample': 0.6, 'reg_alpha': 1.8097004786586036e-10, 'reg_lambda': 0.9162028247875557, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.384083994012764, 'max_leaves': 24.40162630054596, 'min_child_weight': 1.3868994912045454, 'learning_rate': 0.05005023749370665, 'subsample': 1.0, 'reg_alpha': 3.475101543691024e-10, 'reg_lambda': 0.07927526163395086, 'colsample_bylevel': 0.6842574567080473, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 39.81079559278786, 'min_child_weight': 15.266069475642643, 'learning_rate': 0.042193257270679574, 'subsample': 0.7247673187041711, 'reg_alpha': 3.356454623216433e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8271279351793223}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.711583666351798, 'max_leaves': 17.267782168437883, 'min_child_weight': 11.361846209310418, 'learning_rate': 0.08600017076167812, 'subsample': 1.0, 'reg_alpha': 5.639369435250971e-10, 'reg_lambda': 0.5724444426938661, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 56.257841760260796, 'min_child_weight': 1.8634739107023208, 'learning_rate': 0.024555562254436735, 'subsample': 0.6, 'reg_alpha': 2.06832000924749e-10, 'reg_lambda': 0.21377731339412892, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9733655239991946}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.503544801123336, 'max_leaves': 10.367361329456855, 'min_child_weight': 2.3672182972124567, 'learning_rate': 0.029993502971664598, 'subsample': 0.6, 'reg_alpha': 6.381810325697619e-10, 'reg_lambda': 0.44271484695566893, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 93.70254647365758, 'min_child_weight': 8.94404373833792, 'learning_rate': 0.07040799965998022, 'subsample': 1.0, 'reg_alpha': 1.827697792192416e-10, 'reg_lambda': 0.27642089680978804, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7268563870284651}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.293431771057368, 'max_leaves': 19.398638815395927, 'min_child_weight': 7.640853760155827, 'learning_rate': 0.02639992221227128, 'subsample': 0.6, 'reg_alpha': 2.341245123616667e-10, 'reg_lambda': 0.2673983764987047, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 50.07816094867603, 'min_child_weight': 2.7709605042918963, 'learning_rate': 0.07999199884191222, 'subsample': 1.0, 'reg_alpha': 4.981973277727606e-10, 'reg_lambda': 0.45765287220091583, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 54.50710177655713, 'min_child_weight': 7.7275128794476275, 'learning_rate': 0.011350846088030695, 'subsample': 0.7442343537511236, 'reg_alpha': 5.797842039345657e-10, 'reg_lambda': 0.8915260728248102, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.416080805001178, 'max_leaves': 17.822414421609185, 'min_child_weight': 2.7398859527977204, 'learning_rate': 0.1860462674458622, 'subsample': 1.0, 'reg_alpha': 2.0117865514985124e-10, 'reg_lambda': 0.13726534619312425, 'colsample_bylevel': 0.7808776149693069, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 2.0, 'max_features': 0.32501544364411616}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.22255629192957, 'criterion': 1.0, 'max_features': 0.1951650235864561}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.370493712754801, 'criterion': 2.0, 'max_features': 0.515817012854048}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 102.35161489578776, 'criterion': 1.0, 'max_features': 0.13720046404679698}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.538824541754988, 'max_leaves': 18.334081480239785, 'min_child_weight': 4.900118119313927, 'learning_rate': 0.2284744941672059, 'subsample': 0.6, 'reg_alpha': 2.1456662081044864e-10, 'reg_lambda': 0.6177880436640671, 'colsample_bylevel': 0.7458050492774883, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 52.98591902897588, 'min_child_weight': 4.3208150238277145, 'learning_rate': 0.01, 'subsample': 1.0, 'reg_alpha': 5.43608348698956e-10, 'reg_lambda': 0.1980867650022666, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 22.94361236921471, 'min_child_weight': 5.721583358692669, 'learning_rate': 0.16055710494910075, 'subsample': 1.0, 'reg_alpha': 3.203948436552663e-10, 'reg_lambda': 0.853885862098424, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.844338123965358, 'max_leaves': 42.340680323125646, 'min_child_weight': 3.700462382724028, 'learning_rate': 0.013152843953558122, 'subsample': 0.7724149764165706, 'reg_alpha': 3.6405144693958874e-10, 'reg_lambda': 0.14331615085622335, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.340514694007829, 'max_leaves': 43.87458823254251, 'min_child_weight': 11.854483742160271, 'learning_rate': 0.04972650988547846, 'subsample': 0.7879017439061801, 'reg_alpha': 6.529356925572402e-10, 'reg_lambda': 0.13768593058748085, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 22.141476328707565, 'min_child_weight': 1.7860334071877264, 'learning_rate': 0.04246794218806168, 'subsample': 1.0, 'reg_alpha': 1.7863965434001397e-10, 'reg_lambda': 0.8888027593258039, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.119133533924634, 'criterion': 2.0, 'max_features': 0.4639665699499728}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 48.47360228114546, 'criterion': 1.0, 'max_features': 0.1}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 83.83756648937123, 'min_child_weight': 5.089525500319061, 'learning_rate': 0.07418218721004632, 'subsample': 1.0, 'reg_alpha': 1.6509458659249605e-10, 'reg_lambda': 0.19434612293445802, 'colsample_bylevel': 0.6908460034633552, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.432819862604468, 'max_leaves': 11.587265678874278, 'min_child_weight': 4.16001530734736, 'learning_rate': 0.028467515268201515, 'subsample': 0.7157462261462045, 'reg_alpha': 7.065053363172151e-10, 'reg_lambda': 0.6296788079881813, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.053532759243055, 'min_child_weight': 3.915748082508759, 'learning_rate': 0.05193595227766938, 'subsample': 0.6, 'reg_alpha': 1.8185954483004429e-10, 'reg_lambda': 0.12764598143808878, 'colsample_bylevel': 0.8621249336595868, 'colsample_bytree': 0.7039505547338183}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.38118086515044, 'max_leaves': 80.5944760085123, 'min_child_weight': 5.407013817624632, 'learning_rate': 0.04066128480209977, 'subsample': 1.0, 'reg_alpha': 6.413752246751107e-10, 'reg_lambda': 0.9587112233991404, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.392158266910215, 'min_child_weight': 6.365455945276367, 'learning_rate': 0.18893029479628187, 'subsample': 1.0, 'reg_alpha': 2.0012011158769008e-10, 'reg_lambda': 0.3034592328109688, 'colsample_bylevel': 0.84352877824685, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.21825131290866, 'max_leaves': 29.990226300388315, 'min_child_weight': 3.3261567074662675, 'learning_rate': 0.011177575037966524, 'subsample': 0.6, 'reg_alpha': 5.82850996330635e-10, 'reg_lambda': 0.403268781420549, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.61245963759651, 'criterion': 1.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.298871824803275, 'criterion': 1.7504210669844031, 'max_features': 0.1}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.5339915015476615, 'max_leaves': 4.0, 'min_child_weight': 0.8433713411482201, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.32033423766332e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.8542585072921614, 'learning_rate': 1.0, 'subsample': 0.9659684836735833, 'log_max_bin': 3.0, 'reg_alpha': 1.9797643117719373e-10, 'reg_lambda': 0.4700831047485578, 'colsample_bytree': 0.7608763827310386}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.72181894529923, 'max_leaves': 4.390268379115364, 'min_child_weight': 0.8326229273674499, 'learning_rate': 0.4608999769227113, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.2741324607409334, 'learning_rate': 0.3554835342498848, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.0567495799664461e-10, 'reg_lambda': 0.5056071899432958, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 27.965691281913134, 'max_leaves': 7.415852546842141, 'min_child_weight': 0.55824275810109, 'learning_rate': 1.0, 'subsample': 0.730963045250625, 'log_max_bin': 4.451468311096245, 'reg_alpha': 1.6496647192434493e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.9428747091431156, 'learning_rate': 0.40765612728928313, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.42953679520308646, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.618052883388085, 'max_leaves': 4.833727293468404, 'min_child_weight': 0.3660942291970272, 'learning_rate': 1.0, 'subsample': 0.6923335877103503, 'log_max_bin': 5.899511790183165, 'reg_alpha': 2.6016264500750414e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.125668425391702, 'max_leaves': 39.28035308559324, 'min_child_weight': 2.692396898884031, 'learning_rate': 0.02251706964222488, 'subsample': 0.7633555691185674, 'reg_alpha': 6.044039944915231e-10, 'reg_lambda': 0.878647837119953, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.731146246720655, 'min_child_weight': 7.863812351454493, 'learning_rate': 0.0937858513822989, 'subsample': 1.0, 'reg_alpha': 1.9298384439502396e-10, 'reg_lambda': 0.13927722786824245, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.766718924134839, 'max_leaves': 4.0, 'min_child_weight': 0.32079642261879054, 'learning_rate': 0.9348238875059606, 'subsample': 1.0, 'log_max_bin': 4.147507248224327, 'reg_alpha': 1.349142655952411e-10, 'reg_lambda': 0.23824918574779053, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.388264472304735, 'max_leaves': 4.6995943888846154, 'min_child_weight': 2.2172168045507523, 'learning_rate': 1.0, 'subsample': 0.6681149242621672, 'log_max_bin': 3.0, 'reg_alpha': 1.292140969270096e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 54.099208125205806, 'min_child_weight': 1.3956340408139511, 'learning_rate': 0.12780713133707775, 'subsample': 0.6, 'reg_alpha': 3.5091932075139064e-10, 'reg_lambda': 0.1331803942617943, 'colsample_bylevel': 0.8648344933014454, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.539601954756827, 'max_leaves': 17.956790689696177, 'min_child_weight': 15.17052706461212, 'learning_rate': 0.01652319807930729, 'subsample': 1.0, 'reg_alpha': 3.323846808290073e-10, 'reg_lambda': 0.918871247564704, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7148584167163229}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.87112486746391, 'max_leaves': 8.157074657625756, 'min_child_weight': 0.3336914194214215, 'learning_rate': 0.40859823508124676, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 3.309972443807951e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.409950841893776, 'max_leaves': 4.0, 'min_child_weight': 2.131535837221731, 'learning_rate': 1.0, 'subsample': 0.631821703198921, 'log_max_bin': 4.015330560340695, 'reg_alpha': 1e-10, 'reg_lambda': 0.4956518404486833, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 2.17515632260642, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 5.37400870328799, 'reg_alpha': 1e-10, 'reg_lambda': 0.43535249459846315, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.110638941640143, 'max_leaves': 5.16457573698413, 'min_child_weight': 0.32699958696203, 'learning_rate': 0.7923880750258064, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.9872486104875074e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.91504312712854, 'min_child_weight': 2.791372585057202, 'learning_rate': 0.08019108831534054, 'subsample': 0.6, 'reg_alpha': 1.3696814932911162e-10, 'reg_lambda': 0.404312595887076, 'colsample_bylevel': 0.6790420478299882, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.31617699142656, 'max_leaves': 29.513804767947118, 'min_child_weight': 7.584979555148903, 'learning_rate': 0.0263343794353592, 'subsample': 1.0, 'reg_alpha': 8.515863505201931e-10, 'reg_lambda': 0.30267579163097214, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.614602681067547, 'max_leaves': 4.0, 'min_child_weight': 1.0342277689139463, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.3672557194668777e-10, 'reg_lambda': 0.7993735166034128, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.903626996169329, 'max_leaves': 12.370135651431625, 'min_child_weight': 0.6877355650748628, 'learning_rate': 0.2511336961920379, 'subsample': 0.8261332320276528, 'log_max_bin': 3.132021805647994, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.537688029901135, 'max_leaves': 14.540576486521635, 'min_child_weight': 2.686213034967421, 'learning_rate': 0.01923837240381512, 'subsample': 0.6, 'reg_alpha': 1.6919379890084792e-10, 'reg_lambda': 0.26579044026931437, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 66.80946643918237, 'min_child_weight': 7.8819154374026805, 'learning_rate': 0.10976929350903893, 'subsample': 1.0, 'reg_alpha': 6.893881878793754e-10, 'reg_lambda': 0.46042150689278344, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.577219943927624, 'max_leaves': 6.6714026263190505, 'min_child_weight': 0.6255642686911487, 'learning_rate': 0.9049840989103095, 'subsample': 0.6486919844254154, 'log_max_bin': 8.560905947144226, 'reg_alpha': 1.8760302816895598e-10, 'reg_lambda': 0.4951231878956786, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.513002730209631, 'max_leaves': 4.0, 'min_child_weight': 1.1370138204317992, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.134814306399591, 'max_leaves': 4.0, 'min_child_weight': 1.378446744935549, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 7.981536734702184, 'reg_alpha': 1e-10, 'reg_lambda': 0.630176371337761, 'colsample_bytree': 0.9953529014955592}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.05415396904428, 'max_leaves': 4.125300913196226, 'min_child_weight': 0.5159976050459635, 'learning_rate': 0.552800315095745, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 5.355395552845657e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.3974955766036038, 'learning_rate': 1.0, 'subsample': 0.782820627361175, 'log_max_bin': 3.123395147319232, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.692365337264963, 'max_leaves': 4.267881274376128, 'min_child_weight': 1.7893915327250434, 'learning_rate': 0.9749119191797168, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 4.3516095726529727e-10, 'reg_lambda': 0.40374086852461394, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0283315924335, 'max_leaves': 38.02379834263222, 'min_child_weight': 8.596965050377987, 'learning_rate': 0.020947595711774857, 'subsample': 1.0, 'reg_alpha': 5.007527342489443e-10, 'reg_lambda': 0.7780639822899905, 'colsample_bylevel': 0.8619596791520364, 'colsample_bytree': 0.794312514626251}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.445303161717019, 'max_leaves': 25.5484249108655, 'min_child_weight': 2.4627881891332244, 'learning_rate': 0.10081264580848878, 'subsample': 0.6, 'reg_alpha': 2.32929744456865e-10, 'reg_lambda': 0.1572822258991083, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.672042324660618, 'max_leaves': 4.0, 'min_child_weight': 2.338764296253789, 'learning_rate': 0.5395512821177598, 'subsample': 1.0, 'log_max_bin': 7.912259524865534, 'reg_alpha': 2.350655831398148e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.8629902434013665, 'max_leaves': 4.602237190575333, 'min_child_weight': 0.3041243703820268, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5102794341625808, 'colsample_bytree': 0.714805054105579}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.6461568629139, 'min_child_weight': 0.5146230916274684, 'learning_rate': 0.8742089871017124, 'subsample': 0.6783690274587013, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.955323363844567, 'max_leaves': 4.0, 'min_child_weight': 1.3821284560332823, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.9046855150810877, 'reg_alpha': 1.9570108943708713e-10, 'reg_lambda': 0.6662256778441351, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 29.615214865115455, 'min_child_weight': 4.368517304628631, 'learning_rate': 0.04070207769099802, 'subsample': 1.0, 'reg_alpha': 6.359697188007778e-10, 'reg_lambda': 0.12423801245005373, 'colsample_bylevel': 0.815057118998597, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.670260305083176, 'max_leaves': 32.802333571009335, 'min_child_weight': 4.846610992253332, 'learning_rate': 0.0518839004500656, 'subsample': 0.9487904992088518, 'reg_alpha': 1.8340528326510062e-10, 'reg_lambda': 0.9850096006300136, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.714873518140875, 'max_leaves': 4.0, 'min_child_weight': 1.938890138166679, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.7345462781678228e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.357350423428668, 'max_leaves': 19.50691163146072, 'min_child_weight': 0.36684658148949845, 'learning_rate': 0.8999622122011282, 'subsample': 0.8286691073709114, 'log_max_bin': 5.414341429118716, 'reg_alpha': 1.0050366029941764e-10, 'reg_lambda': 0.6480961055993116, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.477834816238418, 'max_leaves': 42.96006610217631, 'min_child_weight': 5.574930545330395, 'learning_rate': 0.019904035511001544, 'subsample': 1.0, 'reg_alpha': 8.699943795772117e-10, 'reg_lambda': 0.46977019933618125, 'colsample_bylevel': 0.7514824770490676, 'colsample_bytree': 0.9182965695298685}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 22.612818017368436, 'min_child_weight': 3.7978058769173866, 'learning_rate': 0.1060982103786608, 'subsample': 0.6, 'reg_alpha': 1.3407006891396961e-10, 'reg_lambda': 0.2605010603044203, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 91.67103257783188, 'min_child_weight': 4.372423871417972, 'learning_rate': 0.028132482820289913, 'subsample': 0.6, 'reg_alpha': 3.364991129242367e-10, 'reg_lambda': 0.18776203913449355, 'colsample_bylevel': 0.9485084301150217, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.893546681954673, 'max_leaves': 10.597111535291567, 'min_child_weight': 4.842280760304193, 'learning_rate': 0.07506563002350798, 'subsample': 1.0, 'reg_alpha': 3.4662857031348177e-10, 'reg_lambda': 0.6517591925960958, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.644354842734991, 'max_leaves': 4.0, 'min_child_weight': 1.0948178403227196, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.9008931276592597e-10, 'reg_lambda': 0.5212176372244282, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.425221501764364, 'max_leaves': 11.183522270318267, 'min_child_weight': 0.6496744872740517, 'learning_rate': 0.5962741687485387, 'subsample': 0.6688031643238622, 'log_max_bin': 8.833930729192982, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.29057477349928, 'max_leaves': 17.39259592450096, 'min_child_weight': 9.261842217645166, 'learning_rate': 0.04152605823749801, 'subsample': 1.0, 'reg_alpha': 6.281546037298582e-10, 'reg_lambda': 0.2413640236431244, 'colsample_bylevel': 0.7068896204459798, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 55.85412097191034, 'min_child_weight': 2.2859927313515773, 'learning_rate': 0.050854394485331585, 'subsample': 0.9137538741461336, 'reg_alpha': 1.856870995326572e-10, 'reg_lambda': 0.5070168833754447, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.757712791674201, 'max_leaves': 91.84678083459485, 'min_child_weight': 9.481496161644726, 'learning_rate': 0.020622814119832585, 'subsample': 0.6640289785799008, 'reg_alpha': 2.0305827402629733e-10, 'reg_lambda': 0.27978787867856453, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.762738279764775}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.576834026791797, 'min_child_weight': 2.233034072629872, 'learning_rate': 0.10240030942235544, 'subsample': 1.0, 'reg_alpha': 5.744174030041119e-10, 'reg_lambda': 0.4373871934855542, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.518826394193071, 'max_leaves': 45.224212816712, 'min_child_weight': 3.4886494792023206, 'learning_rate': 0.013153161136805171, 'subsample': 0.6, 'reg_alpha': 1.7170124296505132e-10, 'reg_lambda': 0.2849632054563012, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9259341541495897}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.480709033450456, 'min_child_weight': 6.068968554932928, 'learning_rate': 0.16055323317840212, 'subsample': 1.0, 'reg_alpha': 6.793206875527649e-10, 'reg_lambda': 0.4294436358214684, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 47.28139277428892, 'min_child_weight': 1.4105238303424705, 'learning_rate': 0.06274545358077721, 'subsample': 0.6, 'reg_alpha': 3.734892467660836e-10, 'reg_lambda': 0.37953117802436986, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.744914194524247, 'max_leaves': 20.546098576666587, 'min_child_weight': 15.010383754609382, 'learning_rate': 0.03365634363152561, 'subsample': 1.0, 'reg_alpha': 3.122987005238595e-10, 'reg_lambda': 0.3224389512964764, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.146697979697755, 'min_child_weight': 3.208064236210739, 'learning_rate': 0.03157449702431282, 'subsample': 0.6, 'reg_alpha': 5.091447735996978e-10, 'reg_lambda': 0.22292212025522243, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8625052207398639}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.932610911124399, 'max_leaves': 45.93852703222444, 'min_child_weight': 6.5997755747778575, 'learning_rate': 0.06688253958264082, 'subsample': 1.0, 'reg_alpha': 2.2909045221072704e-10, 'reg_lambda': 0.548961381160321, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.683645878646196, 'max_leaves': 4.0, 'min_child_weight': 0.3547607854803439, 'learning_rate': 0.6062760474729356, 'subsample': 1.0, 'log_max_bin': 7.8129804662292885, 'reg_alpha': 1.8347173903570284e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.8774355652241, 'min_child_weight': 2.0049431847634605, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.57670142186994, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 83.52707340929423, 'min_child_weight': 10.2255376834397, 'learning_rate': 0.052304974643077366, 'subsample': 0.6, 'reg_alpha': 3.5066597802968475e-10, 'reg_lambda': 0.5324972958673138, 'colsample_bylevel': 0.602153770849657, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.657384628750524, 'max_leaves': 11.630338728886152, 'min_child_weight': 2.0705516564425728, 'learning_rate': 0.040374411065890355, 'subsample': 1.0, 'reg_alpha': 3.326248160145411e-10, 'reg_lambda': 0.229814566151313, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.920869711392506, 'max_leaves': 4.0, 'min_child_weight': 1.4836426529431228, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.9575846195730495, 'reg_alpha': 1e-10, 'reg_lambda': 0.7764370595174843, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.392972703327039, 'max_leaves': 4.3335867026564205, 'min_child_weight': 0.4794114119455793, 'learning_rate': 0.6101223019868632, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 4.2418550065456045e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.305331761690397, 'max_leaves': 24.486322220776845, 'min_child_weight': 7.098558279450089, 'learning_rate': 0.03729465220654992, 'subsample': 1.0, 'reg_alpha': 1.36887813287065e-10, 'reg_lambda': 0.9290405655991227, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9170002916124192}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 39.673093738771016, 'min_child_weight': 2.98264846958504, 'learning_rate': 0.05662427243817258, 'subsample': 0.6, 'reg_alpha': 8.520861253008614e-10, 'reg_lambda': 0.13172259593161692, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.408529910694615, 'max_leaves': 13.307429415530017, 'min_child_weight': 6.860015223409285, 'learning_rate': 0.019816597214345755, 'subsample': 1.0, 'reg_alpha': 1.636741932741119e-10, 'reg_lambda': 0.6153730719838449, 'colsample_bylevel': 0.7179261359630269, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 73.0004365568104, 'min_child_weight': 3.0863639946763453, 'learning_rate': 0.10656635567592815, 'subsample': 0.7176935325443391, 'reg_alpha': 7.126365133771631e-10, 'reg_lambda': 0.19886413721675938, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.896801300947947, 'max_leaves': 59.514118823933046, 'min_child_weight': 6.586368710027753, 'learning_rate': 0.03897347894995517, 'subsample': 0.6, 'reg_alpha': 1.5427153448172786e-10, 'reg_lambda': 0.21074790600475632, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.3229864774873, 'min_child_weight': 3.2145944025615907, 'learning_rate': 0.0541851177756613, 'subsample': 1.0, 'reg_alpha': 7.560708254865905e-10, 'reg_lambda': 0.5806730768832987, 'colsample_bylevel': 0.6111626726140617, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.965367761537628, 'min_child_weight': 3.5545849910992957, 'learning_rate': 0.020183855218999475, 'subsample': 0.6, 'reg_alpha': 5.282397909317759e-10, 'reg_lambda': 0.6174511304132436, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.547172582507476, 'max_leaves': 88.59239178371243, 'min_child_weight': 5.956392670727556, 'learning_rate': 0.10462731346996153, 'subsample': 1.0, 'reg_alpha': 2.2080920147824968e-10, 'reg_lambda': 0.19819485137972187, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.5558591672836993, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.641873235751679e-10, 'reg_lambda': 0.8169946455492629, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 33.72317233859587, 'max_leaves': 4.397810767380584, 'min_child_weight': 1.2795960936398965, 'learning_rate': 0.8167636644852676, 'subsample': 0.606255475027881, 'log_max_bin': 7.7430858915554746, 'reg_alpha': 1.0617643683970975e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.174378180853044, 'max_leaves': 4.0, 'min_child_weight': 3.8924536053992003, 'learning_rate': 1.0, 'subsample': 0.9700651026374029, 'log_max_bin': 7.909411665244764, 'reg_alpha': 1.2553813964774162e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.578820340314243, 'max_leaves': 7.3040312011868265, 'min_child_weight': 0.18273184247682275, 'learning_rate': 0.8985630321349964, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.3886477082085237e-10, 'reg_lambda': 0.5674000339323212, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.100029386774749, 'max_leaves': 58.03427916700131, 'min_child_weight': 12.8767439125951, 'learning_rate': 0.030684518633830975, 'subsample': 1.0, 'reg_alpha': 1.8477757116389408e-10, 'reg_lambda': 0.2829766525299008, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.367567515991804, 'max_leaves': 16.739212939772386, 'min_child_weight': 1.644243617189017, 'learning_rate': 0.06882241081345326, 'subsample': 0.6, 'reg_alpha': 6.31246561419651e-10, 'reg_lambda': 0.4324584163831793, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.126447500245862, 'max_leaves': 10.05916428906003, 'min_child_weight': 1.3318076681933995, 'learning_rate': 0.44074602972436944, 'subsample': 1.0, 'log_max_bin': 6.812763580752129, 'reg_alpha': 1.0445540009951531e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.264917057252918, 'max_leaves': 4.0, 'min_child_weight': 0.5340675204513533, 'learning_rate': 1.0, 'subsample': 0.623422595220542, 'log_max_bin': 3.0, 'reg_alpha': 1.6689252039484258e-10, 'reg_lambda': 0.32045411083875525, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.5089968794299277, 'learning_rate': 0.36917871776672917, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.9995748194490421, 'colsample_bytree': 0.7226938774481524}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.714685618092496, 'max_leaves': 10.287294789313417, 'min_child_weight': 1.3974058541709917, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.419031252908627, 'reg_alpha': 2.1664774888491977e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.093964865984908, 'max_leaves': 17.50460764572455, 'min_child_weight': 1.6346312308494404, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.86320958575748, 'reg_alpha': 1e-10, 'reg_lambda': 0.9341406426964592, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.00131224465993, 'max_leaves': 4.0, 'min_child_weight': 0.4351288569841722, 'learning_rate': 0.8762473460262243, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 2.441794695626164e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.0398783196418, 'max_leaves': 4.0, 'min_child_weight': 0.7372017636224801, 'learning_rate': 0.9631793278938647, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 3.8181181739275105e-10, 'reg_lambda': 0.6049865008602054, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.5322567224945, 'min_child_weight': 0.9648311414436475, 'learning_rate': 1.0, 'subsample': 0.8841624496568362, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8382353748521716}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.954388245395962, 'max_leaves': 10.35149750232665, 'min_child_weight': 2.6608684207331605, 'learning_rate': 0.8850119359200048, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.869989770803312e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.532638048800566, 'max_leaves': 4.0, 'min_child_weight': 0.26730942933065693, 'learning_rate': 1.0, 'subsample': 0.6613380243611737, 'log_max_bin': 6.054287056250753, 'reg_alpha': 1e-10, 'reg_lambda': 0.38249287171008334, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.3652517109259845, 'max_leaves': 6.6256385758136584, 'min_child_weight': 0.4730685314539392, 'learning_rate': 1.0, 'subsample': 0.6140947791962044, 'log_max_bin': 3.0, 'reg_alpha': 6.229922718583748e-10, 'reg_lambda': 0.5539638644614526, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.579378378427664, 'max_leaves': 4.0, 'min_child_weight': 1.5035352634513621, 'learning_rate': 0.4641959907138098, 'subsample': 1.0, 'log_max_bin': 3.180098581901826, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8412396991202337}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.80151471047721, 'min_child_weight': 5.469680179544431, 'learning_rate': 0.06426794858643985, 'subsample': 0.6, 'reg_alpha': 1.643273579902227e-10, 'reg_lambda': 0.1741542330014612, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.772443982493973, 'max_leaves': 70.38706817050823, 'min_child_weight': 3.870885187701317, 'learning_rate': 0.03285903149981904, 'subsample': 1.0, 'reg_alpha': 7.098039416639497e-10, 'reg_lambda': 0.7026853893667191, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.223746078564194, 'max_leaves': 4.0, 'min_child_weight': 1.50786652245314, 'learning_rate': 0.2515782749064352, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.8105431884637434e-10, 'reg_lambda': 0.45777351142927397, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.865962298265808, 'max_leaves': 7.627205215810408, 'min_child_weight': 0.4717096695753797, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.697435968118671, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.7922984780254206, 'learning_rate': 0.6965133467744485, 'subsample': 0.6343956746889544, 'log_max_bin': 3.0, 'reg_alpha': 1.9593238418361977e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.523560515741051, 'max_leaves': 7.784198326604767, 'min_child_weight': 0.8977364450362183, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 6.352019727132619, 'reg_alpha': 1e-10, 'reg_lambda': 0.24192000551238488, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.1033190169774025, 'max_leaves': 112.0, 'min_child_weight': 5.1674292413249665, 'learning_rate': 0.1138739011601073, 'subsample': 1.0, 'reg_alpha': 7.82710177023943e-10, 'reg_lambda': 0.38101641487994115, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.8152964982601745, 'min_child_weight': 4.097299256493203, 'learning_rate': 0.01854492140443489, 'subsample': 0.8869264023650492, 'reg_alpha': 1.490209401239394e-10, 'reg_lambda': 0.3211820547549239, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7747402873078233}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.5477304263123335, 'max_leaves': 4.476021629773361, 'min_child_weight': 1.678200623241443, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1.4267360536538066e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.5202775853674275, 'max_leaves': 4.0, 'min_child_weight': 0.42383205513076255, 'learning_rate': 0.35879927958066676, 'subsample': 0.8509161101641195, 'log_max_bin': 3.0, 'reg_alpha': 1.221867558951435e-10, 'reg_lambda': 0.6285217866423929, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.303286264079773, 'max_leaves': 4.0, 'min_child_weight': 1.9586130458709416, 'learning_rate': 0.5364657677035226, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.457184416232736e-10, 'reg_lambda': 0.21466658977496653, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.7719845413377575, 'max_leaves': 5.023858114863402, 'min_child_weight': 0.36315249741117844, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.934157126776441, 'reg_alpha': 1.1963362219127312e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8610866018367963}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.308032002966604, 'max_leaves': 36.02483340005127, 'min_child_weight': 2.02648797926515, 'learning_rate': 0.03256213932061359, 'subsample': 1.0, 'reg_alpha': 5.081379991384635e-10, 'reg_lambda': 0.09045700106379319, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7749729712031308}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.156690375549193, 'max_leaves': 26.966069377610193, 'min_child_weight': 10.447880374863928, 'learning_rate': 0.06485392517480279, 'subsample': 0.6, 'reg_alpha': 2.2954434941382818e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.326200201557896, 'max_leaves': 5.572600865079586, 'min_child_weight': 1.5077456393208277, 'learning_rate': 0.8806346431690256, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.021392929353983e-10, 'reg_lambda': 0.919203406504184, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.4717474887810289, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 7.35227667192647, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.452402385296402, 'max_leaves': 19.672423621722057, 'min_child_weight': 5.212561752874044, 'learning_rate': 0.10275911450412266, 'subsample': 1.0, 'reg_alpha': 6.857280044416179e-10, 'reg_lambda': 0.24051469890027943, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 49.38121379767207, 'min_child_weight': 4.061823148049644, 'learning_rate': 0.020550805222692467, 'subsample': 0.9612735923089144, 'reg_alpha': 1.7009689799625741e-10, 'reg_lambda': 0.5088073019488619, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.660449941021809, 'max_leaves': 10.930362976033097, 'min_child_weight': 8.586824017334564, 'learning_rate': 0.09853585583788917, 'subsample': 1.0, 'reg_alpha': 6.293918359076618e-10, 'reg_lambda': 0.5552189916980782, 'colsample_bylevel': 0.61422601819264, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 88.8761113343369, 'min_child_weight': 2.4656967402290118, 'learning_rate': 0.02143161521329732, 'subsample': 0.6, 'reg_alpha': 1.8532208358958648e-10, 'reg_lambda': 0.22040967051977317, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 47.921428116126194, 'min_child_weight': 10.733422375760679, 'learning_rate': 0.18336664670243377, 'subsample': 0.6, 'reg_alpha': 1.9735021200316357e-10, 'reg_lambda': 0.7404182127251094, 'colsample_bylevel': 0.9898920927878734, 'colsample_bytree': 0.7624211637383279}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.216840161099177, 'max_leaves': 20.271686278392153, 'min_child_weight': 1.9725771750374745, 'learning_rate': 0.011516721197708133, 'subsample': 1.0, 'reg_alpha': 5.91031573975777e-10, 'reg_lambda': 0.16527907191273772, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.117979656307973, 'max_leaves': 13.77238646661311, 'min_child_weight': 0.3995030847845125, 'learning_rate': 0.42306627020373627, 'subsample': 0.950530381152229, 'log_max_bin': 3.0, 'reg_alpha': 1.466194069490356e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8981957888839107}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.7803998170722544, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 7.370294516188939, 'reg_alpha': 1.1889848250115615e-10, 'reg_lambda': 0.6987458191999677, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.6282677943723094, 'learning_rate': 1.0, 'subsample': 0.8754409456501893, 'log_max_bin': 4.957423635934788, 'reg_alpha': 1.9754059638721398e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.43774348383559, 'max_leaves': 8.820186982132, 'min_child_weight': 1.132121088238765, 'learning_rate': 0.9007111121382665, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.41737747758092414, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 54.346745757141186, 'min_child_weight': 4.3751670288805, 'learning_rate': 0.012968437575308115, 'subsample': 1.0, 'reg_alpha': 5.023478394136288e-10, 'reg_lambda': 0.6685538587070247, 'colsample_bylevel': 0.6400013477974179, 'colsample_bytree': 0.7329218476103416}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.3825429425918845, 'max_leaves': 17.87500140530462, 'min_child_weight': 4.8392447302473744, 'learning_rate': 0.16284016750417243, 'subsample': 0.6, 'reg_alpha': 2.3219012260674316e-10, 'reg_lambda': 0.18304529011793771, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.953662553461303, 'max_leaves': 15.580729145651901, 'min_child_weight': 0.4821744664769913, 'learning_rate': 0.4897249965908918, 'subsample': 1.0, 'log_max_bin': 4.831520718918326, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.748421472626953, 'max_leaves': 4.0, 'min_child_weight': 1.475140781027003, 'learning_rate': 1.0, 'subsample': 0.7677960916181358, 'log_max_bin': 3.0, 'reg_alpha': 3.335751841911229e-10, 'reg_lambda': 0.7304039924877876, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.088966655217934, 'max_leaves': 4.0, 'min_child_weight': 2.1672051854176133, 'learning_rate': 0.6366648411386252, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 3.802512821823875e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.006953722036855, 'max_leaves': 10.624629786212981, 'min_child_weight': 0.3281992973512967, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 4.7986816667126675, 'reg_alpha': 1e-10, 'reg_lambda': 0.6891176251136221, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.158217913723828, 'max_leaves': 15.71890057889857, 'min_child_weight': 3.2428487178140792, 'learning_rate': 0.027685755643483384, 'subsample': 1.0, 'reg_alpha': 7.194296210221488e-10, 'reg_lambda': 0.7540212102334061, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.306449429980142, 'max_leaves': 61.80127877942856, 'min_child_weight': 6.528982950130915, 'learning_rate': 0.07627686143822641, 'subsample': 0.6, 'reg_alpha': 1.6212872394517664e-10, 'reg_lambda': 0.16229733774811572, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.303022014154066, 'max_leaves': 10.138511940703443, 'min_child_weight': 1.029106042736773, 'learning_rate': 0.5863699814770343, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.0655781899586949e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.190968523676279, 'max_leaves': 4.0, 'min_child_weight': 0.6911583350328057, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 5.628197383037496, 'reg_alpha': 1.635996790825416e-10, 'reg_lambda': 0.6671983610556423, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 34.229742193242465, 'min_child_weight': 11.602545304366044, 'learning_rate': 0.16000572956136389, 'subsample': 1.0, 'reg_alpha': 3.707319059853599e-10, 'reg_lambda': 0.7288946419803353, 'colsample_bylevel': 0.708522596149728, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.341895734069479, 'max_leaves': 28.38023585741209, 'min_child_weight': 1.8248154549756246, 'learning_rate': 0.013198168295721475, 'subsample': 0.7785358475205344, 'reg_alpha': 3.146214408351708e-10, 'reg_lambda': 0.1678920765475947, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.169274315036535, 'max_leaves': 94.4489351115109, 'min_child_weight': 6.749422071489483, 'learning_rate': 0.0217218399704423, 'subsample': 0.9360627510542994, 'reg_alpha': 2.2015063034631635e-10, 'reg_lambda': 0.20492096016909653, 'colsample_bylevel': 0.6189543504658779, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.285432605838208, 'min_child_weight': 3.1369358389805972, 'learning_rate': 0.09721932165526294, 'subsample': 1.0, 'reg_alpha': 5.298199975225948e-10, 'reg_lambda': 0.597184567774386, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.146119037327477, 'max_leaves': 6.158890917719707, 'min_child_weight': 1.001070230079915, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.4576239677252254e-10, 'reg_lambda': 0.8752358009295054, 'colsample_bytree': 0.934304140809282}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.967861344193438, 'max_leaves': 4.0, 'min_child_weight': 0.7105148047538749, 'learning_rate': 0.5118157152021368, 'subsample': 0.6, 'log_max_bin': 7.280218260702247, 'reg_alpha': 1.1959754626335861e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.473624226627297, 'max_leaves': 9.545544481264315, 'min_child_weight': 1.4632689762357978, 'learning_rate': 1.0, 'subsample': 0.7079631129102781, 'log_max_bin': 3.7507293527513568, 'reg_alpha': 1e-10, 'reg_lambda': 0.21466553902623023, 'colsample_bytree': 0.8348261128849094}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.768044909360517, 'max_leaves': 4.0, 'min_child_weight': 0.48608644796110906, 'learning_rate': 0.5863634228068532, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.4620534170707056e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.353941221627316, 'max_leaves': 4.0, 'min_child_weight': 2.0082863867582246, 'learning_rate': 0.4908220318601727, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.0394106613994175e-10, 'reg_lambda': 0.48096211519809456, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.5945683994371125, 'max_leaves': 4.737830425983295, 'min_child_weight': 0.3541702138499717, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 5.135784277747176, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.490528608811806, 'min_child_weight': 2.309323152082727, 'learning_rate': 0.8866616147250973, 'subsample': 0.6740982241369418, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.49159204309398113, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 31.5578534188136, 'max_leaves': 4.0, 'min_child_weight': 0.30800159710375064, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0638183820420206, 'reg_alpha': 1.8390452586575923e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.65355238802024, 'max_leaves': 4.0, 'min_child_weight': 1.61229918575226, 'learning_rate': 0.7890179671436817, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.1811353260897229e-10, 'reg_lambda': 0.26224062501534934, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.485778080717549, 'max_leaves': 9.644111334290043, 'min_child_weight': 0.44115585082199466, 'learning_rate': 1.0, 'subsample': 0.73217507846444, 'log_max_bin': 3.9958856380412646, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.118117786378857, 'min_child_weight': 4.5044288654595865, 'learning_rate': 0.0891635595563295, 'subsample': 1.0, 'reg_alpha': 2.4541534454276745e-10, 'reg_lambda': 0.2382290793609252, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.620611676815267, 'max_leaves': 64.25721577972412, 'min_child_weight': 4.700374813511854, 'learning_rate': 0.023684367891307078, 'subsample': 0.6, 'reg_alpha': 4.752767462115909e-10, 'reg_lambda': 0.5136889054635132, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.5869642557605093, 'learning_rate': 0.7025265693538816, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.5190943074056466e-10, 'reg_lambda': 0.6682906565241917, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.339708320329908, 'max_leaves': 19.08192973439487, 'min_child_weight': 0.44819863868281534, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.6822821444543408, 'reg_alpha': 1.1475801671083929e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.917665020936349, 'max_leaves': 4.0, 'min_child_weight': 0.6134226142544393, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 3.010323837823149e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7005500397810248}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.205229332962038, 'max_leaves': 11.151827330349828, 'min_child_weight': 1.1595190697927549, 'learning_rate': 0.38129052793654844, 'subsample': 0.6, 'log_max_bin': 3.9423230113170633, 'reg_alpha': 1e-10, 'reg_lambda': 0.5242111738551753, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 69.46800066691266, 'min_child_weight': 8.06635371485722, 'learning_rate': 0.08534675175533908, 'subsample': 1.0, 'reg_alpha': 1.0838772100395834e-10, 'reg_lambda': 0.3627053112832241, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7242792609710197}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.309255310273288, 'max_leaves': 13.984109913290313, 'min_child_weight': 2.6247924076853835, 'learning_rate': 0.024743560869010684, 'subsample': 0.6, 'reg_alpha': 1.0761385638915987e-09, 'reg_lambda': 0.33739686522245377, 'colsample_bylevel': 0.793618478379159, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.867359387117439, 'max_leaves': 4.0, 'min_child_weight': 2.1205520248729397, 'learning_rate': 0.4122825391936642, 'subsample': 1.0, 'log_max_bin': 5.301575077607657, 'reg_alpha': 2.2575961701094338e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.401119596872911, 'max_leaves': 10.315569896983023, 'min_child_weight': 0.33541983913965323, 'learning_rate': 1.0, 'subsample': 0.6485913943786155, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.653451310609729, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.156498588172234, 'min_child_weight': 2.0573388021621124, 'learning_rate': 0.052159588595608264, 'subsample': 0.6, 'reg_alpha': 9.447608758803305e-10, 'reg_lambda': 0.5200117890783629, 'colsample_bylevel': 0.7911879896985134, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.57091070456043, 'max_leaves': 30.210010400197877, 'min_child_weight': 10.291209190343986, 'learning_rate': 0.04048694792060505, 'subsample': 1.0, 'reg_alpha': 1.2346003036588213e-10, 'reg_lambda': 0.23533242437327273, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.937830820798973, 'criterion': 1.0, 'max_features': 0.1}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 37.36744356549883, 'criterion': 2.0, 'max_features': 0.5329353875855665}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.905282155204792, 'max_leaves': 18.644627278866334, 'min_child_weight': 1.7006799585983592, 'learning_rate': 0.04470339822696004, 'subsample': 0.8293605537654475, 'reg_alpha': 3.543044032704801e-10, 'reg_lambda': 0.42840810404968643, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 52.103383041814254, 'min_child_weight': 12.449434640196298, 'learning_rate': 0.047239866112840354, 'subsample': 1.0, 'reg_alpha': 3.2920902294188684e-10, 'reg_lambda': 0.28565200767607574, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.744666663363084, 'min_child_weight': 7.751162695035081, 'learning_rate': 0.06467853506730303, 'subsample': 1.0, 'reg_alpha': 1.4035212711412795e-10, 'reg_lambda': 0.5993186565122014, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.93165404564377, 'max_leaves': 39.25889041055284, 'min_child_weight': 2.7315262008400145, 'learning_rate': 0.03265043874035031, 'subsample': 0.6, 'reg_alpha': 8.310540696674767e-10, 'reg_lambda': 0.20419126569273197, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.617866758968325, 'min_child_weight': 4.804814984333575, 'learning_rate': 0.062277821677556924, 'subsample': 0.6, 'reg_alpha': 1.3130755400770398e-10, 'reg_lambda': 0.3063465930675847, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.970049169737061, 'max_leaves': 112.0, 'min_child_weight': 4.406518056885938, 'learning_rate': 0.033909062490405005, 'subsample': 1.0, 'reg_alpha': 8.882977625022212e-10, 'reg_lambda': 0.39946791573913853, 'colsample_bylevel': 0.6905119142427382, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.068376490018714, 'max_leaves': 38.78615610726731, 'min_child_weight': 1.1694004030220937, 'learning_rate': 0.021665280438994038, 'subsample': 1.0, 'reg_alpha': 8.328017987477389e-10, 'reg_lambda': 0.18243910292765156, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7220582778666038}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.046260168086434, 'min_child_weight': 18.105435857338254, 'learning_rate': 0.09747312309097585, 'subsample': 0.6, 'reg_alpha': 1.4005758224834727e-10, 'reg_lambda': 0.6707752508245101, 'colsample_bylevel': 0.7915341459865364, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.879504945894281, 'max_leaves': 4.941093896629733, 'min_child_weight': 0.4399907689969048, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.43903360160096e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.6165685036795645, 'learning_rate': 0.5262191968334042, 'subsample': 0.679606411312816, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.8089675726759731, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.783382278089122, 'max_leaves': 4.0, 'min_child_weight': 2.516910237258532, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 5.537479223355399, 'reg_alpha': 1.1478162708647228e-10, 'reg_lambda': 0.4499420390222785, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.367658731063283, 'max_leaves': 5.775197922919103, 'min_child_weight': 0.28259856412077783, 'learning_rate': 0.7221616848946357, 'subsample': 0.7900051150433115, 'log_max_bin': 3.0, 'reg_alpha': 1.5187818324204927e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 74.14514733746911, 'min_child_weight': 4.35202268936616, 'learning_rate': 0.026692565238280085, 'subsample': 1.0, 'reg_alpha': 1.4053796551622858e-10, 'reg_lambda': 0.1581311014387094, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.484469903468455, 'max_leaves': 13.101978911190482, 'min_child_weight': 4.864980148241285, 'learning_rate': 0.07911500929862102, 'subsample': 0.937374301789939, 'reg_alpha': 8.299551370068327e-10, 'reg_lambda': 0.7738871981102724, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.309215097479316, 'min_child_weight': 3.337803869931089, 'learning_rate': 0.6457671175327147, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.1033641206053746e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.388388969758708, 'max_leaves': 4.0, 'min_child_weight': 0.21309676865011012, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.1638787348544666, 'reg_alpha': 1.579970262391264e-10, 'reg_lambda': 0.6037469639283055, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.156806353181867, 'max_leaves': 4.697619587007342, 'min_child_weight': 0.34577857993162603, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.4965667956211757, 'reg_alpha': 1e-10, 'reg_lambda': 0.8916086377755121, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.588472003073152, 'max_leaves': 4.0, 'min_child_weight': 2.057025103205625, 'learning_rate': 0.2527697475233305, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 3.2004743536439415e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9685971990606469}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.123444821129846, 'max_leaves': 4.276320255774078, 'min_child_weight': 0.3108625348482983, 'learning_rate': 0.403817570541972, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.325162235909461, 'max_leaves': 4.0, 'min_child_weight': 2.288069932316712, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 6.36782606475353, 'reg_alpha': 2.5637274014818147e-10, 'reg_lambda': 0.43885210511491707, 'colsample_bytree': 0.736795432385905}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.256787637048585, 'max_leaves': 7.639199460845309, 'min_child_weight': 0.17602250198171915, 'learning_rate': 0.5104232946769787, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8173286782724274}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.334239991532035, 'max_leaves': 4.0, 'min_child_weight': 4.040819844408399, 'learning_rate': 1.0, 'subsample': 0.7029754536245172, 'log_max_bin': 3.4745897729129807, 'reg_alpha': 2.4203876738514904e-10, 'reg_lambda': 0.6922073993286424, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.246279778074006, 'max_leaves': 29.6139504919809, 'min_child_weight': 2.357490423387462, 'learning_rate': 0.15558427293800076, 'subsample': 1.0, 'reg_alpha': 1.8592106590034322e-10, 'reg_lambda': 0.5041872303124905, 'colsample_bylevel': 0.8671152075560052, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.80373407275357, 'min_child_weight': 8.98095015717578, 'learning_rate': 0.013573239165838488, 'subsample': 0.6, 'reg_alpha': 6.273641228326655e-10, 'reg_lambda': 0.24271863242281405, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.12194054141132, 'max_leaves': 10.251969476471716, 'min_child_weight': 1.1013427213242526, 'learning_rate': 0.6824547962454259, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 2.3678667943997847e-10, 'reg_lambda': 0.2525234904133021, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.969882311618447, 'max_leaves': 4.0, 'min_child_weight': 0.6458255049026985, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.2968088180165207, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 33.79591828133144, 'max_leaves': 5.377426009032735, 'min_child_weight': 0.36171788655763804, 'learning_rate': 0.7683786111433499, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.0247213001041745e-10, 'reg_lambda': 0.5791743130283499, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.9663811094307309, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 4.2912226202408466, 'reg_alpha': 1.7012259811216532e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.935064129261542}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.4781735397633105, 'max_leaves': 28.918064229199814, 'min_child_weight': 2.854683794944733, 'learning_rate': 0.010040106822397704, 'subsample': 1.0, 'reg_alpha': 2.0150388678483076e-10, 'reg_lambda': 0.3797405339908384, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 33.59312535870635, 'min_child_weight': 7.416759791734455, 'learning_rate': 0.21033466918096563, 'subsample': 0.6, 'reg_alpha': 5.788484196795339e-10, 'reg_lambda': 0.3222611864485515, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8214518503768569}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.87175624558494, 'max_leaves': 85.92616336887001, 'min_child_weight': 9.007011742518392, 'learning_rate': 0.041131772912780175, 'subsample': 1.0, 'reg_alpha': 3.3946874873364457e-10, 'reg_lambda': 0.3963682833571002, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.305615410900275, 'min_child_weight': 2.35066907801567, 'learning_rate': 0.051341879950290666, 'subsample': 0.6, 'reg_alpha': 3.4359630116114687e-10, 'reg_lambda': 0.3087422484715866, 'colsample_bylevel': 0.6250312056605536, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.709509215682953, 'criterion': 1.0, 'max_features': 0.5189353687937883}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.748992962832038, 'criterion': 2.0, 'max_features': 0.1}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.279882983526463, 'max_leaves': 14.17459243720409, 'min_child_weight': 0.3412849583411207, 'learning_rate': 0.9848230693464356, 'subsample': 1.0, 'log_max_bin': 5.0038376545569285, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.622277591857972, 'max_leaves': 4.0, 'min_child_weight': 2.0841094858895435, 'learning_rate': 1.0, 'subsample': 0.6679072261053003, 'log_max_bin': 3.0, 'reg_alpha': 2.4639070699011074e-10, 'reg_lambda': 0.4545823334302033, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.203293465713582, 'max_leaves': 29.97864662053566, 'min_child_weight': 6.960609053122315, 'learning_rate': 0.08114399018454695, 'subsample': 1.0, 'reg_alpha': 2.2576584108484648e-10, 'reg_lambda': 0.2511074931227845, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.404670200061005, 'min_child_weight': 3.041760257885003, 'learning_rate': 0.02602512573300524, 'subsample': 0.6, 'reg_alpha': 5.166424019869673e-10, 'reg_lambda': 0.4873436212700185, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.444084627191283, 'max_leaves': 6.0207441015733165, 'min_child_weight': 0.21699490138495248, 'learning_rate': 0.6110975762605357, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.624984237559483, 'max_leaves': 4.0, 'min_child_weight': 3.277843002441489, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 6.039079450616094, 'reg_alpha': 2.202200214380483e-10, 'reg_lambda': 0.9735759799160357, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.446350753729656, 'max_leaves': 22.862547695073793, 'min_child_weight': 5.457840054675632, 'learning_rate': 0.015660858916526642, 'subsample': 0.858807304700824, 'reg_alpha': 2.635841209813274e-10, 'reg_lambda': 0.3587400259222378, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 42.490809411933995, 'min_child_weight': 3.8792826056388234, 'learning_rate': 0.13484461856699623, 'subsample': 1.0, 'reg_alpha': 4.4251605897362056e-10, 'reg_lambda': 0.341126236783572, 'colsample_bylevel': 0.6697342620678276, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.829709962440239, 'max_leaves': 76.41176258032887, 'min_child_weight': 2.3060400309964755, 'learning_rate': 0.019390081174654905, 'subsample': 1.0, 'reg_alpha': 3.559014494832213e-10, 'reg_lambda': 0.9530647399873071, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7927706109304514}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.713332659502312, 'min_child_weight': 9.18132543402252, 'learning_rate': 0.10891045416513898, 'subsample': 0.841503955398455, 'reg_alpha': 3.2773175437764526e-10, 'reg_lambda': 0.1284022269338428, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.756696853761857, 'max_leaves': 5.4780195449364, 'min_child_weight': 1.274575496187461, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 5.526557371901049, 'reg_alpha': 1.6320175799725457e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.5580487159824821, 'learning_rate': 0.39503728509056757, 'subsample': 0.616482060878307, 'log_max_bin': 3.0, 'reg_alpha': 1.0681762994092908e-10, 'reg_lambda': 0.3442387766824915, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.452335247262635, 'max_leaves': 37.393031727074536, 'min_child_weight': 8.618007686307543, 'learning_rate': 0.043828467991910626, 'subsample': 1.0, 'reg_alpha': 1.5224091206362484e-09, 'reg_lambda': 0.15963394082568066, 'colsample_bylevel': 0.8836938353346033, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.979390060508294, 'min_child_weight': 2.456774785905715, 'learning_rate': 0.04818289672868206, 'subsample': 0.9039680159884038, 'reg_alpha': 1e-10, 'reg_lambda': 0.7666016036033814, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7665206607327929}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 23.621592222351293, 'min_child_weight': 5.4853042390980855, 'learning_rate': 0.07835779505182357, 'subsample': 1.0, 'reg_alpha': 1.5135841582458412e-10, 'reg_lambda': 0.5011683365476832, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.34384458293662, 'max_leaves': 41.12543081932576, 'min_child_weight': 3.8598595566584804, 'learning_rate': 0.02695051010092749, 'subsample': 0.6, 'reg_alpha': 7.706225371694062e-10, 'reg_lambda': 0.24418069958186747, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.346831158688465, 'max_leaves': 47.2294935991698, 'min_child_weight': 2.166027422712576, 'learning_rate': 0.04640604050890472, 'subsample': 1.0, 'reg_alpha': 1.6693846239113587e-10, 'reg_lambda': 0.2627017218930686, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.56867611215945, 'min_child_weight': 9.774808835036403, 'learning_rate': 0.04550663068583395, 'subsample': 0.6, 'reg_alpha': 6.987018135544802e-10, 'reg_lambda': 0.46583491780958497, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8929296950798283}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.694672344366083, 'max_leaves': 17.407951797756105, 'min_child_weight': 1.314894337624886, 'learning_rate': 1.0, 'subsample': 0.9134244123016897, 'log_max_bin': 3.297456912955763, 'reg_alpha': 1e-10, 'reg_lambda': 0.396208475236569, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.528253819958153, 'max_leaves': 4.0, 'min_child_weight': 0.540937167890566, 'learning_rate': 0.5903228000134635, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.7727425033669165e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.134994286630247, 'max_leaves': 4.0, 'min_child_weight': 0.9956648693213924, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.5004930816243265, 'reg_alpha': 6.395656907183349e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.053766523787285, 'max_leaves': 5.364791703004518, 'min_child_weight': 0.7143721155441848, 'learning_rate': 0.9625776823583275, 'subsample': 0.7502397131929892, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.31769562610136004, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.618081721125302, 'max_leaves': 112.0, 'min_child_weight': 6.232150746159772, 'learning_rate': 0.03831802839743301, 'subsample': 1.0, 'reg_alpha': 2.8144593996119686e-10, 'reg_lambda': 0.4033331796913628, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8197399201724619}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.647187111903361, 'min_child_weight': 3.3973029297323145, 'learning_rate': 0.055111983454035146, 'subsample': 0.6, 'reg_alpha': 4.144320093612446e-10, 'reg_lambda': 0.30341078093336615, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.057690537595139, 'max_leaves': 4.0, 'min_child_weight': 0.7486868500089547, 'learning_rate': 0.27205566556237365, 'subsample': 0.6, 'log_max_bin': 6.439481087922761, 'reg_alpha': 1.3624763602830648e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.044329597985905, 'max_leaves': 7.574521894211035, 'min_child_weight': 0.9500303351950687, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.2794955934382596e-10, 'reg_lambda': 0.3568742004301637, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.357529927229372, 'max_leaves': 4.0, 'min_child_weight': 1.4253627005803498, 'learning_rate': 1.0, 'subsample': 0.7327677357556713, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.147249707440546, 'min_child_weight': 0.49901349234166514, 'learning_rate': 0.37021640926895183, 'subsample': 1.0, 'log_max_bin': 4.693819149638372, 'reg_alpha': 2.0638480945747272e-10, 'reg_lambda': 0.7264487992919422, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.579097008188613, 'min_child_weight': 11.566888475734897, 'learning_rate': 0.03920629538845882, 'subsample': 1.0, 'reg_alpha': 7.682207947786337e-10, 'reg_lambda': 0.3764984076418664, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.012638834282205, 'max_leaves': 71.53996736283851, 'min_child_weight': 1.8304407475595406, 'learning_rate': 0.05386335347695777, 'subsample': 0.6, 'reg_alpha': 1.5183161822415054e-10, 'reg_lambda': 0.32503626188746193, 'colsample_bylevel': 0.7910235354210411, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.056516850340405, 'max_leaves': 82.08285720241857, 'min_child_weight': 2.574410564963648, 'learning_rate': 0.04886833164611187, 'subsample': 0.8819047150984841, 'reg_alpha': 3.03044058487743e-10, 'reg_lambda': 0.5377243020529673, 'colsample_bylevel': 0.6447299386976846, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.834970052114702, 'min_child_weight': 8.224214224649511, 'learning_rate': 0.043213722995976214, 'subsample': 1.0, 'reg_alpha': 3.8489520964952585e-10, 'reg_lambda': 0.2275806292542079, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7252991560517347}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.644272323237041, 'max_leaves': 6.069669618646548, 'min_child_weight': 0.6425775243188535, 'learning_rate': 0.27457511513256416, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.0637732782962098e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.425301656620781, 'max_leaves': 4.0, 'min_child_weight': 1.1069095823482389, 'learning_rate': 1.0, 'subsample': 0.7579444091604389, 'log_max_bin': 3.036191672930273, 'reg_alpha': 1e-10, 'reg_lambda': 0.3956625126203517, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.453017398146603, 'max_leaves': 35.012505916308115, 'min_child_weight': 6.594757221411694, 'learning_rate': 0.022176032851370892, 'subsample': 1.0, 'reg_alpha': 1.6275430183220515e-09, 'reg_lambda': 0.20755361180991078, 'colsample_bylevel': 0.6864855303236594, 'colsample_bytree': 0.891232798595884}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.745747736672296, 'min_child_weight': 3.2105054481338087, 'learning_rate': 0.0952281483881383, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.5896097589406083, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.168466266474419, 'max_leaves': 6.7104454441648835, 'min_child_weight': 1.8704456521294006, 'learning_rate': 0.027702240702774595, 'subsample': 0.9632685847082831, 'reg_alpha': 5.957727095018654e-10, 'reg_lambda': 0.5638357904979687, 'colsample_bylevel': 0.6295336688822181, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.295861839715595, 'max_leaves': 112.0, 'min_child_weight': 11.319497021663407, 'learning_rate': 0.0762314705762796, 'subsample': 1.0, 'reg_alpha': 1.9577970686540452e-10, 'reg_lambda': 0.21704126820047076, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.24361568635818, 'max_leaves': 4.0, 'min_child_weight': 0.5514402627698417, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 7.129844677879486, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.140565539647096, 'max_leaves': 10.484609476781854, 'min_child_weight': 1.289849992993742, 'learning_rate': 0.5581396754842061, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 4.3954499841303337e-10, 'reg_lambda': 0.721526669716112, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.792414494459417, 'max_leaves': 10.038855269456121, 'min_child_weight': 1.3988975391730272, 'learning_rate': 0.485547929687292, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.5567487662364595e-10, 'reg_lambda': 0.3624697352423914, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.356531832928106, 'max_leaves': 4.0, 'min_child_weight': 0.5084541213008532, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 4.873993914795644, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 49.600598078955194, 'min_child_weight': 2.513538830883715, 'learning_rate': 0.0311469300345001, 'subsample': 1.0, 'reg_alpha': 7.015478705315833e-10, 'reg_lambda': 0.2030426117289403, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.3267815933270874, 'max_leaves': 19.585412160479628, 'min_child_weight': 8.423384484184853, 'learning_rate': 0.06780066429312448, 'subsample': 0.6, 'reg_alpha': 1.6626122225458587e-10, 'reg_lambda': 0.6027091258551392, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7571966498267748}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 34.10434356607512, 'min_child_weight': 1.6935198837522791, 'learning_rate': 0.10813880087631388, 'subsample': 1.0, 'reg_alpha': 1.4714952791247632e-10, 'reg_lambda': 0.4936858088912633, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.838565362191343, 'max_leaves': 28.48458745146374, 'min_child_weight': 12.502069914615213, 'learning_rate': 0.019528444276407084, 'subsample': 0.6, 'reg_alpha': 7.926644963078639e-10, 'reg_lambda': 0.24788161381695278, 'colsample_bylevel': 0.9585716685927599, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.5109498736722236, 'max_leaves': 4.0, 'min_child_weight': 0.5139968727982696, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.2945895412157347, 'reg_alpha': 1e-10, 'reg_lambda': 0.3269744125338349, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.299681406386963, 'max_leaves': 7.81773755299447, 'min_child_weight': 1.3838123473356319, 'learning_rate': 0.4955736037147706, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.8440963490605174e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.510241675065789, 'max_leaves': 35.56750427932605, 'min_child_weight': 5.930543438243325, 'learning_rate': 0.01851969729639695, 'subsample': 1.0, 'reg_alpha': 1.7684646694217868e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7223991179496467}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.312800728256178, 'min_child_weight': 3.5700782245232974, 'learning_rate': 0.11402899913712031, 'subsample': 0.6, 'reg_alpha': 6.5955632838749e-10, 'reg_lambda': 0.10171328689602988, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.127843332249707, 'max_leaves': 4.0, 'min_child_weight': 1.28552163454153, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 5.6773579792062066, 'reg_alpha': 1.9327882793551677e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8797882058648472}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.680224372164878, 'max_leaves': 15.137656998910682, 'min_child_weight': 0.5532969651839563, 'learning_rate': 0.6105098650573167, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.378275262556992, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.068946781815089, 'max_leaves': 18.53645393038695, 'min_child_weight': 4.099927745814867, 'learning_rate': 0.010797351205025982, 'subsample': 0.6585669386370098, 'reg_alpha': 1.633834766959549e-10, 'reg_lambda': 0.5730430207289023, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.400931278904835, 'max_leaves': 52.407443215993375, 'min_child_weight': 5.164116370117628, 'learning_rate': 0.19558338956758006, 'subsample': 1.0, 'reg_alpha': 7.139045439811651e-10, 'reg_lambda': 0.21355401008258343, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.871505381800736, 'max_leaves': 4.0, 'min_child_weight': 0.5733826645381127, 'learning_rate': 0.36759831647360264, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.275853108042925e-10, 'reg_lambda': 0.7453783557674777, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.749987033389854, 'max_leaves': 9.730157252434319, 'min_child_weight': 1.2404895771362634, 'learning_rate': 1.0, 'subsample': 0.6520694885147202, 'log_max_bin': 9.15585210992519, 'reg_alpha': 1.3663661499559782e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.060056442817944, 'max_leaves': 63.4285248144742, 'min_child_weight': 6.520686774296916, 'learning_rate': 0.06448681560684708, 'subsample': 1.0, 'reg_alpha': 3.377125318217469e-10, 'reg_lambda': 0.49034727638754616, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.315635348986545, 'min_child_weight': 3.246974547515345, 'learning_rate': 0.03274750857454888, 'subsample': 0.7397620025853716, 'reg_alpha': 3.4538311562050237e-10, 'reg_lambda': 0.24956931733780946, 'colsample_bylevel': 0.6808589893487883, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.997761304159575, 'criterion': 1.0, 'max_features': 0.9137980704323192}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.360171495549872, 'criterion': 2.0, 'max_features': 0.1}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.031019354307228, 'max_leaves': 26.233174883585793, 'min_child_weight': 2.409116956054648, 'learning_rate': 0.05825134618761555, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.6159928770493079, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.442339167921639, 'max_leaves': 37.03128428387334, 'min_child_weight': 8.788491540541774, 'learning_rate': 0.03625293980724431, 'subsample': 0.6, 'reg_alpha': 1.3669412842673902e-09, 'reg_lambda': 0.19866404237122107, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9800722269163713}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.014813243726861, 'max_leaves': 103.96030970131656, 'min_child_weight': 4.8513098319614265, 'learning_rate': 0.024358503153473352, 'subsample': 0.6090495431375659, 'reg_alpha': 4.145703462551619e-10, 'reg_lambda': 0.8080807139898704, 'colsample_bylevel': 0.8798202345665108, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.34441383999002, 'min_child_weight': 4.364286083929995, 'learning_rate': 0.08669590794331924, 'subsample': 1.0, 'reg_alpha': 2.813520250020312e-10, 'reg_lambda': 0.15143986597857118, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.49252193468675, 'max_leaves': 4.0, 'min_child_weight': 0.670260341994963, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 4.1418307179636227e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.63455777636624, 'max_leaves': 5.358568334751247, 'min_child_weight': 1.0611924568789313, 'learning_rate': 0.5456144047813339, 'subsample': 0.6681130260216571, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.7758188353184662, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.57325357547517, 'max_leaves': 62.023286153814574, 'min_child_weight': 10.264948682028576, 'learning_rate': 0.09451561165961599, 'subsample': 0.6, 'reg_alpha': 4.3440269906373846e-10, 'reg_lambda': 0.6830379514291484, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.662636035979933, 'min_child_weight': 2.0626020299088212, 'learning_rate': 0.022343214099231033, 'subsample': 1.0, 'reg_alpha': 2.6850709416878825e-10, 'reg_lambda': 0.17916374159070153, 'colsample_bylevel': 0.6945796785076074, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.771887231558641, 'max_leaves': 4.0, 'min_child_weight': 0.2439314667383804, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.6019710967398647, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.303377706628026, 'max_leaves': 6.63110478006659, 'min_child_weight': 2.915881368568981, 'learning_rate': 0.6964958850003737, 'subsample': 1.0, 'log_max_bin': 3.1115367802444522, 'reg_alpha': 3.778158566273164e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8194138100489408}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.668023615067309, 'max_leaves': 6.164682598696637, 'min_child_weight': 1.770261320355087, 'learning_rate': 1.0, 'subsample': 0.8277218552083652, 'log_max_bin': 3.0, 'reg_alpha': 1.0550207409867887e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.159541730290483, 'max_leaves': 4.0, 'min_child_weight': 0.40179108637332517, 'learning_rate': 0.6355651789668284, 'subsample': 1.0, 'log_max_bin': 3.67318542018781, 'reg_alpha': 1.6523679880600664e-10, 'reg_lambda': 0.3442707598928828, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.916523339521811, 'max_leaves': 4.0, 'min_child_weight': 2.5065861804492036, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.365825084963715, 'max_leaves': 5.906994257313048, 'min_child_weight': 0.2837625231551705, 'learning_rate': 0.9298979220327424, 'subsample': 0.6, 'log_max_bin': 6.1179428924820565, 'reg_alpha': 3.732958380710119e-10, 'reg_lambda': 0.713328323181619, 'colsample_bytree': 0.9047690728071575}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.5176775395540594, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.2529565909030738, 'reg_alpha': 3.8804189323355627e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8205985399806199}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.74870109269348, 'max_leaves': 9.290555322623549, 'min_child_weight': 0.4686603053235815, 'learning_rate': 0.37353779112539925, 'subsample': 0.6324316795316001, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.6024261172413697, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.395053413535056, 'max_leaves': 4.0, 'min_child_weight': 1.6329563701568017, 'learning_rate': 0.9020788717773501, 'subsample': 1.0, 'log_max_bin': 6.981762055648364, 'reg_alpha': 1.5733072244024173e-10, 'reg_lambda': 0.6567885337146045, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.444022731153852, 'min_child_weight': 0.43557515195696783, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.1080369250882478e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.897423263625473, 'min_child_weight': 1.4529882910807348, 'learning_rate': 0.825496840169879, 'subsample': 0.6, 'log_max_bin': 4.816131013430963, 'reg_alpha': 1.2401397321160806e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9860485161973102}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.96910953269592, 'max_leaves': 4.0, 'min_child_weight': 0.48952577487124815, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.4057145771560555e-10, 'reg_lambda': 0.8039640726397999, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 95.95138744518376, 'min_child_weight': 7.056771416310778, 'learning_rate': 0.10595289646914785, 'subsample': 1.0, 'reg_alpha': 2.931998765572011e-10, 'reg_lambda': 0.9010362380050363, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7386451251144528}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.933042022094705, 'max_leaves': 10.12437842378894, 'min_child_weight': 3.000310303310183, 'learning_rate': 0.019931333804031507, 'subsample': 0.7443399040546528, 'reg_alpha': 3.9781806116117983e-10, 'reg_lambda': 0.13581655194850228, 'colsample_bylevel': 0.6805551198969498, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 43.349087896913105, 'criterion': 1.0948463232319503, 'max_features': 0.6890252594088471}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 2.0, 'max_features': 0.38615012601707366}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.892802174183887, 'max_leaves': 4.0, 'min_child_weight': 1.0722077985487481, 'learning_rate': 1.0, 'subsample': 0.9731880583419148, 'log_max_bin': 3.8427792322945056, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9850987293847369}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.632264289145834, 'max_leaves': 16.21960323737821, 'min_child_weight': 0.663374413087529, 'learning_rate': 0.9864421707614456, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.9393315251433995e-10, 'reg_lambda': 0.25020659901664294, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.295598757521136, 'max_leaves': 4.308327040711202, 'min_child_weight': 0.30015880710925624, 'learning_rate': 1.0, 'subsample': 0.8674938719877833, 'log_max_bin': 3.668586415723686, 'reg_alpha': 1.6343320428360597e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.106226121202427, 'max_leaves': 4.0, 'min_child_weight': 2.3696629991311466, 'learning_rate': 0.2756970813059316, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.0666635992285009e-10, 'reg_lambda': 0.4226852616222705, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.33869778475484, 'max_leaves': 4.398128768159944, 'min_child_weight': 2.3371856476373685, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 7.429524969586048, 'reg_alpha': 1e-10, 'reg_lambda': 0.8748948721815781, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.73448227603892, 'max_leaves': 4.0, 'min_child_weight': 0.3043297907417695, 'learning_rate': 0.6123788230502967, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 3.1224532787327125e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8458715849640791}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.550666026518722, 'max_leaves': 25.677638396009314, 'min_child_weight': 2.9556090473141916, 'learning_rate': 0.017383059476296616, 'subsample': 0.763921389854507, 'reg_alpha': 1.7262732875652402e-10, 'reg_lambda': 0.9535289757571418, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7126228908582403}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 37.83245724550778, 'min_child_weight': 7.163499518889958, 'learning_rate': 0.12148509011950312, 'subsample': 1.0, 'reg_alpha': 6.756763674956356e-10, 'reg_lambda': 0.12833971293774551, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 23.646808352025477, 'min_child_weight': 7.033716099241842, 'learning_rate': 0.07633557172169245, 'subsample': 0.6, 'reg_alpha': 9.235064487994437e-10, 'reg_lambda': 0.34954194605640965, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.264946544353775, 'max_leaves': 41.081576097749426, 'min_child_weight': 3.0101448067749264, 'learning_rate': 0.027664462312928052, 'subsample': 1.0, 'reg_alpha': 1.2630145309360324e-10, 'reg_lambda': 0.35010286006345254, 'colsample_bylevel': 0.9291494009113169, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.332973111033969, 'max_leaves': 4.0, 'min_child_weight': 0.6159648672981668, 'learning_rate': 0.7128787460037049, 'subsample': 1.0, 'log_max_bin': 5.04686958143758, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.96277734805117, 'max_leaves': 4.323431560203817, 'min_child_weight': 1.1547334220375987, 'learning_rate': 1.0, 'subsample': 0.8011846913347919, 'log_max_bin': 3.0, 'reg_alpha': 2.1164153040163224e-10, 'reg_lambda': 0.8907822446051739, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 36.145002616089926, 'min_child_weight': 2.788383451249029, 'learning_rate': 0.033129616794320194, 'subsample': 1.0, 'reg_alpha': 1.4933308921569684e-10, 'reg_lambda': 0.09114892369409, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.375735308269073, 'max_leaves': 26.876416834181992, 'min_child_weight': 7.593110617185024, 'learning_rate': 0.06374304176656294, 'subsample': 0.8034910550008515, 'reg_alpha': 7.810740877141288e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 37.87080530269035, 'min_child_weight': 16.096703926894126, 'learning_rate': 0.024260775785356736, 'subsample': 0.6, 'reg_alpha': 1.4684968935200062e-10, 'reg_lambda': 0.6519110653597442, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9525417637957456}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.545963475986641, 'max_leaves': 25.651637165307907, 'min_child_weight': 1.3153316408514741, 'learning_rate': 0.08704513679670549, 'subsample': 1.0, 'reg_alpha': 7.942829633442051e-10, 'reg_lambda': 0.18771829706397683, 'colsample_bylevel': 0.9012878932528434, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.41349347615532, 'max_leaves': 5.270418025239842, 'min_child_weight': 0.3266399878202101, 'learning_rate': 0.856979421660086, 'subsample': 1.0, 'log_max_bin': 3.7995246336907864, 'reg_alpha': 1e-10, 'reg_lambda': 0.47832840324397774, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 2.17755096005468, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 2.4722885679887795e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.00941631691208, 'min_child_weight': 1.2389861660904207, 'learning_rate': 0.837225201485838, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.1526856251918, 'max_leaves': 4.0, 'min_child_weight': 0.5740784187401806, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.8554324647238385, 'reg_alpha': 3.0916570425708296e-10, 'reg_lambda': 0.9582677890770471, 'colsample_bytree': 0.7476534182026601}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.880379753100124, 'max_leaves': 9.18491136198593, 'min_child_weight': 0.3825941643381267, 'learning_rate': 0.5373663199555411, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 3.7868889112823416e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.249694055014524, 'max_leaves': 4.0, 'min_child_weight': 1.8590853843801471, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.777415724740891, 'reg_alpha': 1e-10, 'reg_lambda': 0.6521830378296166, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.092672377128722, 'max_leaves': 7.503564034643826, 'min_child_weight': 0.9946430231022705, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 5.588312087220817, 'reg_alpha': 1e-10, 'reg_lambda': 0.34457316328720233, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.316277723789574, 'max_leaves': 4.0, 'min_child_weight': 0.7151060255283298, 'learning_rate': 0.4816923497753704, 'subsample': 0.6461908867420576, 'log_max_bin': 3.0, 'reg_alpha': 3.5135251385225817e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.339108709839257, 'max_leaves': 4.0, 'min_child_weight': 0.383460554380651, 'learning_rate': 0.7254502260630542, 'subsample': 0.7355125826948906, 'log_max_bin': 4.275895007439849, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.631180414212107, 'max_leaves': 9.826119770699083, 'min_child_weight': 1.8548849704214518, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 5.772981693072961e-10, 'reg_lambda': 0.6994486464505744, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.085033011781119, 'max_leaves': 4.864537686391398, 'min_child_weight': 0.9069353338152975, 'learning_rate': 0.9515099084907411, 'subsample': 0.6367817968295347, 'log_max_bin': 3.0, 'reg_alpha': 2.387813345421898e-10, 'reg_lambda': 0.3090382988673339, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.327973707866239, 'max_leaves': 4.0, 'min_child_weight': 0.7842623311167658, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 6.194429232197722, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.666017577248165, 'max_leaves': 4.078933884908065, 'min_child_weight': 1.1825325267940983, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 4.560858548306594, 'reg_alpha': 1e-10, 'reg_lambda': 0.3167466894792612, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.164769421821987, 'max_leaves': 4.0, 'min_child_weight': 0.6014846974217684, 'learning_rate': 0.5457265818023009, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.8564013600922553e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 40.64170312695197, 'min_child_weight': 2.127903542531833, 'learning_rate': 0.12642343229476097, 'subsample': 0.7969611460797585, 'reg_alpha': 4.4874586628757576e-10, 'reg_lambda': 0.18225646137421264, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.078355041934257, 'max_leaves': 23.902742307529074, 'min_child_weight': 9.949935965269574, 'learning_rate': 0.016704043773363764, 'subsample': 1.0, 'reg_alpha': 2.599248598981744e-10, 'reg_lambda': 0.6714474433651487, 'colsample_bylevel': 0.629493134938109, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.946047469358654, 'min_child_weight': 0.7227127599972759, 'learning_rate': 0.8501538747681918, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.3861585153847761, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.08100078731619, 'max_leaves': 4.0, 'min_child_weight': 0.9841741538821431, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0738579813460496, 'reg_alpha': 1.9996192827757752e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.068165908757901, 'max_leaves': 4.0, 'min_child_weight': 1.0996448773490815, 'learning_rate': 0.4215663109831067, 'subsample': 0.6, 'log_max_bin': 6.723036640677177, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7943732457447444}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.952486014200622, 'max_leaves': 9.653212244440194, 'min_child_weight': 0.6468226549509525, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 3.518424006737285e-10, 'reg_lambda': 0.986080172970136, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.974702035854396, 'max_leaves': 7.140934035460083, 'min_child_weight': 0.30831559841560013, 'learning_rate': 0.5105363412214976, 'subsample': 0.6, 'log_max_bin': 7.104476737639709, 'reg_alpha': 1.9835930970191738e-10, 'reg_lambda': 0.835668120564538, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.138129436010983, 'max_leaves': 4.0, 'min_child_weight': 2.3069712422119166, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.238553604864559, 'min_child_weight': 1.408364193397629, 'learning_rate': 0.7949051520135716, 'subsample': 1.0, 'log_max_bin': 3.0046949150574185, 'reg_alpha': 1e-10, 'reg_lambda': 0.447590227957655, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 25.952755457201228, 'max_leaves': 4.0, 'min_child_weight': 0.505036426234482, 'learning_rate': 1.0, 'subsample': 0.6703543026530207, 'log_max_bin': 3.0, 'reg_alpha': 4.6189791331418595e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8358840716316567}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.936520886751364, 'min_child_weight': 2.42982180719842, 'learning_rate': 0.9736922456292708, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 4.4796449830664513e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.78379664094228}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.783080163849966, 'max_leaves': 4.0, 'min_child_weight': 0.29272731727197987, 'learning_rate': 1.0, 'subsample': 0.9578586960871371, 'log_max_bin': 4.719683556535388, 'reg_alpha': 1e-10, 'reg_lambda': 0.8531570201872787, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.635903614780534, 'max_leaves': 4.0, 'min_child_weight': 0.5437511752185887, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 3.068693221268674e-10, 'reg_lambda': 0.23207833731032299, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.071326946850688, 'max_leaves': 8.236565354885947, 'min_child_weight': 1.308089529708536, 'learning_rate': 0.5164123306115602, 'subsample': 0.7815243690783642, 'log_max_bin': 4.600985212834619, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.710889012356729}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.253417435420818, 'max_leaves': 23.75397030215242, 'min_child_weight': 6.48462683225438, 'learning_rate': 0.02599124488473832, 'subsample': 1.0, 'reg_alpha': 9.472728767967433e-10, 'reg_lambda': 0.4016648409232699, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.210062952007795, 'max_leaves': 40.896243635305275, 'min_child_weight': 3.2650304383207507, 'learning_rate': 0.08124976531118695, 'subsample': 0.6, 'reg_alpha': 1.2313263609859542e-10, 'reg_lambda': 0.30467101562885246, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.75396049104238, 'max_leaves': 4.0, 'min_child_weight': 0.5747619301417397, 'learning_rate': 0.8942987059919019, 'subsample': 1.0, 'log_max_bin': 3.518911290367943, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.364524066918435, 'min_child_weight': 1.2375127540105915, 'learning_rate': 1.0, 'subsample': 0.7281950588925163, 'log_max_bin': 3.0, 'reg_alpha': 2.468349992359086e-10, 'reg_lambda': 0.33286278841988337, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.157772965715331, 'max_leaves': 4.0, 'min_child_weight': 0.6735137684448522, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.428801024374331, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9084956418402428}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.217785108580829, 'max_leaves': 4.6599363604976025, 'min_child_weight': 1.0560663380534694, 'learning_rate': 0.41994450616960505, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.261971409122905e-10, 'reg_lambda': 0.8933253772812919, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.39727553319305, 'min_child_weight': 5.844549164279515, 'learning_rate': 0.04827340369224935, 'subsample': 0.9363907875994663, 'reg_alpha': 2.0179995219270704e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9144116560550214, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.09173253640169, 'max_leaves': 34.20920276831218, 'min_child_weight': 3.6226068757986147, 'learning_rate': 0.043746294760848604, 'subsample': 1.0, 'reg_alpha': 5.779991776871111e-10, 'reg_lambda': 0.07633049083787946, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 39.09439133215888, 'min_child_weight': 3.3879026422304994, 'learning_rate': 0.10550824067129214, 'subsample': 1.0, 'reg_alpha': 1.1065522226608788e-10, 'reg_lambda': 0.09868106888244253, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7632664755330064}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.848281279707957, 'max_leaves': 24.848785815051745, 'min_child_weight': 6.249442863128628, 'learning_rate': 0.020015332770165078, 'subsample': 0.6, 'reg_alpha': 1.0540867754456568e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6779949414429772, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.1066453087562, 'max_leaves': 4.0, 'min_child_weight': 1.1664218606442356, 'learning_rate': 0.33055892716371876, 'subsample': 0.6, 'log_max_bin': 4.207633501265214, 'reg_alpha': 3.9381855875470155e-10, 'reg_lambda': 0.7916603365050778, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.232923982535661, 'max_leaves': 4.928543421528886, 'min_child_weight': 0.6097924285106396, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.794043450251602, 'max_leaves': 5.226760510852869, 'min_child_weight': 0.43608661371717317, 'learning_rate': 0.7568825525049904, 'subsample': 1.0, 'log_max_bin': 3.5727225086516494, 'reg_alpha': 1.5757111243620674e-10, 'reg_lambda': 0.29001280659944195, 'colsample_bytree': 0.8552910478337388}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.812686012631359, 'max_leaves': 4.0, 'min_child_weight': 1.6310411663574924, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.1063465074232782e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.244179036335314, 'max_leaves': 4.0, 'min_child_weight': 0.3503385735728137, 'learning_rate': 0.4252050510840974, 'subsample': 0.6, 'log_max_bin': 4.6276072096932666, 'reg_alpha': 1.203309485234798e-10, 'reg_lambda': 0.5235659029809762, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.145385443413982, 'min_child_weight': 2.0302509421570085, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.4487399297827515e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.11247317523195, 'max_leaves': 4.0, 'min_child_weight': 1.1310866126651045, 'learning_rate': 0.6616205273180045, 'subsample': 0.6, 'log_max_bin': 3.585394416377957, 'reg_alpha': 3.026458579103211e-10, 'reg_lambda': 0.5917778965561569, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.802163692457633, 'max_leaves': 11.844659262110895, 'min_child_weight': 0.6288423990751837, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.199599276345033, 'max_leaves': 18.18246994338018, 'min_child_weight': 7.074382427338884, 'learning_rate': 0.05809413733097498, 'subsample': 0.6, 'reg_alpha': 4.884399885402596e-10, 'reg_lambda': 0.35339278015327746, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 53.42773340518094, 'min_child_weight': 2.9928413124290647, 'learning_rate': 0.03635104408211264, 'subsample': 1.0, 'reg_alpha': 2.388015092156382e-10, 'reg_lambda': 0.3462878754156096, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.16576539554953, 'min_child_weight': 1.0083094108153956, 'learning_rate': 0.3717992996710701, 'subsample': 0.6, 'log_max_bin': 3.677373429259989, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.135061962926613, 'max_leaves': 4.0, 'min_child_weight': 0.7054136472801104, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 3.800079874963668e-10, 'reg_lambda': 0.709392448858649, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 22.68383775826463, 'min_child_weight': 3.884289928164648, 'learning_rate': 0.03449750331672705, 'subsample': 1.0, 'reg_alpha': 4.911988225343612e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.989928599686154, 'max_leaves': 42.82556448935516, 'min_child_weight': 5.4508042344990875, 'learning_rate': 0.06121551834177581, 'subsample': 0.6, 'reg_alpha': 2.374602728542241e-10, 'reg_lambda': 0.08541058622968009, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9772165371360911}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.599952560385281, 'max_leaves': 4.0, 'min_child_weight': 0.948827224638246, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 2.2793096377131966e-10, 'reg_lambda': 0.6978732958073126, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.600155936540361, 'max_leaves': 7.987335055725138, 'min_child_weight': 0.7496361830694005, 'learning_rate': 0.4425726122509755, 'subsample': 1.0, 'log_max_bin': 3.017840422194931, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9073901565329919}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.5640007094730995, 'learning_rate': 0.722693532110498, 'subsample': 1.0, 'log_max_bin': 8.980467219336672, 'reg_alpha': 1.3718086669266722e-10, 'reg_lambda': 0.43543537795092524, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.699687556757496, 'max_leaves': 7.1795505455071895, 'min_child_weight': 1.2611246885391945, 'learning_rate': 1.0, 'subsample': 0.70341381198289, 'log_max_bin': 3.0, 'reg_alpha': 1.2707912853849642e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.090506106146035, 'max_leaves': 20.951795845396454, 'min_child_weight': 2.438943709354124, 'learning_rate': 0.07245110009432108, 'subsample': 1.0, 'reg_alpha': 5.519687634786462e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 46.365865911970445, 'min_child_weight': 8.681013795955495, 'learning_rate': 0.02914769471107181, 'subsample': 0.734679185576358, 'reg_alpha': 2.1131667975120015e-10, 'reg_lambda': 0.07559540330720481, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7660890723352151}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.7644927354006805, 'min_child_weight': 0.23656601556265666, 'learning_rate': 1.0, 'subsample': 0.8034353041263625, 'log_max_bin': 3.0, 'reg_alpha': 2.1041336648258554e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7730089567622083}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.900081490458136, 'max_leaves': 4.0, 'min_child_weight': 3.006666944017408, 'learning_rate': 0.27564590570288644, 'subsample': 1.0, 'log_max_bin': 5.069957676722681, 'reg_alpha': 1e-10, 'reg_lambda': 0.9594911686397882, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.681028898687205, 'max_leaves': 5.756429670280901, 'min_child_weight': 0.7047867802501638, 'learning_rate': 0.9677429901768049, 'subsample': 1.0, 'log_max_bin': 4.877294809175792, 'reg_alpha': 2.0974193587501968e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.38976883098222, 'max_leaves': 4.0, 'min_child_weight': 1.0092062436495766, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.2915430931367977, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.191090991197125, 'min_child_weight': 6.0074748631053145, 'learning_rate': 0.02733131157527552, 'subsample': 0.7213978866239293, 'reg_alpha': 3.6554007953389676e-10, 'reg_lambda': 0.529498110823537, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.312799131636422, 'max_leaves': 59.99893134507086, 'min_child_weight': 3.5243599800129295, 'learning_rate': 0.07726605220588609, 'subsample': 1.0, 'reg_alpha': 3.190900614056109e-10, 'reg_lambda': 0.23111628261744174, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.290903810196928, 'max_leaves': 4.0, 'min_child_weight': 0.3262183718940652, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.5576639710902435e-10, 'reg_lambda': 0.3825313594440781, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.846180976744944, 'max_leaves': 5.090969833238196, 'min_child_weight': 2.1803653023598684, 'learning_rate': 0.5359242623735277, 'subsample': 0.6, 'log_max_bin': 4.694623749014995, 'reg_alpha': 1.1191646796104672e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.190171304191363, 'max_leaves': 20.580777597155382, 'min_child_weight': 20.0, 'learning_rate': 0.02825570787826394, 'subsample': 0.6457285260663964, 'reg_alpha': 1.643585180453762e-10, 'reg_lambda': 0.5811077025914645, 'colsample_bylevel': 0.7820024536258244, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.273609326276696, 'max_leaves': 47.20172268500206, 'min_child_weight': 0.8899592964199905, 'learning_rate': 0.07473826372104776, 'subsample': 1.0, 'reg_alpha': 7.096693728552657e-10, 'reg_lambda': 0.21059028211251862, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.883912088185985, 'max_leaves': 4.0, 'min_child_weight': 2.1759936577607806, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 4.319499004880165, 'reg_alpha': 1.5160778564095156e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.473342274479139, 'min_child_weight': 0.3268737555982077, 'learning_rate': 0.5143688658049967, 'subsample': 0.7991535434111394, 'log_max_bin': 3.0, 'reg_alpha': 1.1498634399123453e-10, 'reg_lambda': 0.3458487668775061, 'colsample_bytree': 0.929182870237226}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.2685907795889335, 'max_leaves': 5.858140670176609, 'min_child_weight': 0.6298517509671546, 'learning_rate': 0.5990458619516439, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.1091263247663718e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.05483065351963, 'max_leaves': 4.0, 'min_child_weight': 1.129274020399189, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.7225378941913195, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.589501277061902, 'min_child_weight': 0.3973847203967912, 'learning_rate': 0.8640951380116573, 'subsample': 0.6, 'log_max_bin': 4.988990253815622, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.819087805651167, 'max_leaves': 4.0, 'min_child_weight': 1.7898907093356147, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.8867079649580288e-10, 'reg_lambda': 0.627234767061641, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.541143406185466, 'learning_rate': 0.557568726016681, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.9214658825727055, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.071912792508417, 'max_leaves': 5.109327977703246, 'min_child_weight': 1.3143932106351346, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 7.972116685615122, 'reg_alpha': 2.298077490085819e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.513953253573588, 'max_leaves': 4.0, 'min_child_weight': 0.9035641784708527, 'learning_rate': 0.9745579691071478, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.7137604056727, 'max_leaves': 12.085417652740603, 'min_child_weight': 0.7871883768941288, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.5332121423149827, 'reg_alpha': 2.461756824212678e-10, 'reg_lambda': 0.5813878293113792, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.301874903624292, 'max_leaves': 111.98549593331346, 'min_child_weight': 3.512785180468298, 'learning_rate': 0.038265014707675266, 'subsample': 1.0, 'reg_alpha': 2.187848523185604e-10, 'reg_lambda': 0.7088002601941069, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.674767644562843, 'min_child_weight': 6.027269787570517, 'learning_rate': 0.055188337523544496, 'subsample': 0.6, 'reg_alpha': 5.331274317604481e-10, 'reg_lambda': 0.17265179190676536, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 43.992963624695065, 'min_child_weight': 4.88522493426806, 'learning_rate': 0.10707146660916762, 'subsample': 1.0, 'reg_alpha': 1.403688673710326e-09, 'reg_lambda': 0.2542160112583861, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.864602342687087, 'max_leaves': 22.081898484268457, 'min_child_weight': 4.333987538617654, 'learning_rate': 0.019723112178326722, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4813844510451036, 'colsample_bylevel': 0.7113221615039796, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.367057133883306, 'max_leaves': 12.581196822399903, 'min_child_weight': 10.318294332964253, 'learning_rate': 0.01950417057723737, 'subsample': 0.6, 'reg_alpha': 1.0458540282154641e-09, 'reg_lambda': 0.5198166392413266, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 77.21428815524442, 'min_child_weight': 2.0519383635744335, 'learning_rate': 0.10827338382156912, 'subsample': 1.0, 'reg_alpha': 1.1152627735603377e-10, 'reg_lambda': 0.2354207729962272, 'colsample_bylevel': 0.6701714585080761, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.480022516196115, 'max_leaves': 4.0, 'min_child_weight': 0.9246384548757021, 'learning_rate': 1.0, 'subsample': 0.8182948735821536, 'log_max_bin': 3.0, 'reg_alpha': 5.051870666500472e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9422529612734754}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.470790365229175, 'min_child_weight': 0.7692468502900014, 'learning_rate': 0.3990408248463117, 'subsample': 1.0, 'log_max_bin': 3.387639528251234, 'reg_alpha': 1e-10, 'reg_lambda': 0.524007883075876, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.492239927457407, 'max_leaves': 4.0, 'min_child_weight': 0.4675569610348337, 'learning_rate': 0.38962520699095965, 'subsample': 0.7925085710654606, 'log_max_bin': 3.0, 'reg_alpha': 2.260949208389001e-10, 'reg_lambda': 0.5653589255616607, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.635350930046814, 'max_leaves': 5.103465948129036, 'min_child_weight': 1.5212589659576397, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.741176528351426, 'min_child_weight': 0.8071245339047957, 'learning_rate': 0.7990818960391899, 'subsample': 1.0, 'log_max_bin': 3.86815626275105, 'reg_alpha': 1e-10, 'reg_lambda': 0.3560847858622123, 'colsample_bytree': 0.9881720550915489}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.615342125664457, 'max_leaves': 4.0, 'min_child_weight': 0.881245940609762, 'learning_rate': 1.0, 'subsample': 0.9465319313808823, 'log_max_bin': 3.0, 'reg_alpha': 3.053924746492702e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.649078571737764, 'max_leaves': 83.94922318212548, 'min_child_weight': 6.180817487945396, 'learning_rate': 0.058116420489606885, 'subsample': 0.741838975653049, 'reg_alpha': 1.1365822941037358e-09, 'reg_lambda': 0.6591757954382192, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.57185403222972, 'min_child_weight': 3.425518392956157, 'learning_rate': 0.03633710626428262, 'subsample': 1.0, 'reg_alpha': 1.0262363493587668e-10, 'reg_lambda': 0.1856494669151784, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8272444730473628}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.368674219715281, 'max_leaves': 15.738713705180963, 'min_child_weight': 2.7847613241408538, 'learning_rate': 0.028876790648638406, 'subsample': 1.0, 'reg_alpha': 8.001383659946139e-10, 'reg_lambda': 0.9019613370194265, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 61.72347848622752, 'min_child_weight': 7.6029869435916915, 'learning_rate': 0.07313079118541697, 'subsample': 0.6, 'reg_alpha': 1.4577504514446463e-10, 'reg_lambda': 0.13567725134526287, 'colsample_bylevel': 0.6631709965550813, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.469421871190658, 'criterion': 2.0, 'max_features': 0.8810413459377417}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.200893504473827, 'criterion': 1.0, 'max_features': 0.1}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.06903483311918, 'max_leaves': 4.0, 'min_child_weight': 1.3103877395585033, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.637186571119348, 'max_leaves': 11.046584689008776, 'min_child_weight': 0.5427975228994365, 'learning_rate': 0.8505887265921099, 'subsample': 0.6019570800308378, 'log_max_bin': 4.884979944936548, 'reg_alpha': 1.970965829424823e-10, 'reg_lambda': 0.40185143443299776, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.8939970725489355, 'min_child_weight': 0.45292202164718753, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 2.5827088800544437e-10, 'reg_lambda': 0.41216455173611255, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 26.504131289528818, 'max_leaves': 4.0, 'min_child_weight': 1.5704142988750702, 'learning_rate': 0.8592406617463134, 'subsample': 1.0, 'log_max_bin': 3.500905673213382, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.683533932487622, 'max_leaves': 55.811688072515196, 'min_child_weight': 3.1671490482001414, 'learning_rate': 0.07580088363647931, 'subsample': 0.7333120387146681, 'reg_alpha': 5.108806438200648e-10, 'reg_lambda': 0.07272568069066096, 'colsample_bylevel': 0.6063479965530998, 'colsample_bytree': 0.8657390290226675}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.405819288612896, 'min_child_weight': 6.685035552871797, 'learning_rate': 0.027859603288506753, 'subsample': 1.0, 'reg_alpha': 2.283120486861984e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 86.54197840936492, 'criterion': 1.0, 'max_features': 0.29038631999347714}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 1.9752073721820287, 'max_features': 0.13116797799688895}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 1.5217339552239408, 'max_features': 0.11291053865279868}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.779257812181133, 'min_child_weight': 1.06031240124863, 'learning_rate': 0.9871009808269036, 'subsample': 1.0, 'log_max_bin': 5.534988659555104, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.372975529794235, 'max_leaves': 4.0, 'min_child_weight': 0.6708166557634765, 'learning_rate': 1.0, 'subsample': 0.7538661108651571, 'log_max_bin': 3.0, 'reg_alpha': 4.3826372910719275e-10, 'reg_lambda': 0.8678176846077758, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.551996921653133, 'max_leaves': 25.670436313914887, 'min_child_weight': 8.985668611553224, 'learning_rate': 0.044623916724453185, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.3348802448652321, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 37.843071496842825, 'min_child_weight': 2.3562524842324706, 'learning_rate': 0.047324006990927224, 'subsample': 0.9436941215117203, 'reg_alpha': 1.8547658726889925e-09, 'reg_lambda': 0.3654310366254732, 'colsample_bylevel': 0.761187618253859, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.45052515565614, 'max_leaves': 4.0, 'min_child_weight': 0.7780270534349896, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 7.0023211652389605, 'reg_alpha': 2.361833313956076e-10, 'reg_lambda': 0.8969450152569356, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.745322925514533, 'min_child_weight': 0.9142037104363753, 'learning_rate': 0.6269972803893089, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.2625687918394042, 'learning_rate': 0.8230518570436753, 'subsample': 0.6, 'log_max_bin': 8.328623680406439, 'reg_alpha': 1.2283098162613082e-10, 'reg_lambda': 0.49768808960893124, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.93698410482645, 'max_leaves': 4.583744725281545, 'min_child_weight': 2.708909973981931, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.4192530875085976e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.540037608059215, 'max_leaves': 7.48841391653188, 'min_child_weight': 0.3776337334097151, 'learning_rate': 0.9357711057819897, 'subsample': 0.6696548629622034, 'log_max_bin': 3.0, 'reg_alpha': 2.0245816578784607e-10, 'reg_lambda': 0.7059249580189833, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.526384187947992, 'max_leaves': 4.0, 'min_child_weight': 1.8835055137895922, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.754283943433954, 'max_leaves': 4.0, 'min_child_weight': 0.7978773353335757, 'learning_rate': 1.0, 'subsample': 0.7795162179948417, 'log_max_bin': 3.0, 'reg_alpha': 2.663376647252509e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.81609106926714, 'min_child_weight': 0.8914593604451468, 'learning_rate': 0.40670004205497834, 'subsample': 1.0, 'log_max_bin': 4.657776761937609, 'reg_alpha': 1e-10, 'reg_lambda': 0.7848491652556236, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.706111706121197, 'max_leaves': 6.980682706171456, 'min_child_weight': 0.977443507794164, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 3.2873600400327376e-10, 'reg_lambda': 0.46428819623878315, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.727689337949884, 'learning_rate': 0.7429089630824394, 'subsample': 1.0, 'log_max_bin': 4.614259602802699, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 89.36001981225498, 'min_child_weight': 6.246190402531226, 'learning_rate': 0.05792964991737764, 'subsample': 1.0, 'reg_alpha': 2.564308798464149e-10, 'reg_lambda': 0.5348570137036872, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7171758628950267}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.57150175030627, 'max_leaves': 10.871172128471322, 'min_child_weight': 3.3896667606997717, 'learning_rate': 0.03645426047011356, 'subsample': 0.6732693298965059, 'reg_alpha': 4.548602200115008e-10, 'reg_lambda': 0.22880065492473964, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.057112660792814, 'max_leaves': 4.0, 'min_child_weight': 0.4834147961171446, 'learning_rate': 1.0, 'subsample': 0.7752489136090891, 'log_max_bin': 4.950128450558068, 'reg_alpha': 1.2194494640697242e-10, 'reg_lambda': 0.33070303173333276, 'colsample_bytree': 0.8614255504024044}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.3471347318485885, 'max_leaves': 17.17037641135544, 'min_child_weight': 1.4713559137684855, 'learning_rate': 0.9963354235932581, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.429565185364914e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.781661597128466, 'min_child_weight': 1.941703260082381, 'learning_rate': 0.03788892829502489, 'subsample': 0.6, 'reg_alpha': 1.6765352194366056e-10, 'reg_lambda': 0.13257912685161038, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.041106769935674, 'max_leaves': 37.67981179656901, 'min_child_weight': 10.904088396887037, 'learning_rate': 0.05573613828786682, 'subsample': 1.0, 'reg_alpha': 6.957217782986962e-10, 'reg_lambda': 0.9230384747024576, 'colsample_bylevel': 0.6436771627093425, 'colsample_bytree': 0.9585822478407057}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.170003128608244, 'max_leaves': 11.21847092524196, 'min_child_weight': 0.428193338110734, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.2821712199499255e-10, 'reg_lambda': 0.6949555490712007, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.189859169001959, 'max_leaves': 4.0, 'min_child_weight': 1.6611076253741395, 'learning_rate': 0.5754410330414766, 'subsample': 0.9225077751171366, 'log_max_bin': 7.999635490408055, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.7848718031646827, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 7.360493577872255, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.918741155033356, 'max_leaves': 6.780176845386928, 'min_child_weight': 0.906231076466518, 'learning_rate': 0.2971822756308516, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.953683333585407e-10, 'reg_lambda': 0.531546434065607, 'colsample_bytree': 0.9855949427981864}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.468292301463823, 'max_leaves': 16.120917054670798, 'min_child_weight': 1.725507545114383, 'learning_rate': 0.053948580660229395, 'subsample': 1.0, 'reg_alpha': 2.0776174595377237e-10, 'reg_lambda': 0.4420216902856948, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 60.26010514713048, 'min_child_weight': 12.270305075402325, 'learning_rate': 0.039144357853094953, 'subsample': 0.9351946640349768, 'reg_alpha': 5.6141329525906e-10, 'reg_lambda': 0.27685436646196754, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.498916878050808, 'max_leaves': 5.953833826028046, 'min_child_weight': 2.5568578386113257, 'learning_rate': 0.05266962898870218, 'subsample': 0.6, 'reg_alpha': 5.773498731812181e-10, 'reg_lambda': 0.16340213995260483, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9891797888755153}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 8.280673124932585, 'learning_rate': 0.04009488176731911, 'subsample': 1.0, 'reg_alpha': 2.0202690230447508e-10, 'reg_lambda': 0.7489230866987998, 'colsample_bylevel': 0.6668621039364308, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.943872076291693, 'max_leaves': 34.59402049357578, 'min_child_weight': 8.496834106020916, 'learning_rate': 0.17385894628202148, 'subsample': 1.0, 'reg_alpha': 8.400899495823673e-10, 'reg_lambda': 0.7092717389276061, 'colsample_bylevel': 0.7440143471225841, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.08138929567416, 'min_child_weight': 2.4918109173696865, 'learning_rate': 0.012146527930780136, 'subsample': 0.9363976152450825, 'reg_alpha': 1.3884252094989137e-10, 'reg_lambda': 0.17253702397831577, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.696192129810783, 'max_leaves': 20.965385293450346, 'min_child_weight': 7.08564043619872, 'learning_rate': 0.03255853533817208, 'subsample': 0.6988384157791049, 'reg_alpha': 1.6747245798260263e-09, 'reg_lambda': 0.31061394451762153, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 46.33581225364435, 'min_child_weight': 2.988086141133711, 'learning_rate': 0.06486110401147849, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.393979849219395, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.13803094111642, 'min_child_weight': 3.6413742761030856, 'learning_rate': 0.06629102628850167, 'subsample': 1.0, 'reg_alpha': 1.0764269215030952e-10, 'reg_lambda': 0.299408523725242, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.144717262376238, 'max_leaves': 56.683767237926844, 'min_child_weight': 5.814426747453257, 'learning_rate': 0.03185623553088467, 'subsample': 0.6, 'reg_alpha': 1.0835868566145632e-09, 'reg_lambda': 0.4087246198067308, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.064472924721164, 'max_leaves': 4.0, 'min_child_weight': 1.644497315575036, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.9980471906946512e-10, 'reg_lambda': 0.38306356033994354, 'colsample_bytree': 0.7423177004473472}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.13002547266144, 'max_leaves': 6.056931917425419, 'min_child_weight': 0.432518321759275, 'learning_rate': 0.2838151909967018, 'subsample': 0.7896928637803664, 'log_max_bin': 7.422071096403064, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.538135551192477, 'max_leaves': 12.578383467104542, 'min_child_weight': 1.644105528471875, 'learning_rate': 0.8597102112284957, 'subsample': 0.7589075322953047, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.192676881595614, 'max_leaves': 4.0, 'min_child_weight': 0.4326213900218722, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.142885566123778, 'reg_alpha': 5.209789480915586e-10, 'reg_lambda': 0.7570083960278989, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.967774419648125, 'max_leaves': 4.0, 'min_child_weight': 0.4078674745388205, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.2707830700524507, 'reg_alpha': 1.9714568711893915e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.175254866995472, 'max_leaves': 5.811978575888254, 'min_child_weight': 1.743888060391167, 'learning_rate': 0.4326656724869081, 'subsample': 0.8011962021235957, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.32953021755468653, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 39.18376610181044, 'min_child_weight': 2.3683701174780727, 'learning_rate': 0.09728895166394892, 'subsample': 0.6, 'reg_alpha': 9.021740431925045e-10, 'reg_lambda': 0.35728134101302034, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.583833193689442, 'max_leaves': 24.79210789127661, 'min_child_weight': 8.939693940661302, 'learning_rate': 0.02170629358125885, 'subsample': 1.0, 'reg_alpha': 1.2928792100017726e-10, 'reg_lambda': 0.34251896468904697, 'colsample_bylevel': 0.7062445266886229, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.785225542507126, 'max_leaves': 12.299620448170565, 'min_child_weight': 4.888961665993788, 'learning_rate': 0.024009627063055063, 'subsample': 0.6, 'reg_alpha': 6.724597648508371e-10, 'reg_lambda': 0.44379765337715466, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 78.98196215698053, 'min_child_weight': 4.330674984778848, 'learning_rate': 0.08795565801520064, 'subsample': 1.0, 'reg_alpha': 1.7345306369453313e-10, 'reg_lambda': 0.2757464671010665, 'colsample_bylevel': 0.7128706168895987, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.543634134793603, 'max_leaves': 4.0, 'min_child_weight': 1.7621603008338664, 'learning_rate': 0.5873886951241211, 'subsample': 0.7605455514067384, 'log_max_bin': 6.549014130267409, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.643663229238178, 'max_leaves': 4.445807278388084, 'min_child_weight': 0.40363820404623074, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 4.801546302952182e-10, 'reg_lambda': 0.5797727607239218, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.10758447392706, 'max_leaves': 9.058648172455438, 'min_child_weight': 0.6981534328992766, 'learning_rate': 0.4293475532234146, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.6183877425381435e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.985351560430135}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.113086476619861, 'max_leaves': 4.0, 'min_child_weight': 1.018794989113466, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 7.834439658658702, 'reg_alpha': 1e-10, 'reg_lambda': 0.44073677934415145, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.9279715517138578, 'learning_rate': 0.7023931014437614, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.9106651329951245e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 30.01292499082628, 'max_leaves': 7.822255460538996, 'min_child_weight': 0.7664838623086054, 'learning_rate': 1.0, 'subsample': 0.9192131279021587, 'log_max_bin': 6.322103268483612, 'reg_alpha': 1e-10, 'reg_lambda': 0.3704183909589129, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.65936340994866, 'max_leaves': 4.0, 'min_child_weight': 0.3166755400937748, 'learning_rate': 0.6632083727545907, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.7584383051168501, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.155466564719338, 'max_leaves': 8.017651808183457, 'min_child_weight': 2.2460693328557135, 'learning_rate': 1.0, 'subsample': 0.6583281124276448, 'log_max_bin': 5.358956531382641, 'reg_alpha': 4.107514009659494e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.16876944608155, 'max_leaves': 76.44586130909109, 'min_child_weight': 4.405369582554017, 'learning_rate': 0.010524176715614156, 'subsample': 1.0, 'reg_alpha': 5.490371673969082e-10, 'reg_lambda': 0.5410006521134254, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.707661868767579, 'min_child_weight': 4.8060675935813855, 'learning_rate': 0.20066011851525056, 'subsample': 0.7003621253892501, 'reg_alpha': 2.1244500983002093e-10, 'reg_lambda': 0.22620237988333694, 'colsample_bylevel': 0.794616186468731, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.516005552411086, 'max_leaves': 34.73685783762498, 'min_child_weight': 10.402333350199457, 'learning_rate': 0.04518340789803142, 'subsample': 1.0, 'reg_alpha': 1.7347939322350039e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7709549748476913, 'colsample_bytree': 0.7786421538696809}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.965919120364827, 'min_child_weight': 2.035361036382866, 'learning_rate': 0.046738009487827595, 'subsample': 0.6, 'reg_alpha': 6.723577034559419e-10, 'reg_lambda': 0.07802915174394044, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.265357121651763, 'max_leaves': 11.764330720836016, 'min_child_weight': 1.0813689822073882, 'learning_rate': 0.3390037171589862, 'subsample': 0.9338099746765008, 'log_max_bin': 7.022881525578965, 'reg_alpha': 1.0942709449992243e-10, 'reg_lambda': 0.44329870217222694, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.307450308735609, 'max_leaves': 4.0, 'min_child_weight': 0.6577544120215361, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.5930995034755457e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.5359708246003585, 'max_leaves': 4.0, 'min_child_weight': 2.7477903484325368, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.8227943820900254, 'reg_alpha': 1.0178781622168356e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.253129892441216, 'max_leaves': 5.018175949215693, 'min_child_weight': 0.2588535255158353, 'learning_rate': 0.2905464724544002, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.7126632281306511e-10, 'reg_lambda': 0.5297354858077896, 'colsample_bytree': 0.923092910899692}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.266743620225156, 'max_leaves': 4.0, 'min_child_weight': 2.1628768892150894, 'learning_rate': 0.3621346903127876, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.5898544781183685e-10, 'reg_lambda': 0.8838809785063488, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.30312598965042, 'max_leaves': 10.67155844946408, 'min_child_weight': 0.3288560817385543, 'learning_rate': 1.0, 'subsample': 0.6009617981796382, 'log_max_bin': 6.740800681236566, 'reg_alpha': 1.0965044431042503e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.170427181550397, 'max_leaves': 4.0, 'min_child_weight': 0.5841425389094188, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.414243134280851e-10, 'reg_lambda': 0.49480686789784517, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.978015152777397, 'max_leaves': 4.200171942922019, 'min_child_weight': 1.2176398253722158, 'learning_rate': 0.7625517483362839, 'subsample': 0.6, 'log_max_bin': 4.845489847700266, 'reg_alpha': 1.2326611011143053e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.96188040102805, 'max_leaves': 4.0, 'min_child_weight': 0.24318437300002543, 'learning_rate': 1.0, 'subsample': 0.941674962965699, 'log_max_bin': 10.0, 'reg_alpha': 1.978952166721574e-10, 'reg_lambda': 0.7693402080905117, 'colsample_bytree': 0.9578968132763344}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.697822666043526, 'max_leaves': 5.618804182981504, 'min_child_weight': 2.9248393319667505, 'learning_rate': 0.8051949750021759, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.23017068951411, 'min_child_weight': 5.489712166312283, 'learning_rate': 0.07401490161524871, 'subsample': 0.690240828453488, 'reg_alpha': 1.3867885611726755e-10, 'reg_lambda': 0.2288777169581843, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.177982476731888, 'max_leaves': 30.140956004886636, 'min_child_weight': 3.8567603085617987, 'learning_rate': 0.028531856436265306, 'subsample': 1.0, 'reg_alpha': 8.410813997921317e-10, 'reg_lambda': 0.5346769299033683, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.369514371383433, 'max_leaves': 4.266549054856933, 'min_child_weight': 0.572881356742691, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 4.171015822835969, 'reg_alpha': 5.830641418587779e-10, 'reg_lambda': 0.928743992617338, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.781878305803077, 'max_leaves': 4.0, 'min_child_weight': 1.2415750847860385, 'learning_rate': 0.4593160331673875, 'subsample': 0.7931785481158989, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.235239853256413, 'max_leaves': 4.0, 'min_child_weight': 0.7217723144887035, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.4615876737036479, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.413231040392846, 'min_child_weight': 0.9854565003286498, 'learning_rate': 0.8098414681589882, 'subsample': 0.6, 'log_max_bin': 6.443755629025135, 'reg_alpha': 2.8780588859822355e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.10883519444768, 'max_leaves': 24.184911944948347, 'min_child_weight': 5.173679142763094, 'learning_rate': 0.024997810159576448, 'subsample': 1.0, 'reg_alpha': 1.359858324250671e-10, 'reg_lambda': 0.23600597310305949, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 40.16752920142609, 'min_child_weight': 4.092349642145468, 'learning_rate': 0.08447870167625748, 'subsample': 0.6, 'reg_alpha': 8.577379300814722e-10, 'reg_lambda': 0.5185277025724043, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.585501734472158, 'max_leaves': 4.0, 'min_child_weight': 0.2230115343423056, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.0692042676185482e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.4828310548586465, 'max_leaves': 5.111904390931217, 'min_child_weight': 3.1894100059344663, 'learning_rate': 0.30969668464416833, 'subsample': 0.8833245011378176, 'log_max_bin': 3.349251345260697, 'reg_alpha': 1.6304485045021516e-10, 'reg_lambda': 0.47906952037751205, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.179494683630335, 'min_child_weight': 0.7948742610616136, 'learning_rate': 1.0, 'subsample': 0.6907056020758167, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.7593449878414574, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 25.70093608192622, 'max_leaves': 4.0, 'min_child_weight': 0.8948273379995806, 'learning_rate': 0.7624770432151505, 'subsample': 1.0, 'log_max_bin': 3.1322799525302942, 'reg_alpha': 4.980780852516535e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.065139172647402, 'max_leaves': 4.0, 'min_child_weight': 0.7489645951302811, 'learning_rate': 0.718434139172877, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 3.127392389492006e-10, 'reg_lambda': 0.8782041181527225, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.704548131038058, 'max_leaves': 6.379040714639199, 'min_child_weight': 0.9496780270987608, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 8.56534565436842, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.076927872833624, 'max_leaves': 23.5666411806958, 'min_child_weight': 4.641880694951501, 'learning_rate': 0.07658793014026506, 'subsample': 0.762689835593894, 'reg_alpha': 6.507525548628682e-10, 'reg_lambda': 0.07355529244314106, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8393096372166434}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.392315911108583, 'max_leaves': 41.2213242156195, 'min_child_weight': 4.561190900810783, 'learning_rate': 0.027573307480212684, 'subsample': 1.0, 'reg_alpha': 1.7923895273720803e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.376556862167511, 'criterion': 1.0, 'max_features': 0.2293283310111743}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 2.0, 'max_features': 0.1}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.792995271276554, 'max_leaves': 6.306856875458285, 'min_child_weight': 0.8275416683663388, 'learning_rate': 0.7665646044288014, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.381061159768856e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.455255142785025, 'max_leaves': 4.0, 'min_child_weight': 0.8595038126288981, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 6.953953674087357, 'reg_alpha': 1.262277551442941e-10, 'reg_lambda': 0.5385846342328922, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.1674119938251464, 'learning_rate': 0.9522354070666856, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.4897953322717595e-10, 'reg_lambda': 0.3214595097207532, 'colsample_bytree': 0.9527659951349688}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.27834841419261, 'max_leaves': 4.652582072638911, 'min_child_weight': 0.6092752368763837, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 6.828221063415894, 'reg_alpha': 1.1701489871683804e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.411957914026919, 'max_leaves': 5.259562390339325, 'min_child_weight': 0.4181268564706235, 'learning_rate': 0.31181819942890093, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.6960659659453404e-10, 'reg_lambda': 0.38681123036533815, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.658034301297605, 'max_leaves': 4.0, 'min_child_weight': 1.7010990996224606, 'learning_rate': 1.0, 'subsample': 0.666270527168755, 'log_max_bin': 8.731837734730107, 'reg_alpha': 1.0278388542360277e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.944526589743499, 'max_leaves': 4.0, 'min_child_weight': 2.0817379897177712, 'learning_rate': 1.0, 'subsample': 0.6466521261203633, 'log_max_bin': 3.0, 'reg_alpha': 2.6684534947939933e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.173491340536273, 'max_leaves': 6.120136366041713, 'min_child_weight': 0.34167374692843916, 'learning_rate': 0.34058988653104366, 'subsample': 1.0, 'log_max_bin': 3.0284742357984262, 'reg_alpha': 1e-10, 'reg_lambda': 0.7881986398266846, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.598041082618741, 'max_leaves': 7.850426221065465, 'min_child_weight': 3.6983163111222086, 'learning_rate': 0.04678253382514965, 'subsample': 0.6, 'reg_alpha': 3.444355738640539e-10, 'reg_lambda': 0.12510834557567485, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 5.724903498597037, 'learning_rate': 0.045140405496705095, 'subsample': 1.0, 'reg_alpha': 3.3864157849943816e-10, 'reg_lambda': 0.9781572481307587, 'colsample_bylevel': 0.6719735042981422, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.241321300412401, 'max_leaves': 4.0, 'min_child_weight': 0.4670605365317787, 'learning_rate': 1.0, 'subsample': 0.7904509909234164, 'log_max_bin': 6.4476639286203525, 'reg_alpha': 4.378131193381671e-10, 'reg_lambda': 0.44577138953754913, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.382864424789815, 'max_leaves': 5.261868325994547, 'min_child_weight': 1.5228758660532915, 'learning_rate': 0.4568311423329899, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 33.630480686460096, 'max_leaves': 5.649320438498065, 'min_child_weight': 0.5178898817131622, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 6.449351550319726, 'reg_alpha': 1.9533312746663757e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.3734101479590084, 'learning_rate': 0.6271861161330208, 'subsample': 0.6520078308370862, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.817304894099686, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 30.015239701809175, 'min_child_weight': 5.332793933053757, 'learning_rate': 0.03970658000025378, 'subsample': 0.6, 'reg_alpha': 5.841548993165508e-10, 'reg_lambda': 0.46227029415311827, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.406913199864217, 'max_leaves': 32.36516404445297, 'min_child_weight': 3.9702460388035004, 'learning_rate': 0.053184700042589406, 'subsample': 1.0, 'reg_alpha': 1.99673419774703e-10, 'reg_lambda': 0.2647274475005731, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 57.21496596676649, 'min_child_weight': 3.2141630243665253, 'learning_rate': 0.13082176574011006, 'subsample': 1.0, 'reg_alpha': 7.769025045491412e-10, 'reg_lambda': 0.2306357281197539, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.7988752736850815, 'max_leaves': 16.978916973347502, 'min_child_weight': 6.587252677587776, 'learning_rate': 0.0161424403277497, 'subsample': 0.6, 'reg_alpha': 1.5013493423138423e-10, 'reg_lambda': 0.5306013774368579, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9071503025624857}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 38.13598458313459, 'min_child_weight': 12.03477244479365, 'learning_rate': 0.018058322822330213, 'subsample': 1.0, 'reg_alpha': 5.46124683024025e-10, 'reg_lambda': 0.38097775583240817, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.183962351072356, 'max_leaves': 25.473268027600593, 'min_child_weight': 1.7592774674872589, 'learning_rate': 0.11694234109156747, 'subsample': 0.6576651040535694, 'reg_alpha': 2.13577979626956e-10, 'reg_lambda': 0.3212146461388865, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.384727063363393, 'min_child_weight': 1.1542523381245091, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.421566212666451, 'reg_alpha': 1e-10, 'reg_lambda': 0.6993784412623546, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.114803436903756, 'max_leaves': 4.0, 'min_child_weight': 0.6162215969394226, 'learning_rate': 0.37009870266926154, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.976215774268907e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 2.7360546496348155, 'learning_rate': 1.0, 'subsample': 0.6568529508390233, 'log_max_bin': 5.097615234249864, 'reg_alpha': 2.3302840507193504e-10, 'reg_lambda': 0.6349162162703299, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.3223894300875, 'max_leaves': 4.094106183830848, 'min_child_weight': 0.2599638202274513, 'learning_rate': 0.7315550328775319, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.5511244078426625, 'max_leaves': 7.907273806769942, 'min_child_weight': 0.8526945951835244, 'learning_rate': 1.0, 'subsample': 0.9289098571194783, 'log_max_bin': 4.782391430596839, 'reg_alpha': 1.1850222137793682e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.471869116032014, 'max_leaves': 4.0, 'min_child_weight': 0.834150026384371, 'learning_rate': 0.33423250743513455, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.4710968949570687e-10, 'reg_lambda': 0.5210150852432127, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.945084278217716, 'max_leaves': 4.0, 'min_child_weight': 0.6633180183719515, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.2546394617553824, 'reg_alpha': 1.84114262129516e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.172835011292145, 'max_leaves': 18.50799362749029, 'min_child_weight': 1.0722989567144614, 'learning_rate': 0.7614632593471625, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.8193875488957247, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.710124128848323, 'max_leaves': 4.0, 'min_child_weight': 1.8759485328045202, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.452657956606342, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.940419273659563, 'max_leaves': 18.357577751546327, 'min_child_weight': 0.37915497500712325, 'learning_rate': 0.5212734767127581, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.7854092051300754e-10, 'reg_lambda': 0.5986562850114369, 'colsample_bytree': 0.8147480866391852}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.620263300367691, 'max_leaves': 30.405042254971075, 'min_child_weight': 9.086128579280523, 'learning_rate': 0.16631368673819408, 'subsample': 1.0, 'reg_alpha': 4.811986140349621e-10, 'reg_lambda': 0.3093679173513022, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.950232090988276, 'min_child_weight': 2.330200789447616, 'learning_rate': 0.012697587242803898, 'subsample': 0.6, 'reg_alpha': 2.42395142094504e-10, 'reg_lambda': 0.39556666403624086, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 26.41126602259928, 'max_leaves': 4.886924573415589, 'min_child_weight': 0.8917218398486304, 'learning_rate': 1.0, 'subsample': 0.9725304255006394, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.39418756040819375, 'colsample_bytree': 0.7584130557236884}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.7976424791736471, 'learning_rate': 0.5423031012093347, 'subsample': 1.0, 'log_max_bin': 5.353914891499812, 'reg_alpha': 3.8110675461064046e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.250099420229333, 'max_leaves': 71.719288170417, 'min_child_weight': 2.9493633687958885, 'learning_rate': 0.09554423280659628, 'subsample': 1.0, 'reg_alpha': 1.1317869470920215e-09, 'reg_lambda': 0.1666906120941406, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.213349711081096, 'max_leaves': 13.545144989090081, 'min_child_weight': 7.178669204502238, 'learning_rate': 0.02210266894188491, 'subsample': 0.6, 'reg_alpha': 1.0305844816851331e-10, 'reg_lambda': 0.7341483331849601, 'colsample_bylevel': 0.684500981737358, 'colsample_bytree': 0.7336987836075277}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.514346946047938, 'max_leaves': 31.279808145412222, 'min_child_weight': 6.283909618264448, 'learning_rate': 0.04479148681692623, 'subsample': 0.6, 'reg_alpha': 6.214324699162276e-10, 'reg_lambda': 0.2851754607902103, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.056717236455068, 'min_child_weight': 3.3693202599418757, 'learning_rate': 0.04714696244985011, 'subsample': 1.0, 'reg_alpha': 1.8769570640621134e-10, 'reg_lambda': 0.4291240020701496, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8562850816455453}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.142948381609909, 'max_leaves': 15.538228706650225, 'min_child_weight': 0.7398563041117908, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.700636048797602, 'max_leaves': 4.0, 'min_child_weight': 0.9613694106777187, 'learning_rate': 0.9703298959395673, 'subsample': 0.6, 'log_max_bin': 4.239441393243735, 'reg_alpha': 3.893468713382341e-10, 'reg_lambda': 0.9770644183249731, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.658954927249513, 'min_child_weight': 0.746153071683933, 'learning_rate': 0.2744036298459952, 'subsample': 1.0, 'log_max_bin': 6.075145006767396, 'reg_alpha': 1.1844203573752408e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.5774349765949, 'max_leaves': 4.0, 'min_child_weight': 0.9532564376702591, 'learning_rate': 1.0, 'subsample': 0.6902778545782832, 'log_max_bin': 3.0, 'reg_alpha': 1.471844424397785e-10, 'reg_lambda': 0.4470556486407252, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.285945704134129, 'max_leaves': 7.70851862153121, 'min_child_weight': 0.8648971451916652, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.6106184193210826e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.518309115959944, 'max_leaves': 4.0, 'min_child_weight': 0.8223812773859087, 'learning_rate': 0.387188074675409, 'subsample': 0.943443213096478, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.7168250863341571, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.614383066667094, 'max_leaves': 30.908654168318588, 'min_child_weight': 6.016672526543314, 'learning_rate': 0.03446838463902524, 'subsample': 1.0, 'reg_alpha': 2.6447578913600785e-10, 'reg_lambda': 0.6997032794044297, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9636437203782877}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.42964916856092, 'min_child_weight': 3.5189723048839427, 'learning_rate': 0.061267232832246186, 'subsample': 0.6, 'reg_alpha': 4.410241361060852e-10, 'reg_lambda': 0.17489647201690584, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.8468813101680941, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.833536354627, 'max_leaves': 4.341428646988632, 'min_child_weight': 0.8398759194827069, 'learning_rate': 0.48503548242045824, 'subsample': 0.6, 'log_max_bin': 9.296703805362656, 'reg_alpha': 2.5066087807595725e-10, 'reg_lambda': 0.5413049154114276, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.132223585385614, 'max_leaves': 4.0, 'min_child_weight': 0.571574063907354, 'learning_rate': 1.0, 'subsample': 0.9036972917715869, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.373678689745946, 'min_child_weight': 1.2444147906358423, 'learning_rate': 0.34876441041087425, 'subsample': 1.0, 'log_max_bin': 5.743597624272919, 'reg_alpha': 3.2993696660125486e-10, 'reg_lambda': 0.6308891019308557, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.9911777456556, 'max_leaves': 4.964552803051735, 'min_child_weight': 0.3801023560760317, 'learning_rate': 0.7423711724729207, 'subsample': 0.6374834883747476, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.118950770585737, 'max_leaves': 4.0, 'min_child_weight': 1.8712728498001505, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 4.420132227858204, 'reg_alpha': 3.4357458890486225e-10, 'reg_lambda': 0.33635475814441923, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.712776762148453, 'max_leaves': 10.665619032147944, 'min_child_weight': 0.3393978877943428, 'learning_rate': 0.8448507420708089, 'subsample': 1.0, 'log_max_bin': 6.92829446827318, 'reg_alpha': 1.1516290226718872e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.359350555036832, 'max_leaves': 4.0, 'min_child_weight': 2.0956972469467536, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.513753530717211e-10, 'reg_lambda': 0.6799101718242148, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.503658549112833, 'max_leaves': 4.0, 'min_child_weight': 0.4581183580142554, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 3.718619900053256e-10, 'reg_lambda': 0.3765309264770358, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.603315132887602, 'max_leaves': 7.564351901680636, 'min_child_weight': 1.5526014328550757, 'learning_rate': 0.6568173224925569, 'subsample': 0.6, 'log_max_bin': 4.895546108282826, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.077344023432162, 'max_leaves': 34.56938414417191, 'min_child_weight': 5.481412892626677, 'learning_rate': 0.11535792782091364, 'subsample': 1.0, 'reg_alpha': 1.063541524191862e-09, 'reg_lambda': 0.6452875486052914, 'colsample_bylevel': 0.7048251536041942, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.391867613176186, 'max_leaves': 28.101401885876776, 'min_child_weight': 3.8625997353606065, 'learning_rate': 0.018306349523796873, 'subsample': 0.6, 'reg_alpha': 1.0967151142811533e-10, 'reg_lambda': 0.18964512067681105, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.337781554278712, 'max_leaves': 6.809733670398403, 'min_child_weight': 3.080700166979818, 'learning_rate': 0.04301552200147458, 'subsample': 0.6, 'reg_alpha': 3.7912786192753617e-10, 'reg_lambda': 0.8196034246411016, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.128182791184099, 'max_leaves': 112.0, 'min_child_weight': 6.872627273305407, 'learning_rate': 0.04909350041034455, 'subsample': 1.0, 'reg_alpha': 3.0765400841728905e-10, 'reg_lambda': 0.14931079025210453, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8835210926972522}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.192901792412826, 'max_leaves': 4.0, 'min_child_weight': 1.3893483740477965, 'learning_rate': 1.0, 'subsample': 0.9525094208917273, 'log_max_bin': 3.1726944226274227, 'reg_alpha': 1e-10, 'reg_lambda': 0.47881967517579793, 'colsample_bytree': 0.8408589381390595}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.05137061588488, 'min_child_weight': 0.5119487900632748, 'learning_rate': 0.6114605772501837, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.1352391964976802e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.58564078051141, 'max_leaves': 4.2437051837293405, 'min_child_weight': 2.0130649991558287, 'learning_rate': 0.5798523675174949, 'subsample': 1.0, 'log_max_bin': 9.957955526686995, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.872033222251781}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.161954586022532, 'max_leaves': 4.0, 'min_child_weight': 0.35332948482459237, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 2.58716764776449e-10, 'reg_lambda': 0.5717405175118785, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.27854501628980055, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 5.585742987486418, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.043910493288678, 'max_leaves': 8.028498715038733, 'min_child_weight': 2.5535377675906097, 'learning_rate': 0.5148005074357479, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.0816602605553412e-10, 'reg_lambda': 0.6074720374258038, 'colsample_bytree': 0.8028546181063908}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.230610001535263, 'max_leaves': 5.731056562280956, 'min_child_weight': 0.5605455555074157, 'learning_rate': 0.5056332564675933, 'subsample': 1.0, 'log_max_bin': 9.591010621678873, 'reg_alpha': 2.346531874076204e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.896333070672125, 'max_leaves': 4.0, 'min_child_weight': 1.2688981512417643, 'learning_rate': 1.0, 'subsample': 0.7600880130139704, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.3798949911024249, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.020325558375101, 'max_leaves': 4.0, 'min_child_weight': 0.9440940231526922, 'learning_rate': 0.19125493525214987, 'subsample': 0.8020688363447218, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8823126338217674}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.428232309867361, 'max_leaves': 4.97679020208863, 'min_child_weight': 0.7533944730366225, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 5.998660829661079, 'reg_alpha': 3.007059549772099e-10, 'reg_lambda': 0.6274252740752301, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.694135512086303, 'max_leaves': 5.881314000900703, 'min_child_weight': 0.5460634800623696, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 2.727942118574169e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.144915018205835, 'max_leaves': 4.0, 'min_child_weight': 1.3025504269007477, 'learning_rate': 0.8999673797103984, 'subsample': 1.0, 'log_max_bin': 8.078131343371524, 'reg_alpha': 1e-10, 'reg_lambda': 0.5331817460869127, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.7112707727449115, 'max_leaves': 4.0, 'min_child_weight': 1.0751183216078928, 'learning_rate': 1.0, 'subsample': 0.957981787499266, 'log_max_bin': 6.488354311668156, 'reg_alpha': 1.0702694234539353e-10, 'reg_lambda': 0.2560850800299583, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.457567853751952, 'max_leaves': 6.788958304008676, 'min_child_weight': 0.66157854886744, 'learning_rate': 0.49276590416940375, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.6288258460380202e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.044945652471561, 'max_leaves': 4.0, 'min_child_weight': 1.1233582149651378, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.4540462556370777, 'reg_alpha': 1e-10, 'reg_lambda': 0.353390478468778, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.712435371906001, 'max_leaves': 12.003167975545109, 'min_child_weight': 0.6331686630272438, 'learning_rate': 0.7701054736383828, 'subsample': 0.624878228628968, 'log_max_bin': 3.0, 'reg_alpha': 3.2983933799387596e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.68910404998308, 'max_leaves': 14.737885363485914, 'min_child_weight': 7.605633640787728, 'learning_rate': 0.017418446837210517, 'subsample': 0.7921285459404037, 'reg_alpha': 2.872795701045852e-10, 'reg_lambda': 0.5007838992851831, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 65.9150300618743, 'min_child_weight': 2.7837922503810146, 'learning_rate': 0.12123828070131018, 'subsample': 1.0, 'reg_alpha': 4.060163637192151e-10, 'reg_lambda': 0.2443681500167489, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.591918999252138, 'max_leaves': 5.30889786511626, 'min_child_weight': 0.3384207838458758, 'learning_rate': 0.253902002458868, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.8323560753214375e-10, 'reg_lambda': 0.8079954246530943, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.361069076923343, 'max_leaves': 4.0, 'min_child_weight': 2.101748039783743, 'learning_rate': 1.0, 'subsample': 0.8939578370038408, 'log_max_bin': 4.516938129408818, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.5526010664574645, 'max_leaves': 20.064532126994322, 'min_child_weight': 1.7442700666675166, 'learning_rate': 0.0747201589024412, 'subsample': 0.6, 'reg_alpha': 4.695279046424223e-10, 'reg_lambda': 0.6012843482387429, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 48.4161878599536, 'min_child_weight': 12.138317565073372, 'learning_rate': 0.028262554283213424, 'subsample': 1.0, 'reg_alpha': 2.484201796558024e-10, 'reg_lambda': 0.20352373279788788, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.870835321417743, 'max_leaves': 5.089058692106087, 'min_child_weight': 0.4420879230934854, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 4.011363023872397, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.668305247520587, 'max_leaves': 4.0, 'min_child_weight': 1.6088999086268614, 'learning_rate': 0.2648675076878944, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.8101119640301474e-10, 'reg_lambda': 0.9162486898372078, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 55.97758713508371, 'min_child_weight': 11.330384394561728, 'learning_rate': 0.06311954467071688, 'subsample': 1.0, 'reg_alpha': 1.3619321520338892e-09, 'reg_lambda': 0.32364241535979965, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.69953845436502, 'max_leaves': 17.35423419445281, 'min_child_weight': 1.86864833982369, 'learning_rate': 0.03345687232136037, 'subsample': 0.8899460773149045, 'reg_alpha': 1e-10, 'reg_lambda': 0.37811989164166465, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.966275379091652, 'max_leaves': 11.319047468467456, 'min_child_weight': 2.5815313132023094, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.500460598814512, 'colsample_bytree': 0.7221813697932399}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.5136453379787, 'max_leaves': 4.0, 'min_child_weight': 0.27552453670911803, 'learning_rate': 0.4328989325561317, 'subsample': 0.7395209304865548, 'log_max_bin': 4.569796635989796, 'reg_alpha': 2.6526964002009874e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.951665608812675, 'min_child_weight': 0.620284670732766, 'learning_rate': 0.9102287612198973, 'subsample': 0.8472033495121302, 'log_max_bin': 6.236437075732397, 'reg_alpha': 2.486873089825545e-10, 'reg_lambda': 0.7105966574184728, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.810361966482368, 'max_leaves': 4.0, 'min_child_weight': 1.146691596021373, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9616871597713186}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.894345393216321, 'max_leaves': 4.0, 'min_child_weight': 0.5616984332974131, 'learning_rate': 1.0, 'subsample': 0.766792190695123, 'log_max_bin': 4.08988203455152, 'reg_alpha': 2.461712716567888e-10, 'reg_lambda': 0.23261506512156913, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.232982931380592, 'max_leaves': 9.552004337623195, 'min_child_weight': 1.266293756410631, 'learning_rate': 0.7623717582446813, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 95.1423385945859, 'min_child_weight': 5.271559986364448, 'learning_rate': 0.015109175164974077, 'subsample': 1.0, 'reg_alpha': 3.38555382054201e-10, 'reg_lambda': 0.619467017598882, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.767396357005307, 'max_leaves': 10.210471711464868, 'min_child_weight': 4.016364044652316, 'learning_rate': 0.13976822188984137, 'subsample': 0.6, 'reg_alpha': 3.4452326741038045e-10, 'reg_lambda': 0.197549880057916, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.939237514036141}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 23.26645942645065, 'min_child_weight': 3.93022436429326, 'learning_rate': 0.04374334520195082, 'subsample': 0.6, 'reg_alpha': 1.216353279881768e-10, 'reg_lambda': 0.306328846599055, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.148153303602456, 'max_leaves': 41.75315801072136, 'min_child_weight': 5.387098044787908, 'learning_rate': 0.04827665870730888, 'subsample': 1.0, 'reg_alpha': 9.58933628526251e-10, 'reg_lambda': 0.3994910580088724, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.353229945228387, 'min_child_weight': 2.1609599416066567, 'learning_rate': 0.5813983476311363, 'subsample': 1.0, 'log_max_bin': 4.002398956765017, 'reg_alpha': 2.496868294917276e-10, 'reg_lambda': 0.5288014189102225, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.18185509577604, 'max_leaves': 4.0, 'min_child_weight': 0.3291478038881739, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.114858967857758, 'min_child_weight': 20.0, 'learning_rate': 0.05741138568645749, 'subsample': 1.0, 'reg_alpha': 2.7684876897401907e-10, 'reg_lambda': 0.3387799035794148, 'colsample_bylevel': 0.7286749687615539, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.97770896118573, 'max_leaves': 68.82450324121588, 'min_child_weight': 0.9829074736914966, 'learning_rate': 0.036783340478206146, 'subsample': 0.7024176015625306, 'reg_alpha': 4.213137983489792e-10, 'reg_lambda': 0.36122459961031156, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.601599254634202, 'max_leaves': 16.626102383663355, 'min_child_weight': 4.770083880528496, 'learning_rate': 0.0879929401406636, 'subsample': 0.8014329224614886, 'reg_alpha': 2.3160080574085728e-10, 'reg_lambda': 0.0796791778526037, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 58.42909747369094, 'min_child_weight': 4.438602028548864, 'learning_rate': 0.02399945431593407, 'subsample': 1.0, 'reg_alpha': 5.036260821786347e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7136109164146264}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.286845591766618, 'min_child_weight': 1.3862775619086245, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.3513343170329266, 'reg_alpha': 1.6093283539077508e-10, 'reg_lambda': 0.4385686245920531, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.506728541401515, 'max_leaves': 4.0, 'min_child_weight': 0.5130828332032331, 'learning_rate': 0.9531599081541178, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.0832360561553295e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.85019090610546, 'min_child_weight': 5.422367312624127, 'learning_rate': 0.018479481803701757, 'subsample': 0.6, 'reg_alpha': 6.639689863389653e-10, 'reg_lambda': 0.26100985602112076, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8083395579954598}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.893981298433305, 'max_leaves': 37.579921955361215, 'min_child_weight': 3.9046605970733657, 'learning_rate': 0.11427715178720817, 'subsample': 1.0, 'reg_alpha': 1.7567116661249683e-10, 'reg_lambda': 0.4688544597204464, 'colsample_bylevel': 0.8607872537842721, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.6482501349364963, 'learning_rate': 0.6674110445027519, 'subsample': 1.0, 'log_max_bin': 4.143276352377607, 'reg_alpha': 4.965613844801702e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.741614140943714, 'max_leaves': 8.164858859994784, 'min_child_weight': 1.0972234030307224, 'learning_rate': 1.0, 'subsample': 0.6742908455026143, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5547782192301011, 'colsample_bytree': 0.7116516924130455}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.183168184437038, 'max_leaves': 6.318631379611114, 'min_child_weight': 0.26707260809584726, 'learning_rate': 0.6451382424996993, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.301873816997853e-10, 'reg_lambda': 0.4617447704956957, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.951029549035828, 'max_leaves': 4.0, 'min_child_weight': 2.663227892000382, 'learning_rate': 1.0, 'subsample': 0.9787597138762422, 'log_max_bin': 3.3304472376635004, 'reg_alpha': 1.3390564249659957e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.853506046263358, 'max_leaves': 4.0, 'min_child_weight': 0.6438849277889719, 'learning_rate': 0.6058534798617321, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.7782366843039969e-10, 'reg_lambda': 0.4507777565052591, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.282042441085961, 'max_leaves': 9.545717317784103, 'min_child_weight': 1.1046620108232479, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 4.206198301674628, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.403936973083197, 'max_leaves': 24.310272063210764, 'min_child_weight': 2.6491300269071822, 'learning_rate': 0.03258360870443224, 'subsample': 1.0, 'reg_alpha': 1.0401614476644947e-09, 'reg_lambda': 0.44387083174687425, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.066169718989506, 'max_leaves': 39.960398396887705, 'min_child_weight': 7.9922479355158655, 'learning_rate': 0.06481119283584197, 'subsample': 0.8681394327082899, 'reg_alpha': 1.1213663675632157e-10, 'reg_lambda': 0.2757010064051271, 'colsample_bylevel': 0.9319987391409161, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.011322298892589, 'max_leaves': 4.0, 'min_child_weight': 0.1747127791046348, 'learning_rate': 0.4522713691189313, 'subsample': 0.6, 'log_max_bin': 5.20399790782688, 'reg_alpha': 2.1777472150988301e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.095623838937994, 'max_leaves': 4.58460834730155, 'min_child_weight': 4.071111585055649, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.8422336091194905, 'colsample_bytree': 0.8697769442541757}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.561361106921411, 'max_leaves': 4.0, 'min_child_weight': 0.7359126458383589, 'learning_rate': 0.5033491386763015, 'subsample': 0.750018205400887, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.206319434059093, 'max_leaves': 10.462266715634607, 'min_child_weight': 0.9665212618541916, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 4.9441720795148445, 'reg_alpha': 1.9471879335594207e-10, 'reg_lambda': 0.26061270592508284, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.266180818308133, 'min_child_weight': 6.9600139735366495, 'learning_rate': 0.024920872842224134, 'subsample': 1.0, 'reg_alpha': 1.1326386454937703e-10, 'reg_lambda': 0.11474606435726774, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.161449423237582, 'max_leaves': 68.09447946544661, 'min_child_weight': 3.042020327683834, 'learning_rate': 0.08473950974351607, 'subsample': 0.6, 'reg_alpha': 1.0298095238824743e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6887585701781005, 'colsample_bytree': 0.7264721812970648}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.874970702370721, 'min_child_weight': 10.459720055374385, 'learning_rate': 0.011699559313310508, 'subsample': 0.6, 'reg_alpha': 4.232192666279485e-10, 'reg_lambda': 0.5394711851873473, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7647460746390761}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.154500645426918, 'max_leaves': 65.30756774047329, 'min_child_weight': 2.0241941348691475, 'learning_rate': 0.1805010334558513, 'subsample': 1.0, 'reg_alpha': 2.756023074139043e-10, 'reg_lambda': 0.226843691353034, 'colsample_bylevel': 0.6332481447762133, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.319056398368438, 'max_leaves': 4.0, 'min_child_weight': 0.2910413757185681, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.07792031323209, 'reg_alpha': 2.0908227596674267e-10, 'reg_lambda': 0.6201826310969593, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.261640333045328, 'max_leaves': 5.432723737815707, 'min_child_weight': 2.443897254519365, 'learning_rate': 0.9676422385142075, 'subsample': 0.9563350554049138, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.238951041009898, 'max_leaves': 15.998075398874422, 'min_child_weight': 7.836433513734635, 'learning_rate': 0.05900047463596908, 'subsample': 1.0, 'reg_alpha': 7.362783031858682e-10, 'reg_lambda': 0.8637843682673525, 'colsample_bylevel': 0.6048489273484361, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 60.7228139986751, 'min_child_weight': 2.7018035629797326, 'learning_rate': 0.03579263658572585, 'subsample': 0.7606384041920876, 'reg_alpha': 1.584186386044273e-10, 'reg_lambda': 0.1416738245355897, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 35.20349685256458, 'min_child_weight': 2.6003432152230057, 'learning_rate': 0.03535318554175535, 'subsample': 0.6, 'reg_alpha': 6.469005156316126e-10, 'reg_lambda': 0.28924436807438875, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9206841100373463}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.433541880487324, 'max_leaves': 27.595217624292953, 'min_child_weight': 8.142195947255473, 'learning_rate': 0.05973386880614672, 'subsample': 1.0, 'reg_alpha': 1.8030625050715766e-10, 'reg_lambda': 0.42308735634576344, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.045552512947154, 'max_leaves': 10.58077510034556, 'min_child_weight': 0.8160069032385713, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.294791271306666, 'reg_alpha': 1e-10, 'reg_lambda': 0.27506016752210455, 'colsample_bytree': 0.9315298295293504}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.388890068167134, 'max_leaves': 4.0, 'min_child_weight': 0.8716534336256664, 'learning_rate': 0.344883675205546, 'subsample': 0.8185721188235932, 'log_max_bin': 3.0, 'reg_alpha': 2.4821415258516244e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.57059781067705, 'max_leaves': 4.0, 'min_child_weight': 1.170336314414454, 'learning_rate': 0.29642301250964714, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5632891571414839, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.369708408360759, 'max_leaves': 8.833785028410485, 'min_child_weight': 0.6077528401962086, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 4.142568247252839, 'reg_alpha': 2.576180502096266e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.21735535444749332, 'learning_rate': 1.0, 'subsample': 0.6099049374516013, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.568068274286915, 'max_leaves': 4.880929271307971, 'min_child_weight': 3.2724071641951227, 'learning_rate': 0.8309846200338883, 'subsample': 1.0, 'log_max_bin': 3.574540478512004, 'reg_alpha': 3.4551373727009356e-10, 'reg_lambda': 0.648243886796628, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.5458708502030727, 'learning_rate': 0.4139173339649431, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.5764685114315344e-10, 'reg_lambda': 0.39979088827118786, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.735116959429682, 'max_leaves': 6.304212676151092, 'min_child_weight': 1.3030100779434217, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 5.540677532308018, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.170145563748495, 'max_leaves': 14.00509637122292, 'min_child_weight': 0.46281631798666323, 'learning_rate': 0.28397028022595355, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.4994184312478915e-10, 'reg_lambda': 0.9745284399362816, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.19930127400574, 'max_leaves': 4.0, 'min_child_weight': 1.5368412725038014, 'learning_rate': 1.0, 'subsample': 0.6137783171177692, 'log_max_bin': 3.052826607363671, 'reg_alpha': 1.1626391024786407e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.411289756499749, 'max_leaves': 27.03464069511822, 'min_child_weight': 18.266848432166505, 'learning_rate': 0.06935795697054202, 'subsample': 0.6, 'reg_alpha': 3.443591202604934e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7532306909968376, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 35.93345914000073, 'min_child_weight': 1.1590671520095872, 'learning_rate': 0.030447588701718844, 'subsample': 1.0, 'reg_alpha': 3.3871676271111836e-10, 'reg_lambda': 0.10623519736192692, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7163431746483747}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.261909251606946, 'max_leaves': 22.302030955252153, 'min_child_weight': 0.8153335453811839, 'learning_rate': 0.6643461042558118, 'subsample': 1.0, 'log_max_bin': 3.6905814959572787, 'reg_alpha': 2.6639275560385546e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9991421647622655}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.787154477827226, 'max_leaves': 4.0, 'min_child_weight': 0.8723733042746485, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.983721675871232, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.189152875299555, 'max_leaves': 4.0, 'min_child_weight': 0.33960007236299417, 'learning_rate': 1.0, 'subsample': 0.9714432164874426, 'log_max_bin': 4.440513081290387, 'reg_alpha': 2.196681189108156e-10, 'reg_lambda': 0.28288948661920493, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.570730819339448, 'max_leaves': 8.317189101557437, 'min_child_weight': 2.094449550970279, 'learning_rate': 0.8530232880183076, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.529134620927758, 'min_child_weight': 2.3179168798957743, 'learning_rate': 1.0, 'subsample': 0.8618716586043018, 'log_max_bin': 3.0, 'reg_alpha': 2.720833356450653e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.364329337804893, 'max_leaves': 4.0, 'min_child_weight': 0.3068596744082256, 'learning_rate': 0.42212053381697884, 'subsample': 1.0, 'log_max_bin': 4.752378102014461, 'reg_alpha': 1e-10, 'reg_lambda': 0.7225740974531764, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.5266387711421165, 'max_leaves': 16.343407222853187, 'min_child_weight': 7.335151134076671, 'learning_rate': 0.018117495345403384, 'subsample': 1.0, 'reg_alpha': 1.8241852958756115e-10, 'reg_lambda': 0.08169153510779302, 'colsample_bylevel': 0.8783846864600594, 'colsample_bytree': 0.97152248159396}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 59.43975717769815, 'min_child_weight': 2.8864441374768157, 'learning_rate': 0.11656040234978508, 'subsample': 0.6565562835262125, 'reg_alpha': 6.394098597790504e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.659971852807285, 'max_leaves': 4.0, 'min_child_weight': 0.3937475038318539, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 9.134704709855558, 'reg_alpha': 2.6625980222602307e-10, 'reg_lambda': 0.825703823012271, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.875899931209124, 'max_leaves': 5.414946377982737, 'min_child_weight': 1.8064247065649734, 'learning_rate': 0.3821880634531931, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9155584622076504}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.680733351012657, 'max_leaves': 4.0, 'min_child_weight': 0.26724312416643886, 'learning_rate': 0.5225610885224934, 'subsample': 1.0, 'log_max_bin': 3.680447695315109, 'reg_alpha': 2.3291989738072926e-10, 'reg_lambda': 0.5251216555940774, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.476162882240527, 'max_leaves': 5.076234539250581, 'min_child_weight': 2.6615286035466554, 'learning_rate': 1.0, 'subsample': 0.6562363111893273, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.981646720436786, 'max_leaves': 10.082218929876749, 'min_child_weight': 4.965807616851906, 'learning_rate': 0.017538670357342582, 'subsample': 0.6800513653876534, 'reg_alpha': 1.2599326849221808e-10, 'reg_lambda': 0.15911709076244196, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9247457081195073}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 96.35261479037402, 'min_child_weight': 4.263657721376733, 'learning_rate': 0.12040722038808813, 'subsample': 1.0, 'reg_alpha': 9.257653827108012e-10, 'reg_lambda': 0.7690917074973297, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.534697646196915, 'max_leaves': 5.051295071581007, 'min_child_weight': 0.45715878919133457, 'learning_rate': 0.768771014492984, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1.429245469669291e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.517047965258675, 'max_leaves': 4.0, 'min_child_weight': 1.555860317874054, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.2197222493553565e-10, 'reg_lambda': 0.4614241661455834, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.501891334788294, 'max_leaves': 6.673221740346744, 'min_child_weight': 1.2369331244927302, 'learning_rate': 0.4538202142817538, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.0466565359886036e-10, 'reg_lambda': 0.4131970979920183, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.540195273290109, 'max_leaves': 4.0, 'min_child_weight': 0.5750312648162312, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 8.989420867678296, 'reg_alpha': 1.6655726489104556e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.991766504134976, 'max_leaves': 6.015403871371581, 'min_child_weight': 0.29051431620675, 'learning_rate': 0.872368137618802, 'subsample': 1.0, 'log_max_bin': 3.0742354441184077, 'reg_alpha': 1.92859948940869e-10, 'reg_lambda': 0.5607780548761049, 'colsample_bytree': 0.8844507199827751}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.3125558164004945, 'max_leaves': 4.0, 'min_child_weight': 2.4483310439130137, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.394587987240097, 'min_child_weight': 7.580417330302824, 'learning_rate': 0.061389084616091646, 'subsample': 0.9105528665366008, 'reg_alpha': 1.28130760776682e-09, 'reg_lambda': 0.22321260134789125, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.361661813850169, 'max_leaves': 59.25419763758073, 'min_child_weight': 2.7930525544846514, 'learning_rate': 0.03439996801120284, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.548246981969283, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.715790475294153, 'max_leaves': 22.19372571002192, 'min_child_weight': 3.5125437355724185, 'learning_rate': 0.014209660171975984, 'subsample': 1.0, 'reg_alpha': 3.490328096236998e-10, 'reg_lambda': 0.31710162245088835, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 43.771296873510465, 'min_child_weight': 6.027684089465626, 'learning_rate': 0.1486159782480508, 'subsample': 0.9323898382634703, 'reg_alpha': 3.3418120935517626e-10, 'reg_lambda': 0.3859192964092992, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.5864804707118, 'max_leaves': 4.0, 'min_child_weight': 1.8345002331597529, 'learning_rate': 0.4005126468011455, 'subsample': 1.0, 'log_max_bin': 4.807245678580083, 'reg_alpha': 2.4317589547792846e-10, 'reg_lambda': 0.29195814329174286, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.617808584993531, 'max_leaves': 5.345475611859554, 'min_child_weight': 0.3877215201248807, 'learning_rate': 1.0, 'subsample': 0.7985614048134686, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.9501429687400575, 'min_child_weight': 1.0781137479167335, 'learning_rate': 0.5534011120175069, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 3.6042330568081583e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8715989625720538}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.722866848228694, 'max_leaves': 4.0, 'min_child_weight': 0.6597404220515345, 'learning_rate': 1.0, 'subsample': 0.8046601757052413, 'log_max_bin': 6.417968927022434, 'reg_alpha': 1e-10, 'reg_lambda': 0.2878981637136236, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.720016805367391, 'max_leaves': 11.630812003585785, 'min_child_weight': 0.3718268835712781, 'learning_rate': 0.5429952652165541, 'subsample': 0.6, 'log_max_bin': 9.082163847733309, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.352448754506457, 'max_leaves': 4.0, 'min_child_weight': 1.9129203683138156, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.167846018368625e-10, 'reg_lambda': 0.5877712710391605, 'colsample_bytree': 0.9323681935186878}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.933421904887008, 'max_leaves': 14.615319640114647, 'min_child_weight': 0.9915793268964468, 'learning_rate': 0.04612452891385109, 'subsample': 0.6527890343780952, 'reg_alpha': 2.1460725022852369e-10, 'reg_lambda': 0.7252912533784532, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 66.46780095840663, 'min_child_weight': 20.0, 'learning_rate': 0.045784371065878, 'subsample': 1.0, 'reg_alpha': 5.435054328336026e-10, 'reg_lambda': 0.16872619717452886, 'colsample_bylevel': 0.9946064699413828, 'colsample_bytree': 0.7189481543883246}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.009574779194322, 'min_child_weight': 2.1176481822545874, 'learning_rate': 0.013056984936152637, 'subsample': 1.0, 'reg_alpha': 2.2303029553704016e-10, 'reg_lambda': 0.675888432752455, 'colsample_bylevel': 0.7203666750824018, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.0723162410271, 'max_leaves': 88.23666456387171, 'min_child_weight': 9.998121579345812, 'learning_rate': 0.16173584922989379, 'subsample': 0.6203495604984316, 'reg_alpha': 5.22979203985818e-10, 'reg_lambda': 0.18105892791823278, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.090132437425632, 'max_leaves': 4.857545998747912, 'min_child_weight': 0.6140286950589356, 'learning_rate': 0.31892090718130134, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 2.996516330299907e-10, 'reg_lambda': 0.8176639256152762, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.244246531733411, 'max_leaves': 4.0, 'min_child_weight': 1.1583745593548815, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 7.130793924546647, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.577465547701811, 'max_leaves': 8.66848530699093, 'min_child_weight': 2.153366538736661, 'learning_rate': 0.8086850221310066, 'subsample': 0.8056937496993716, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.422693595922829, 'colsample_bytree': 0.9544667867486182}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.176849585163408, 'max_leaves': 4.0, 'min_child_weight': 0.3303084757170226, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 4.081657235854808, 'reg_alpha': 4.924258256070713e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 65.46307563920159, 'min_child_weight': 2.9772191220975124, 'learning_rate': 0.026547078928819284, 'subsample': 1.0, 'reg_alpha': 3.332330289149104e-10, 'reg_lambda': 0.256151659178227, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.755675559104861, 'max_leaves': 14.83963512708673, 'min_child_weight': 7.111503426575318, 'learning_rate': 0.07954858433550833, 'subsample': 0.6, 'reg_alpha': 3.500259467211054e-10, 'reg_lambda': 0.47774679820186794, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9103699754664163}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.439099061638041, 'max_leaves': 7.371482335639414, 'min_child_weight': 0.8019052937207598, 'learning_rate': 0.5837253945475281, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.9620190925476955, 'max_leaves': 4.0, 'min_child_weight': 0.8869815733101126, 'learning_rate': 1.0, 'subsample': 0.6266424543272523, 'log_max_bin': 3.00941387985958, 'reg_alpha': 1.9781321339639286e-10, 'reg_lambda': 0.19242019864928978, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.986055639591692, 'max_leaves': 4.0, 'min_child_weight': 0.845942830382679, 'learning_rate': 0.31261336796052763, 'subsample': 1.0, 'log_max_bin': 4.630909320756566, 'reg_alpha': 1.5402726847166307e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.684028809167863, 'max_leaves': 6.7972096930088854, 'min_child_weight': 0.8408076687030824, 'learning_rate': 1.0, 'subsample': 0.931779180011243, 'log_max_bin': 3.0, 'reg_alpha': 1.131801217046641e-10, 'reg_lambda': 0.9860249642223017, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.610144666721804, 'max_leaves': 9.234816426838258, 'min_child_weight': 1.107533726575236, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.371711553769326e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.586956989179196, 'max_leaves': 4.0, 'min_child_weight': 0.6422154034709026, 'learning_rate': 0.6877648149981842, 'subsample': 1.0, 'log_max_bin': 3.225110283077294, 'reg_alpha': 1.2708812536831188e-10, 'reg_lambda': 0.21596431338195693, 'colsample_bytree': 0.942031086274841}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.546038851157757, 'max_leaves': 13.318750703720966, 'min_child_weight': 0.9638210452404047, 'learning_rate': 0.25571463121283466, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.1255112390377165e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.641793810439183, 'max_leaves': 4.0, 'min_child_weight': 0.737974360056368, 'learning_rate': 1.0, 'subsample': 0.7627885212419665, 'log_max_bin': 6.883573532941129, 'reg_alpha': 1.5488805786039437e-10, 'reg_lambda': 0.9161319015621642, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.48543098206885, 'max_leaves': 4.0, 'min_child_weight': 0.4352196284483886, 'learning_rate': 0.41270537958500564, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.230902090004441, 'min_child_weight': 1.6342903044284351, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.1146628169441097, 'reg_alpha': 3.024717387326569e-10, 'reg_lambda': 0.4266052580557495, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.061217297447746, 'max_leaves': 5.137399346669194, 'min_child_weight': 3.1954013354146924, 'learning_rate': 0.8768920320449052, 'subsample': 1.0, 'log_max_bin': 6.160561676322249, 'reg_alpha': 2.4608125290571667e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.641566648181934, 'max_leaves': 4.0, 'min_child_weight': 0.22259339106705342, 'learning_rate': 1.0, 'subsample': 0.6042996749753482, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.40604265361690156, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.72017779971458, 'max_leaves': 11.673063185452728, 'min_child_weight': 0.278669315875438, 'learning_rate': 1.0, 'subsample': 0.9416741925076886, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.50915947462106, 'max_leaves': 4.0, 'min_child_weight': 2.5523987699746584, 'learning_rate': 0.5324690277268253, 'subsample': 1.0, 'log_max_bin': 3.175284693473613, 'reg_alpha': 3.188388565872571e-10, 'reg_lambda': 0.6267414245488669, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.210408585611885, 'max_leaves': 4.0, 'min_child_weight': 0.4592517750133672, 'learning_rate': 0.3938405384759037, 'subsample': 1.0, 'log_max_bin': 3.717449003221029, 'reg_alpha': 1.1576861921138318e-10, 'reg_lambda': 0.21535778042889667, 'colsample_bytree': 0.8391792034970056}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.296689809217079, 'max_leaves': 4.335001088884802, 'min_child_weight': 1.5487696679004554, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.5058333691990415e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.399968553297043, 'max_leaves': 4.0, 'min_child_weight': 2.7433408153399084, 'learning_rate': 1.0, 'subsample': 0.7095176305011992, 'log_max_bin': 3.999553821038311, 'reg_alpha': 1e-10, 'reg_lambda': 0.6366369209146526, 'colsample_bytree': 0.9915837805067375}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.757290528559575, 'max_leaves': 14.597008824625123, 'min_child_weight': 0.25927337029833025, 'learning_rate': 0.5112800066663894, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.2189706830878155e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.143497543404243, 'min_child_weight': 2.327039427823266, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 5.750553221533916, 'reg_alpha': 1.0845557532303345e-10, 'reg_lambda': 0.6280582340293638, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.99088789685262, 'max_leaves': 4.0, 'min_child_weight': 0.3056567115132557, 'learning_rate': 0.45463984340187324, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.6073701088705096e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.4665098954249185, 'max_leaves': 32.19418975798287, 'min_child_weight': 8.892801292452667, 'learning_rate': 0.030707693625565902, 'subsample': 0.7399705126885489, 'reg_alpha': 3.110105099875658e-10, 'reg_lambda': 0.07157695645288559, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 30.174642197409273, 'min_child_weight': 2.3808587746620575, 'learning_rate': 0.06877047077454225, 'subsample': 1.0, 'reg_alpha': 3.7503622121756043e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.930264743165099, 'max_leaves': 4.0, 'min_child_weight': 0.8084162046975042, 'learning_rate': 0.8330530180249093, 'subsample': 0.6, 'log_max_bin': 5.4086616236849405, 'reg_alpha': 2.7838490549398415e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.193014924994029, 'max_leaves': 20.52421508140759, 'min_child_weight': 0.8798379039622228, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.7472494370983789, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.903218961190997, 'max_leaves': 5.012512524337203, 'min_child_weight': 0.5458578068426106, 'learning_rate': 0.9709150633637963, 'subsample': 0.6, 'log_max_bin': 3.643377773154447, 'reg_alpha': 1e-10, 'reg_lambda': 0.5971965608925285, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.576278439665087, 'max_leaves': 4.0, 'min_child_weight': 1.3030412135796974, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 5.935807242906816e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.99789999903652, 'max_leaves': 22.178881231652557, 'min_child_weight': 2.7655898868630175, 'learning_rate': 0.03198931972366954, 'subsample': 0.7225165074091244, 'reg_alpha': 1.5639543349479059e-10, 'reg_lambda': 0.14007384470813597, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 43.80059330477999, 'min_child_weight': 7.655691861267902, 'learning_rate': 0.06601523775036787, 'subsample': 1.0, 'reg_alpha': 7.4580314666648e-10, 'reg_lambda': 0.8736508609546723, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.296876262215775, 'min_child_weight': 2.4512284725801, 'learning_rate': 0.01573592728652182, 'subsample': 0.6, 'reg_alpha': 1.973961293721915e-10, 'reg_lambda': 0.9383013050725989, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.744177404647237}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.051009769687177, 'max_leaves': 34.330579382000046, 'min_child_weight': 8.637507366327378, 'learning_rate': 0.13420134120976568, 'subsample': 1.0, 'reg_alpha': 5.908940909614151e-10, 'reg_lambda': 0.13042253523992012, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.22817645701884, 'max_leaves': 8.093940077050627, 'min_child_weight': 1.239074496692161, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.7061162969633052, 'reg_alpha': 2.0078081137415914e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.2909185653684805, 'max_leaves': 4.0, 'min_child_weight': 0.5740374940885081, 'learning_rate': 0.8536366120791868, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.501506811056757, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.61175288159448, 'max_leaves': 13.489941701555518, 'min_child_weight': 2.5450729410845816, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.3493575524478045e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.905377369208474, 'max_leaves': 4.0, 'min_child_weight': 0.2794714475912183, 'learning_rate': 0.9268316389581673, 'subsample': 0.6, 'log_max_bin': 6.268102120489008, 'reg_alpha': 1e-10, 'reg_lambda': 0.861326816775532, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.252958681231823, 'max_leaves': 79.02518276321489, 'min_child_weight': 6.754665455415391, 'learning_rate': 0.026999884852795728, 'subsample': 0.6391172845783956, 'reg_alpha': 5.855515290970867e-10, 'reg_lambda': 0.8199360977981156, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.292893515898667, 'min_child_weight': 3.134500757766985, 'learning_rate': 0.07821450197080788, 'subsample': 1.0, 'reg_alpha': 1.9919716818866619e-10, 'reg_lambda': 0.149250210297029, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.563363996320284, 'max_leaves': 13.09330585250592, 'min_child_weight': 0.8322098486234345, 'learning_rate': 0.339118570211218, 'subsample': 0.9411800100446521, 'log_max_bin': 3.5842018545420826, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9426981630846125}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.504733075521378, 'max_leaves': 4.0, 'min_child_weight': 0.8546825301895596, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 4.628295071629253e-10, 'reg_lambda': 0.7976848618560376, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.56891420644792, 'max_leaves': 19.058816240844862, 'min_child_weight': 11.80861909175049, 'learning_rate': 0.09238185637385445, 'subsample': 0.6, 'reg_alpha': 1.4012327024814471e-10, 'reg_lambda': 0.19827542069924486, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 50.97106475588579, 'min_child_weight': 1.7929703569872237, 'learning_rate': 0.022859278108512286, 'subsample': 1.0, 'reg_alpha': 8.32411391898894e-10, 'reg_lambda': 0.6172002288277588, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.52214746614038, 'max_leaves': 4.0, 'min_child_weight': 1.0407230247131904, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.0612979223916437e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.482993479628808, 'min_child_weight': 0.6834433390826206, 'learning_rate': 0.3347318976476818, 'subsample': 0.8111114631314764, 'log_max_bin': 4.210137772755464, 'reg_alpha': 1.642594847653596e-10, 'reg_lambda': 0.6510863436447984, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.405895343231474, 'min_child_weight': 5.719483477139003, 'learning_rate': 0.05936962864543566, 'subsample': 0.6977285830700858, 'reg_alpha': 1.3602841534761217e-09, 'reg_lambda': 0.2401494005994674, 'colsample_bylevel': 0.7844492811536902, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.675727997723056, 'max_leaves': 78.30536449855215, 'min_child_weight': 3.7018209901452357, 'learning_rate': 0.035570081794556264, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5095812636676031, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.752326267965991, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.897384825780923e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 27.02221417375912, 'max_leaves': 8.110748395130878, 'min_child_weight': 0.9454345133969199, 'learning_rate': 0.7992499228789827, 'subsample': 0.7745942810758294, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.8364159453148919, 'colsample_bytree': 0.8245557151586608}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 57.466156524043264, 'min_child_weight': 7.1851166290885065, 'learning_rate': 0.1121769889177729, 'subsample': 0.6, 'reg_alpha': 2.12610828923302e-10, 'reg_lambda': 0.4381474692318548, 'colsample_bylevel': 0.7465809612947756, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.307017391532469, 'max_leaves': 16.904700358308933, 'min_child_weight': 2.9467168149708844, 'learning_rate': 0.018825452237611222, 'subsample': 1.0, 'reg_alpha': 5.48608963218709e-10, 'reg_lambda': 0.27930238930978846, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9064910067623764}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.984193552773999, 'max_leaves': 42.12401273952371, 'min_child_weight': 8.351948303155865, 'learning_rate': 0.04221638355331043, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.39468687581449174, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 23.061624323153584, 'min_child_weight': 2.535037720535433, 'learning_rate': 0.0500228197984756, 'subsample': 1.0, 'reg_alpha': 1.1859684753172568e-09, 'reg_lambda': 0.3100575228754561, 'colsample_bylevel': 0.6538172443044546, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.121041089799134, 'learning_rate': 0.6280761076873904, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.8493588657090869e-10, 'reg_lambda': 0.7248441335292157, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.788947487955351, 'max_leaves': 4.13472128369248, 'min_child_weight': 0.634477384943662, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.201265353362871, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7555842829586228}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.922033408250678, 'max_leaves': 34.251592489537614, 'min_child_weight': 3.8955873670141417, 'learning_rate': 0.06528965017444521, 'subsample': 1.0, 'reg_alpha': 5.384626893461415e-10, 'reg_lambda': 0.5472655472696515, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.36213110614833, 'min_child_weight': 5.434996572722267, 'learning_rate': 0.03234482864264362, 'subsample': 0.6, 'reg_alpha': 2.1661706322924604e-10, 'reg_lambda': 0.2236128980474565, 'colsample_bylevel': 0.9824251922439208, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.269220263647992, 'max_leaves': 54.1173465660108, 'min_child_weight': 4.563358742117216, 'learning_rate': 0.0848078270612659, 'subsample': 0.6143455193187137, 'reg_alpha': 9.016916413679851e-10, 'reg_lambda': 0.2784868655093155, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.95077213546837, 'min_child_weight': 4.6396755514861905, 'learning_rate': 0.02490079772359935, 'subsample': 1.0, 'reg_alpha': 1.2935708957856639e-10, 'reg_lambda': 0.43943054478596427, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.35214094171319965, 'learning_rate': 0.847213840223994, 'subsample': 0.9799966152675395, 'log_max_bin': 3.0, 'reg_alpha': 3.368493195476793e-10, 'reg_lambda': 0.682285321926261, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.60381441514517, 'max_leaves': 10.325648054598002, 'min_child_weight': 2.019859479019182, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.1423602838611604, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.33729319674824, 'max_leaves': 21.40062926864579, 'min_child_weight': 6.483317475286294, 'learning_rate': 0.1109630413878496, 'subsample': 1.0, 'reg_alpha': 1.242518646647286e-10, 'reg_lambda': 0.13281192865101, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.1286476039283135, 'max_leaves': 45.39343888386996, 'min_child_weight': 3.265689836903609, 'learning_rate': 0.01903140469671568, 'subsample': 0.6956296562407246, 'reg_alpha': 9.387400884438694e-10, 'reg_lambda': 0.9214205099608231, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 31.454178352262808, 'criterion': 2.0, 'max_features': 0.2584592785942731}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 1.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.596279426381763, 'max_leaves': 4.0, 'min_child_weight': 0.663317449342812, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 5.353597332726517, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8975060914155811}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.894762005843006, 'max_leaves': 7.245546664846037, 'min_child_weight': 1.0722998765897835, 'learning_rate': 0.3038256980397559, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 3.7357330650222717e-10, 'reg_lambda': 0.4880052095407865, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.681734469195996, 'max_leaves': 100.92078909883391, 'min_child_weight': 5.93937447192839, 'learning_rate': 0.09309935179058434, 'subsample': 1.0, 'reg_alpha': 2.8000627809305356e-10, 'reg_lambda': 0.1870667244314223, 'colsample_bylevel': 0.8103709926603447, 'colsample_bytree': 0.9918271008248359}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.625847810516735, 'min_child_weight': 3.5647700087830554, 'learning_rate': 0.02268310687899068, 'subsample': 0.6, 'reg_alpha': 4.165628257303587e-10, 'reg_lambda': 0.6541817386199882, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.7193530032573103, 'learning_rate': 0.8219364168909487, 'subsample': 0.6, 'log_max_bin': 6.486916571706184, 'reg_alpha': 2.0401808296697558e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.99147125350707, 'max_leaves': 11.979793363101756, 'min_child_weight': 0.41368771725331455, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.4867420312717399, 'colsample_bytree': 0.7659689738983361}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.92430105172091, 'max_leaves': 4.0, 'min_child_weight': 0.5566756068144718, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 8.978936099822022, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.204322543535375, 'min_child_weight': 1.2777193941375637, 'learning_rate': 0.5614340743371037, 'subsample': 0.9720337310553335, 'log_max_bin': 3.0, 'reg_alpha': 4.281355095813167e-10, 'reg_lambda': 0.6134197964912163, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.232100408340862, 'max_leaves': 19.59034650450368, 'min_child_weight': 0.4585692651053372, 'learning_rate': 0.7432079113877458, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.1045180559381582e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8343073872693642}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.5510747736370023, 'learning_rate': 1.0, 'subsample': 0.9001782042329411, 'log_max_bin': 5.398826785629174, 'reg_alpha': 1.5783196026300058e-10, 'reg_lambda': 0.4871905579536564, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.777382690258195, 'min_child_weight': 1.235731943009022, 'learning_rate': 1.0, 'subsample': 0.6305674850670583, 'log_max_bin': 6.169650713530005, 'reg_alpha': 1.3837250139874376e-10, 'reg_lambda': 0.9421821550328522, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.150025305495273, 'max_leaves': 4.0, 'min_child_weight': 0.5755902184887962, 'learning_rate': 0.26234164369535246, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.259847499701127e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.149033293869983, 'max_leaves': 6.152079767296422, 'min_child_weight': 0.6952247281163728, 'learning_rate': 1.0, 'subsample': 0.8254526948864911, 'log_max_bin': 3.866752622020945, 'reg_alpha': 1.3822685104937273e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.023628068780877, 'max_leaves': 4.0, 'min_child_weight': 1.0230867664866603, 'learning_rate': 0.16706417965323248, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.2611750075412653e-10, 'reg_lambda': 0.5611341093107569, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.38419112938029, 'max_leaves': 11.894111281998827, 'min_child_weight': 0.6444768071251146, 'learning_rate': 0.7429641149552166, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.6589317343874678e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.1036475032251472, 'learning_rate': 1.0, 'subsample': 0.6321563901678742, 'log_max_bin': 3.244941310048895, 'reg_alpha': 1.0508464350943636e-10, 'reg_lambda': 0.35380383537559484, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.483297129807656, 'max_leaves': 4.0, 'min_child_weight': 0.7021899201133909, 'learning_rate': 1.0, 'subsample': 0.687408537988919, 'log_max_bin': 9.12290313675458, 'reg_alpha': 1.4546601013923319e-10, 'reg_lambda': 0.6582755133513006, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.923171779767014, 'min_child_weight': 1.0129385208994304, 'learning_rate': 0.6099307848067989, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.1984122596594163e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.547755879258986, 'min_child_weight': 2.334546695014655, 'learning_rate': 0.022927487054975933, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.17198678433256817, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.709215441111015, 'max_leaves': 35.26414859491497, 'min_child_weight': 9.069214179213112, 'learning_rate': 0.09210702167084023, 'subsample': 0.6, 'reg_alpha': 1.1864752853621879e-09, 'reg_lambda': 0.7115409215969654, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.52219931889276, 'max_leaves': 4.0, 'min_child_weight': 0.5062842870884025, 'learning_rate': 0.17602300268103227, 'subsample': 1.0, 'log_max_bin': 4.9094965649517395, 'reg_alpha': 1.065616652516684e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.394407217080287, 'max_leaves': 4.148434407899875, 'min_child_weight': 1.4048929370505066, 'learning_rate': 1.0, 'subsample': 0.7161807676578134, 'log_max_bin': 3.0, 'reg_alpha': 1.6359377408647302e-10, 'reg_lambda': 0.8057801159102452, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.640537809442673, 'max_leaves': 15.006396437021538, 'min_child_weight': 0.6400900390764221, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.39221839160606253, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.428930968084919, 'max_leaves': 4.0, 'min_child_weight': 1.1112111978752823, 'learning_rate': 0.96306791323779, 'subsample': 1.0, 'log_max_bin': 3.5127456771986845, 'reg_alpha': 3.3923496524203586e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9431316203532822}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.7827121285645475, 'max_leaves': 4.0, 'min_child_weight': 0.4406436241555508, 'learning_rate': 0.5470381064939698, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.9175974559930584, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.867958267107385, 'max_leaves': 5.410440150352408, 'min_child_weight': 1.6141734047173264, 'learning_rate': 1.0, 'subsample': 0.8666537363467705, 'log_max_bin': 3.0, 'reg_alpha': 2.658099978686308e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.6174199865058703, 'learning_rate': 0.6399345695798752, 'subsample': 0.6, 'log_max_bin': 5.5156201759095556, 'reg_alpha': 3.858204820508244e-10, 'reg_lambda': 0.7611515684466358, 'colsample_bytree': 0.8701379236965359}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.212543145389677, 'max_leaves': 5.701357508432982, 'min_child_weight': 0.4397591380125844, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 66.05669233170775, 'min_child_weight': 5.638348361071555, 'learning_rate': 0.06379332842894885, 'subsample': 1.0, 'reg_alpha': 2.2753456418565186e-10, 'reg_lambda': 0.4709707397350034, 'colsample_bylevel': 0.7472431734727057, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.240903122867364, 'max_leaves': 14.706279144351411, 'min_child_weight': 3.7550897235512846, 'learning_rate': 0.033103501557888125, 'subsample': 0.6, 'reg_alpha': 5.126263204983353e-10, 'reg_lambda': 0.25983702319882973, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 68.20887654123288, 'min_child_weight': 4.696926945166144, 'learning_rate': 0.06620389417714966, 'subsample': 1.0, 'reg_alpha': 1.0156672675722656e-10, 'reg_lambda': 0.15728756682149386, 'colsample_bylevel': 0.9647180913000482, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.20248143539725, 'max_leaves': 14.242254176337036, 'min_child_weight': 4.507735426937344, 'learning_rate': 0.03189816208363557, 'subsample': 0.797949617853912, 'reg_alpha': 1.1484096233945432e-09, 'reg_lambda': 0.7780375620240763, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.54417130333133, 'max_leaves': 4.847666655613116, 'min_child_weight': 1.844708621880867, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 3.372135501345915e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.673524165924265, 'max_leaves': 4.0, 'min_child_weight': 0.385575917320173, 'learning_rate': 0.39367385463716964, 'subsample': 0.9434816095139281, 'log_max_bin': 6.078931669580715, 'reg_alpha': 1e-10, 'reg_lambda': 0.3272596897048529, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 1.0, 'max_features': 0.33656319267343654}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 28.19694693908979, 'criterion': 2.0, 'max_features': 0.7905415581430947}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 94.46966960352292, 'min_child_weight': 11.842273636450418, 'learning_rate': 0.03498601699863832, 'subsample': 0.6403591807794686, 'reg_alpha': 1.5952731886565814e-10, 'reg_lambda': 0.1393381298092306, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7279277538718656}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.590879421800366, 'max_leaves': 10.28317512763276, 'min_child_weight': 1.7878749164597272, 'learning_rate': 0.06036075918881447, 'subsample': 1.0, 'reg_alpha': 7.311613286932289e-10, 'reg_lambda': 0.8782637975264914, 'colsample_bylevel': 0.785231247471248, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.5367609832209, 'min_child_weight': 0.9270416547887564, 'learning_rate': 0.6158675716875869, 'subsample': 1.0, 'log_max_bin': 3.7309652783148213, 'reg_alpha': 3.888027594758245e-10, 'reg_lambda': 0.3335587712986568, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.019940564257105, 'max_leaves': 4.0, 'min_child_weight': 0.7672527069263405, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9214343675884259}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.615917254281684, 'min_child_weight': 0.498110127748892, 'learning_rate': 0.5593978539714526, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.1488087662442653e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8472609955487345}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.38183688302293, 'max_leaves': 4.0, 'min_child_weight': 1.4279477156680431, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 4.15649746634209, 'reg_alpha': 1.5174697045925178e-10, 'reg_lambda': 0.970961375740013, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 43.50898993219898, 'min_child_weight': 9.034964175704634, 'learning_rate': 0.06652883461992949, 'subsample': 0.8275685011197282, 'reg_alpha': 9.247217245140371e-10, 'reg_lambda': 0.245489428538113, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.557224391896279, 'max_leaves': 22.32752721440927, 'min_child_weight': 2.343396562146389, 'learning_rate': 0.031742364932362245, 'subsample': 1.0, 'reg_alpha': 1.2613546684650474e-10, 'reg_lambda': 0.4984965574902337, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.26350818101586, 'max_leaves': 4.0, 'min_child_weight': 2.4467356840695933, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.056388441410364e-10, 'reg_lambda': 0.7301865417748482, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.127379264555022, 'max_leaves': 10.468084145277498, 'min_child_weight': 0.29070374201070276, 'learning_rate': 0.8619456068118785, 'subsample': 0.8400941670974199, 'log_max_bin': 4.456418056211058, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.2792919107921294, 'max_leaves': 4.151744271483076, 'min_child_weight': 1.1200039695999144, 'learning_rate': 0.3159911968817855, 'subsample': 1.0, 'log_max_bin': 4.206348799122422, 'reg_alpha': 1e-10, 'reg_lambda': 0.7478628107467747, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.751636565002086, 'max_leaves': 4.0, 'min_child_weight': 0.635064909032624, 'learning_rate': 1.0, 'subsample': 0.8108345315683954, 'log_max_bin': 3.0, 'reg_alpha': 2.501454281017531e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.514402045816194, 'max_leaves': 7.702655224287017, 'min_child_weight': 0.2910089411321545, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 4.478579536622335, 'reg_alpha': 1e-10, 'reg_lambda': 0.7131321174893602, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 2.44416964064049, 'learning_rate': 0.4693136502010973, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 2.1297716326025392e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9185025490587952}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.894491174235181, 'max_leaves': 4.0, 'min_child_weight': 0.3265810970323283, 'learning_rate': 1.0, 'subsample': 0.8334655783035853, 'log_max_bin': 3.0, 'reg_alpha': 1.3315084800994186e-10, 'reg_lambda': 0.7773426232089218, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.451346164579953, 'min_child_weight': 2.177943627275336, 'learning_rate': 0.357291899076494, 'subsample': 1.0, 'log_max_bin': 8.729883327655251, 'reg_alpha': 1.3092537713434736e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.60529462058637, 'min_child_weight': 7.085403170748468, 'learning_rate': 0.0387808617138439, 'subsample': 0.6, 'reg_alpha': 2.5562048868393714e-10, 'reg_lambda': 0.5917905234353983, 'colsample_bylevel': 0.6457482724427542, 'colsample_bytree': 0.9189516495714658}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.587659555098895, 'max_leaves': 35.19064621966337, 'min_child_weight': 2.988186201721173, 'learning_rate': 0.05445424505038056, 'subsample': 1.0, 'reg_alpha': 4.5630225896682024e-10, 'reg_lambda': 0.20678877099297283, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.959361961654678, 'min_child_weight': 0.5486023515584669, 'learning_rate': 0.8093824587832789, 'subsample': 1.0, 'log_max_bin': 3.2794265057032357, 'reg_alpha': 3.893031812689632e-10, 'reg_lambda': 0.39299922236837936, 'colsample_bytree': 0.930691571977916}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.647741588064896, 'max_leaves': 4.0, 'min_child_weight': 1.296522366427268, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.931227708864613, 'max_leaves': 9.63591966687548, 'min_child_weight': 0.4855019875187927, 'learning_rate': 0.4276401047226061, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.9517759699498648e-10, 'reg_lambda': 0.9142512622685344, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.192557456228122, 'max_leaves': 4.0, 'min_child_weight': 1.4650304990617893, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.501403455667428, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.689953343483605, 'max_leaves': 14.806878398755057, 'min_child_weight': 0.8438520461203585, 'learning_rate': 1.0, 'subsample': 0.6926578513499067, 'log_max_bin': 4.953922444842293, 'reg_alpha': 1.504757548226083e-10, 'reg_lambda': 0.29041901206016096, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.4729106884021474, 'max_leaves': 4.0, 'min_child_weight': 0.8428909100123203, 'learning_rate': 0.5822682841644946, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.1585138756745815e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.9818953343984993}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.52596534871398, 'min_child_weight': 0.8397023112253618, 'learning_rate': 1.0, 'subsample': 0.6559655256125556, 'log_max_bin': 4.785870961242903, 'reg_alpha': 1.389441265431956e-10, 'reg_lambda': 0.19413805599930362, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.103831831854663, 'max_leaves': 4.0, 'min_child_weight': 0.8470564026817993, 'learning_rate': 0.5975251981444418, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.2546644054104873e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.72561812062779, 'max_leaves': 18.676399108616515, 'min_child_weight': 3.6835966699824394, 'learning_rate': 0.136956835848355, 'subsample': 0.6, 'reg_alpha': 2.0842006700271135e-10, 'reg_lambda': 0.14499590029696216, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 52.01474605104393, 'min_child_weight': 5.747780195643123, 'learning_rate': 0.015419329264943308, 'subsample': 1.0, 'reg_alpha': 5.596400006107168e-10, 'reg_lambda': 0.8439937596570651, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.591125026944663, 'max_leaves': 4.0, 'min_child_weight': 0.659274178919665, 'learning_rate': 0.4705713514983869, 'subsample': 0.6, 'log_max_bin': 3.3324622587026247, 'reg_alpha': 1.7175801853096606e-10, 'reg_lambda': 0.3089059985528992, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.176330350347199, 'max_leaves': 4.5228595150510955, 'min_child_weight': 1.0788761972078067, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.0149642584702302e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.470580747926862, 'max_leaves': 25.360880472007615, 'min_child_weight': 0.7036778655934743, 'learning_rate': 1.0, 'subsample': 0.6113879707009711, 'log_max_bin': 3.107225817956346, 'reg_alpha': 1e-10, 'reg_lambda': 0.9558372602853815, 'colsample_bytree': 0.9174986109028561}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.700960611146338, 'max_leaves': 4.0, 'min_child_weight': 1.0107966355745261, 'learning_rate': 0.6312693404793517, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.3579148209729074e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 36.30570551128908, 'min_child_weight': 4.198220747363664, 'learning_rate': 0.027862266619879797, 'subsample': 1.0, 'reg_alpha': 1.5884388917208367e-09, 'reg_lambda': 0.35733096050356855, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.45066733236933, 'max_leaves': 26.757451565858275, 'min_child_weight': 5.043208840735117, 'learning_rate': 0.07579363789175052, 'subsample': 0.7465263980008358, 'reg_alpha': 1e-10, 'reg_lambda': 0.3424714020135178, 'colsample_bylevel': 0.7328623824296158, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 44.27862692354655, 'min_child_weight': 5.352204845209889, 'learning_rate': 0.025228745763148864, 'subsample': 0.8968161846787094, 'reg_alpha': 6.077855694580305e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.856091177719305, 'max_leaves': 21.939437247229392, 'min_child_weight': 3.9558470949427442, 'learning_rate': 0.08370541155142229, 'subsample': 1.0, 'reg_alpha': 1.919101279892059e-10, 'reg_lambda': 0.0786000704376355, 'colsample_bylevel': 0.6639514032898411, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.475178469661813, 'max_leaves': 5.514132552215382, 'min_child_weight': 0.5030778666358732, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 5.54860584076326, 'reg_alpha': 1.6591651336649592e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.36697310597409, 'max_leaves': 4.0, 'min_child_weight': 1.413847172062068, 'learning_rate': 0.2659731511889118, 'subsample': 0.6914152513297623, 'log_max_bin': 3.0, 'reg_alpha': 1.0506986096647371e-10, 'reg_lambda': 0.7140772709391757, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.15857997550055, 'min_child_weight': 1.6505251345134182, 'learning_rate': 0.05700175691673463, 'subsample': 1.0, 'reg_alpha': 1.023237426542425e-09, 'reg_lambda': 0.26513328931867564, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.309307350947485, 'max_leaves': 53.49802452027105, 'min_child_weight': 12.827738000308466, 'learning_rate': 0.037047674690367266, 'subsample': 0.6, 'reg_alpha': 1.1399134101145679e-10, 'reg_lambda': 0.4615626930174177, 'colsample_bylevel': 0.7159667298432664, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.3641741540919, 'max_leaves': 6.502103494614952, 'min_child_weight': 0.9755130909965849, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5793908818957724, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.061509217082352, 'max_leaves': 4.0, 'min_child_weight': 0.7291293429425003, 'learning_rate': 0.7106287332779576, 'subsample': 0.6799821142176494, 'log_max_bin': 10.0, 'reg_alpha': 2.534753928248548e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.652892618616887, 'max_leaves': 5.809262514185463, 'min_child_weight': 1.0281379373378654, 'learning_rate': 0.9983422171893961, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.857910389629156e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.8365940519594589}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.6918091369255729, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.7739530866256057, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.2068576489183105, 'max_leaves': 7.623462705303727, 'min_child_weight': 2.624265592177853, 'learning_rate': 0.09183478687710131, 'subsample': 0.6356058100849363, 'reg_alpha': 4.587357282928291e-10, 'reg_lambda': 0.22508913248348586, 'colsample_bylevel': 0.9471623351796904, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.256658213498994, 'max_leaves': 112.0, 'min_child_weight': 8.067973017506647, 'learning_rate': 0.02299545323556626, 'subsample': 1.0, 'reg_alpha': 2.542644909276109e-10, 'reg_lambda': 0.5436763369083242, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.110151504587343, 'max_leaves': 4.0, 'min_child_weight': 1.818316156593502, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.7932083568977246, 'reg_alpha': 1.093162074260451e-10, 'reg_lambda': 0.958266024661973, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.998762959395599, 'max_leaves': 8.568951460862378, 'min_child_weight': 0.3911724682701361, 'learning_rate': 0.435547861149387, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.594715495710323e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.90929240082645, 'max_leaves': 8.328106084756007, 'min_child_weight': 1.0012005265934798, 'learning_rate': 0.36090413877106126, 'subsample': 0.6416397713660543, 'log_max_bin': 3.0, 'reg_alpha': 2.638409709849252e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.728060657555976, 'max_leaves': 4.0, 'min_child_weight': 0.7104223381605835, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.437257682293375, 'reg_alpha': 1e-10, 'reg_lambda': 0.2983961245968123, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.271421567046614, 'max_leaves': 4.0, 'min_child_weight': 0.7296938256510335, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.592275642764321e-10, 'reg_lambda': 0.838932418663054, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.625464754451685, 'max_leaves': 6.043767027639617, 'min_child_weight': 0.9747584453459602, 'learning_rate': 0.37014970040355555, 'subsample': 1.0, 'log_max_bin': 7.089770884553303, 'reg_alpha': 1.094837132671011e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.811276332694321, 'max_leaves': 9.458869891288558, 'min_child_weight': 3.085336787635062, 'learning_rate': 0.05414795359064638, 'subsample': 1.0, 'reg_alpha': 2.437177728119924e-10, 'reg_lambda': 0.3181065356448963, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 102.70234900654641, 'min_child_weight': 6.8622991413170595, 'learning_rate': 0.039000228207984766, 'subsample': 0.9534007874585204, 'reg_alpha': 4.785871997716845e-10, 'reg_lambda': 0.3847001595814508, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.717443105619761, 'max_leaves': 4.965063667136476, 'min_child_weight': 0.7264170848522392, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.23453347357425328, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.51120142198588, 'max_leaves': 4.0, 'min_child_weight': 0.9791554107167348, 'learning_rate': 0.7659971585339811, 'subsample': 1.0, 'log_max_bin': 5.3950488334963005, 'reg_alpha': 2.561785360763355e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.5235712653602516, 'learning_rate': 1.0, 'subsample': 0.8574669550209643, 'log_max_bin': 3.0, 'reg_alpha': 2.575387362732479e-10, 'reg_lambda': 0.9931472810672454, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 38.54369992248927, 'max_leaves': 4.430264314496006, 'min_child_weight': 1.3585069810520316, 'learning_rate': 0.5243391642937347, 'subsample': 1.0, 'log_max_bin': 3.505106559190825, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.84695749006647, 'max_leaves': 4.0, 'min_child_weight': 0.2749145836295105, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.541937585152219, 'reg_alpha': 1e-10, 'reg_lambda': 0.5949729102645255, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.418246731903735, 'max_leaves': 7.544789109760506, 'min_child_weight': 2.5872589575993534, 'learning_rate': 0.8724626677767302, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.7617912306812807e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.863650139382498, 'max_leaves': 4.0, 'min_child_weight': 0.5088339548500493, 'learning_rate': 0.6906736962396673, 'subsample': 0.9569411197237945, 'log_max_bin': 9.924328514315826, 'reg_alpha': 1e-10, 'reg_lambda': 0.5684669383855312, 'colsample_bytree': 0.8145250139652502}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.269802043042217, 'max_leaves': 4.860543321868252, 'min_child_weight': 1.3978532923962526, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 5.643141480026008e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.664650366132587, 'max_leaves': 6.670508110160459, 'min_child_weight': 0.5169338861647973, 'learning_rate': 0.42943991333745724, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.020217361472337, 'max_leaves': 4.0, 'min_child_weight': 1.375950074287439, 'learning_rate': 1.0, 'subsample': 0.8238610447975994, 'log_max_bin': 10.0, 'reg_alpha': 2.5498649519414173e-10, 'reg_lambda': 0.8222016868554737, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.997600166871058, 'max_leaves': 4.0, 'min_child_weight': 2.0246021984482265, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.49010515103887753, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.677465291468727, 'max_leaves': 4.51080969593431, 'min_child_weight': 0.35131603611579126, 'learning_rate': 0.6747075596391855, 'subsample': 0.6, 'log_max_bin': 7.404007483223213, 'reg_alpha': 1.8129427207268967e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.5395354677087845, 'max_leaves': 4.0, 'min_child_weight': 3.0425877367607472, 'learning_rate': 0.7117766658533096, 'subsample': 1.0, 'log_max_bin': 5.0423922511849515, 'reg_alpha': 1.2662107033676175e-10, 'reg_lambda': 0.8521006889969712, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.50370844090818, 'max_leaves': 14.43307743773957, 'min_child_weight': 0.23377311703339662, 'learning_rate': 1.0, 'subsample': 0.9481845939505779, 'log_max_bin': 3.0, 'reg_alpha': 1.3767712549811348e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 2.4924700118570677, 'learning_rate': 0.7640151676644743, 'subsample': 0.6999597063228572, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 25.92032227845592, 'max_leaves': 7.736749004882027, 'min_child_weight': 0.28536961956874124, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 4.587263385054394, 'reg_alpha': 2.1460213424171108e-10, 'reg_lambda': 0.5470771616072028, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.547126643482833, 'max_leaves': 4.0, 'min_child_weight': 2.730957611287086, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.0409128617175516e-10, 'reg_lambda': 0.43902595011502454, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.482834193049163, 'max_leaves': 9.79851289214933, 'min_child_weight': 0.2604490147084074, 'learning_rate': 0.5339641967032176, 'subsample': 0.8361690588635152, 'log_max_bin': 3.038797746688827, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.274503095686102, 'max_leaves': 4.0, 'min_child_weight': 1.7405940820489778, 'learning_rate': 1.0, 'subsample': 0.7998809067483957, 'log_max_bin': 4.229312584478354, 'reg_alpha': 2.2659278364474016e-10, 'reg_lambda': 0.2940272363988361, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.278976918434461, 'max_leaves': 5.6454543253749785, 'min_child_weight': 0.4086393412488536, 'learning_rate': 0.3411457535141823, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.689785101944816, 'min_child_weight': 1.9902188772113356, 'learning_rate': 0.051844921716261524, 'subsample': 1.0, 'reg_alpha': 4.10484552541511e-10, 'reg_lambda': 0.29775818793522607, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.74267742165161, 'max_leaves': 76.55355460934865, 'min_child_weight': 10.638279151551718, 'learning_rate': 0.04073267886463413, 'subsample': 0.6, 'reg_alpha': 2.841524868658427e-10, 'reg_lambda': 0.41098999115723905, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 0.7691457272008709, 'learning_rate': 0.7417967203374343, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 30.292227229043164, 'max_leaves': 4.238514430296803, 'min_child_weight': 0.924760021301386, 'learning_rate': 1.0, 'subsample': 0.6920973519956479, 'log_max_bin': 9.879285738791536, 'reg_alpha': 2.413928440247019e-10, 'reg_lambda': 0.711419866208999, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.656886967600187, 'max_leaves': 9.302496106538465, 'min_child_weight': 2.1976022243737523, 'learning_rate': 0.0395687426341841, 'subsample': 1.0, 'reg_alpha': 1.916060034751556e-10, 'reg_lambda': 0.4972838993309051, 'colsample_bylevel': 0.631014655486776, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 104.42876252319284, 'min_child_weight': 9.63436592556941, 'learning_rate': 0.05336996847623287, 'subsample': 0.6, 'reg_alpha': 6.087502703943568e-10, 'reg_lambda': 0.2460880699961337, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8134608737690932}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.483762869015969, 'max_leaves': 4.0, 'min_child_weight': 2.347422444569767, 'learning_rate': 0.8611122533787704, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.124789343939743, 'min_child_weight': 0.30300264901851065, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.9325046547830427, 'reg_alpha': 5.836631951987888e-10, 'reg_lambda': 0.8046975827892885, 'colsample_bytree': 0.8742955322349188}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.688958479540957, 'max_leaves': 112.0, 'min_child_weight': 2.1384958634923388, 'learning_rate': 0.2537639565852689, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 1.6151409942131097e-10, 'reg_lambda': 0.49085135315813083, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 90.8093824822167, 'min_child_weight': 5.455689135650655, 'learning_rate': 0.04131697218067408, 'subsample': 0.6, 'log_max_bin': 6.858006481481397, 'reg_alpha': 3.791277952298378e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.61503601534345, 'max_leaves': 112.0, 'min_child_weight': 0.8382377449422693, 'learning_rate': 1.0, 'subsample': 0.9859475365218127, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.11970288676206849, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.69298266403916, 'min_child_weight': 4.217234373409533, 'learning_rate': 0.015509986689568113, 'subsample': 0.9662848563985785, 'reg_alpha': 9.765830400687524e-10, 'reg_lambda': 0.37087464779576346, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.054275835363484, 'max_leaves': 46.945777346580435, 'min_child_weight': 5.020471264760312, 'learning_rate': 0.13615630943454932, 'subsample': 1.0, 'reg_alpha': 1.194370592555769e-10, 'reg_lambda': 0.32996495110629664, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 55.76767277034231, 'min_child_weight': 4.136803986152343, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 7.347970963280325, 'reg_alpha': 1.2746736259813574e-10, 'reg_lambda': 0.17186507833471507, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.447237344181934, 'max_leaves': 112.0, 'min_child_weight': 1.1054825351846949, 'learning_rate': 0.04050367733773203, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 2.0465477421165889e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.965423799163533, 'max_leaves': 56.00728511293036, 'min_child_weight': 0.23655673672936708, 'learning_rate': 0.3945756975501882, 'subsample': 0.6, 'log_max_bin': 7.917298019337342, 'reg_alpha': 2.1895289336861227e-10, 'reg_lambda': 0.5281633096957937, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 19.33221019786799, 'learning_rate': 0.16320352738809857, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1.191434555192627e-10, 'reg_lambda': 0.4561752898661958, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.42760300337894586, 'learning_rate': 0.1751216256425859, 'subsample': 1.0, 'log_max_bin': 8.232245798638905, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 31.00267069175723, 'max_leaves': 17.91020302671756, 'min_child_weight': 0.13086692387531154, 'learning_rate': 0.8890391493679525, 'subsample': 0.6, 'log_max_bin': 7.614399455537019, 'reg_alpha': 7.940204038834441e-10, 'reg_lambda': 0.17700539854586617, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.36729512940265, 'max_leaves': 20.201981683163797, 'min_child_weight': 0.5663906021190797, 'learning_rate': 0.257499147130752, 'subsample': 1.0, 'log_max_bin': 3.2963156444146082, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.071059824135292, 'max_leaves': 112.0, 'min_child_weight': 0.09879946715691106, 'learning_rate': 0.6046232883954442, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 6.142309783442642e-10, 'reg_lambda': 0.23496085687910478, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.818513288553014, 'min_child_weight': 2.160498912025883, 'learning_rate': 0.06038383082325025, 'subsample': 0.6, 'reg_alpha': 1.2823713385718916e-10, 'reg_lambda': 0.24194288983313486, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.59198937429187, 'max_leaves': 34.92092286550665, 'min_child_weight': 9.799821638701372, 'learning_rate': 0.034972649436767006, 'subsample': 1.0, 'reg_alpha': 9.095665422043741e-10, 'reg_lambda': 0.5058038081255254, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.870143472157915, 'min_child_weight': 0.11527625147091596, 'learning_rate': 0.261586220627709, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1.8481884918785927e-10, 'reg_lambda': 0.37922091947098596, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 47.97464706285139, 'max_leaves': 112.0, 'min_child_weight': 0.4854346752085836, 'learning_rate': 0.5951765376770226, 'subsample': 0.6, 'log_max_bin': 4.219851372574897, 'reg_alpha': 2.59391126636428e-10, 'reg_lambda': 0.7356041488902032, 'colsample_bytree': 0.7069192881696246}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.8076708325491735, 'max_leaves': 26.996802389376956, 'min_child_weight': 2.2862934540482462, 'learning_rate': 0.019475087962509883, 'subsample': 0.6, 'reg_alpha': 5.505137772920311e-10, 'reg_lambda': 0.315845739050229, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 35.983822927299315, 'min_child_weight': 9.260623981131003, 'learning_rate': 0.10843507105569024, 'subsample': 1.0, 'reg_alpha': 2.1187518139588518e-10, 'reg_lambda': 0.38745381018748737, 'colsample_bylevel': 0.6345669650451347, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 42.966144929026875, 'max_leaves': 43.180649925406875, 'min_child_weight': 0.6927226013501052, 'learning_rate': 0.16899249426080537, 'subsample': 0.7099040893483706, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.7301726083134703, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 72.64401974356142, 'min_child_weight': 0.08078138288397654, 'learning_rate': 0.921283408344408, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 6.929333507266771e-10, 'reg_lambda': 0.38204183303060324, 'colsample_bytree': 0.9021015370218793}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 31.18983489800927, 'max_leaves': 22.082386859425895, 'min_child_weight': 0.46754884769695604, 'learning_rate': 0.19770323913804905, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.1321674490722831e-10, 'reg_lambda': 0.19121803220923214, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 59.18882277186952, 'max_leaves': 84.43691073117158, 'min_child_weight': 1.0263411080680993, 'learning_rate': 0.144451164487735, 'subsample': 1.0, 'log_max_bin': 7.055337655384337, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 42.602114798777734, 'max_leaves': 4.0, 'min_child_weight': 0.2063101728783101, 'learning_rate': 0.036203178445181707, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.1862990485248156e-10, 'reg_lambda': 0.16599421442379161, 'colsample_bytree': 0.9820993382829021}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.83468333813764, 'max_leaves': 112.0, 'min_child_weight': 1.0595789918303808, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 4.831429567084397, 'reg_alpha': 1.0805059098148871e-10, 'reg_lambda': 0.22027476059268153, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.86123752725943, 'max_leaves': 71.7258476633059, 'min_child_weight': 0.20298481858803966, 'learning_rate': 0.06642592877545936, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.14410432856431796, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 82.01554000831531, 'max_leaves': 6.798550666119381, 'min_child_weight': 1.0769373123731327, 'learning_rate': 0.5884233986069142, 'subsample': 1.0, 'log_max_bin': 9.825774540471805, 'reg_alpha': 2.9591307925791346e-10, 'reg_lambda': 0.25373516677988767, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 44.35667351330382, 'min_child_weight': 9.008277829487277, 'learning_rate': 0.08582641353992766, 'subsample': 0.83352197390553, 'reg_alpha': 3.4095453576610184e-10, 'reg_lambda': 0.1386164571075431, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.393839945567068, 'max_leaves': 21.90083430154578, 'min_child_weight': 2.3503386983866035, 'learning_rate': 0.024605275461593717, 'subsample': 1.0, 'reg_alpha': 3.4209900203439243e-10, 'reg_lambda': 0.8828362633128845, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 73.4316011024656, 'max_leaves': 24.9737046231744, 'min_child_weight': 0.10026438233079911, 'learning_rate': 0.07043258695101527, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.16060848792069998, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.247781423254478, 'max_leaves': 19.525809917558107, 'min_child_weight': 2.1802550407334578, 'learning_rate': 0.554950094234941, 'subsample': 1.0, 'log_max_bin': 3.6884902870220824, 'reg_alpha': 1.895152552633388e-10, 'reg_lambda': 0.22766129184918601, 'colsample_bytree': 0.8083725931893364}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 45.35228237798558, 'max_leaves': 5.981532441630595, 'min_child_weight': 0.45076439918003913, 'learning_rate': 0.051758958226825476, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.06579394161168939, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.44998553451603, 'max_leaves': 81.52288968885283, 'min_child_weight': 0.48495827394620833, 'learning_rate': 0.7551653299200088, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.4827022802567594e-10, 'reg_lambda': 0.5557401630954222, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 87.40753335747604, 'min_child_weight': 7.427883047327791, 'learning_rate': 0.0140778528973862, 'subsample': 1.0, 'reg_alpha': 4.3516424103462633e-10, 'reg_lambda': 0.23531653889090096, 'colsample_bylevel': 0.6885597316105806, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.510973300471152, 'max_leaves': 11.114009507734755, 'min_child_weight': 2.850408905681264, 'learning_rate': 0.15000743099273797, 'subsample': 0.8287545600634657, 'reg_alpha': 2.680372039470998e-10, 'reg_lambda': 0.5200468934452188, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.471722622542345, 'max_leaves': 33.485797525311035, 'min_child_weight': 2.5897617906097268, 'learning_rate': 0.015413308334853168, 'subsample': 1.0, 'reg_alpha': 2.766007181674675e-10, 'reg_lambda': 0.09932337421082267, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 29.010751679076453, 'min_child_weight': 8.175463884451403, 'learning_rate': 0.1370103355588711, 'subsample': 0.7341826323679287, 'reg_alpha': 4.2169162537771643e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9181558446660987, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 56.03067059589348, 'max_leaves': 16.90220849515644, 'min_child_weight': 0.8634972073175509, 'learning_rate': 0.07221168509898941, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.22425651492383838, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.362023167296776, 'max_leaves': 28.850183072175625, 'min_child_weight': 0.2531588094671864, 'learning_rate': 0.5412776438064817, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 6.034910543772634e-10, 'reg_lambda': 0.16304692799845238, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 100.12410967940829, 'max_leaves': 16.119535061219125, 'min_child_weight': 0.4656110804553706, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 2.916578016551538e-10, 'reg_lambda': 0.24892376172180322, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.715999513802878, 'max_leaves': 30.250984755913038, 'min_child_weight': 0.4694946794843398, 'learning_rate': 0.03263039537262351, 'subsample': 0.7688184283306992, 'log_max_bin': 4.01340158892319, 'reg_alpha': 1e-10, 'reg_lambda': 0.14688969662460422, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.1855200056314015, 'max_leaves': 24.164726265465713, 'min_child_weight': 17.717713642325563, 'learning_rate': 0.09768136344671181, 'subsample': 0.7539871138688325, 'reg_alpha': 1e-10, 'reg_lambda': 0.2701575512660561, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7564037853354766}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 40.20108260737665, 'min_child_weight': 1.1949907542180476, 'learning_rate': 0.021619093678832805, 'subsample': 1.0, 'reg_alpha': 1.2167894376935935e-09, 'reg_lambda': 0.4529787690664116, 'colsample_bylevel': 0.6240058647499561, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 112.0, 'max_leaves': 12.945108800189468, 'min_child_weight': 0.13293248561571805, 'learning_rate': 0.544507769021565, 'subsample': 0.6, 'log_max_bin': 5.329120023048475, 'reg_alpha': 1e-10, 'reg_lambda': 0.06879034197896614, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.388697248429914, 'max_leaves': 37.669193587790346, 'min_child_weight': 1.644458267444777, 'learning_rate': 0.07178331144092198, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.0278468208735645e-10, 'reg_lambda': 0.5315329854465782, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.821437503663661, 'max_leaves': 11.107839089047303, 'min_child_weight': 0.5924835963374983, 'learning_rate': 0.3169439194538457, 'subsample': 0.6518493546175357, 'log_max_bin': 3.246088097560964, 'reg_alpha': 1.0338800383004174e-09, 'reg_lambda': 0.24563342964777293, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 65.63505063018431, 'max_leaves': 43.89979054433428, 'min_child_weight': 0.3689586114013332, 'learning_rate': 0.12332330222024816, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.14885732733692855, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.055005118468658, 'criterion': 2.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 1.7062680868358753, 'max_features': 0.1}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 50.024926898705026, 'max_leaves': 13.961590911799775, 'min_child_weight': 0.07102056698557557, 'learning_rate': 0.2525370030355027, 'subsample': 0.7624603037276635, 'log_max_bin': 3.0, 'reg_alpha': 4.056953350210873e-10, 'reg_lambda': 0.07457491326363894, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.44642123985312, 'max_leaves': 34.92666505485552, 'min_child_weight': 3.078008727065639, 'learning_rate': 0.15477561820982588, 'subsample': 0.6, 'log_max_bin': 5.741353117096927, 'reg_alpha': 1e-10, 'reg_lambda': 0.49030343103059154, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.029217116264713, 'max_leaves': 37.12747383821883, 'min_child_weight': 4.5275079649461505, 'learning_rate': 0.09901826680089203, 'subsample': 1.0, 'reg_alpha': 2.4709646994750753e-10, 'reg_lambda': 0.6830882110809331, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 26.165210189512752, 'min_child_weight': 4.676414520391428, 'learning_rate': 0.021327201689734614, 'subsample': 0.8022362783817396, 'reg_alpha': 4.720431920757983e-10, 'reg_lambda': 0.17915055924160117, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 112.0, 'max_leaves': 27.73134347168975, 'min_child_weight': 0.9114494115214948, 'learning_rate': 0.7154622811697646, 'subsample': 1.0, 'log_max_bin': 5.770725657350638, 'reg_alpha': 1e-10, 'reg_lambda': 0.27712112330827565, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.511508693404457, 'max_leaves': 17.58413940194267, 'min_child_weight': 0.23983988822576147, 'learning_rate': 0.05463121088895273, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 3.724871451412939e-10, 'reg_lambda': 0.1319435177133573, 'colsample_bytree': 0.7201808727042207}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 40.15614827111613, 'max_leaves': 105.975067727172, 'min_child_weight': 0.42012118597555465, 'learning_rate': 0.07708344528191773, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.08516269323830129, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.225575480923435, 'max_leaves': 4.601382380473975, 'min_child_weight': 0.5203306385873885, 'learning_rate': 0.5070682897310189, 'subsample': 0.7868133915767191, 'log_max_bin': 6.20385446709516, 'reg_alpha': 5.043741390778665e-10, 'reg_lambda': 0.4293468706967384, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 89.46094686209985, 'max_leaves': 38.333870791369435, 'min_child_weight': 0.26666923833163186, 'learning_rate': 0.02373826507030285, 'subsample': 0.6, 'log_max_bin': 4.095351990934587, 'reg_alpha': 1e-10, 'reg_lambda': 0.12616185208836966, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.874083441846585, 'max_leaves': 12.72065145894768, 'min_child_weight': 0.8197493132331086, 'learning_rate': 1.0, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.4196547673164784e-10, 'reg_lambda': 0.28982085501059046, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 26.085170419207277, 'max_leaves': 8.424161812202625, 'min_child_weight': 0.5175668808417462, 'learning_rate': 0.09679015106557691, 'subsample': 1.0, 'log_max_bin': 5.611733744683002, 'reg_alpha': 1.89381628757563e-10, 'reg_lambda': 0.06900772572809752, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 37.29344241695164, 'max_leaves': 57.884905380497045, 'min_child_weight': 0.42236459301110535, 'learning_rate': 0.40382797562940903, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5298585840379787, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.807745975348888, 'max_leaves': 13.03841101288135, 'min_child_weight': 0.2782703545721941, 'learning_rate': 0.37556994911933705, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.36394080069143425, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 82.38708750984398, 'max_leaves': 37.39963473521334, 'min_child_weight': 0.785573890250812, 'learning_rate': 0.10407267902378654, 'subsample': 0.9884795205188032, 'log_max_bin': 3.0, 'reg_alpha': 1.488578471863843e-10, 'reg_lambda': 0.10046781172241213, 'colsample_bytree': 0.9628167617473138}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 53.61573092980635, 'min_child_weight': 3.0241737253411802, 'learning_rate': 0.01741083777328, 'subsample': 1.0, 'reg_alpha': 1.0276660361338227e-09, 'reg_lambda': 0.8750065181786064, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.283991015985593, 'max_leaves': 18.118715159445465, 'min_child_weight': 7.00108720972152, 'learning_rate': 0.12129126550541294, 'subsample': 0.6, 'reg_alpha': 1.1350010832652849e-10, 'reg_lambda': 0.13985682675967764, 'colsample_bylevel': 0.7333267562824854, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.75159181650882, 'max_leaves': 12.76848923267391, 'min_child_weight': 0.5122930412049639, 'learning_rate': 0.23120697770974857, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 8.670582908385582e-10, 'reg_lambda': 0.052522599315778795, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 49.25202029296617, 'max_leaves': 38.19025105660274, 'min_child_weight': 0.4267126574051799, 'learning_rate': 0.16905446000312718, 'subsample': 0.7105557370319359, 'log_max_bin': 7.720357630543009, 'reg_alpha': 1e-10, 'reg_lambda': 0.6961638669506274, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.215646922773667, 'criterion': 1.075041323699294, 'max_features': 0.1}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.8947763542798475, 'criterion': 2.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 54.775667128165665, 'max_leaves': 16.93500731953039, 'min_child_weight': 1.0829285020465154, 'learning_rate': 0.689162946723214, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 3.7109882083986616e-10, 'reg_lambda': 0.9040566112948218, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.75981657491963, 'max_leaves': 28.79430756708215, 'min_child_weight': 0.20186182612207368, 'learning_rate': 0.05671600737027843, 'subsample': 0.8637502547133119, 'log_max_bin': 8.434170923060508, 'reg_alpha': 1e-10, 'reg_lambda': 0.040444741385832254, 'colsample_bytree': 0.9003145642716599}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 45.0238046736648, 'max_leaves': 39.139020846631944, 'min_child_weight': 0.08719995895555266, 'learning_rate': 0.5918393800109576, 'subsample': 0.6, 'log_max_bin': 3.947254600639008, 'reg_alpha': 1e-10, 'reg_lambda': 0.2904494812738575, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.606477018457923, 'max_leaves': 12.458968028866977, 'min_child_weight': 2.506903989417892, 'learning_rate': 0.06604253127757896, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 2.0262185874584414e-10, 'reg_lambda': 0.12588879718981266, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 38.08669465731893, 'min_child_weight': 3.64870708552961, 'learning_rate': 0.0252167827758309, 'subsample': 1.0, 'reg_alpha': 2.0135716379728348e-10, 'reg_lambda': 0.6739336920961041, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.398238791141887, 'max_leaves': 25.506234277432977, 'min_child_weight': 5.8027414895621385, 'learning_rate': 0.08374512188186914, 'subsample': 0.6, 'reg_alpha': 5.792702093386192e-10, 'reg_lambda': 0.1815840882592988, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 36.63860124155063, 'max_leaves': 16.710193157738757, 'min_child_weight': 0.42999784845988814, 'learning_rate': 0.1989281806409442, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 2.474607900455799e-10, 'reg_lambda': 0.14679892969106123, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 26.551390282384745, 'max_leaves': 29.181697949644313, 'min_child_weight': 0.5083791134437349, 'learning_rate': 0.1964858404663439, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.2490776732427184, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 68.37497596746158, 'min_child_weight': 1.8699609445634124, 'learning_rate': 0.061943635263078625, 'subsample': 0.7869288273531072, 'reg_alpha': 6.864480309983839e-10, 'reg_lambda': 0.13619584617282038, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.771017919143595, 'max_leaves': 14.207656281223795, 'min_child_weight': 11.322431118156457, 'learning_rate': 0.03409200215747268, 'subsample': 1.0, 'reg_alpha': 1.6991848058044416e-10, 'reg_lambda': 0.8985269262265922, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.401155233518668, 'max_leaves': 6.817089870688302, 'min_child_weight': 0.17217456454714603, 'learning_rate': 0.0824265652208279, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.07941953214416422, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 112.0, 'max_leaves': 71.53078786683366, 'min_child_weight': 1.2696528407533292, 'learning_rate': 0.4741987084013546, 'subsample': 1.0, 'log_max_bin': 4.064387387158067, 'reg_alpha': 1.7650764251378025e-10, 'reg_lambda': 0.46039475245961514, 'colsample_bytree': 0.8150986551821755}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.905843379942366, 'max_leaves': 12.404060552220352, 'min_child_weight': 1.500243987956664, 'learning_rate': 0.5297596670679308, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 2.8088696912694813e-10, 'reg_lambda': 0.2506191922851, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 89.20041917658804, 'max_leaves': 39.31227257045745, 'min_child_weight': 0.14571091551614063, 'learning_rate': 0.07378170365820726, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.145895992675517, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 64.35544369642732, 'max_leaves': 102.87803275416474, 'min_child_weight': 0.37061442998506483, 'learning_rate': 0.5418944025219281, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.7078342400543537e-10, 'reg_lambda': 0.03708730453072937, 'colsample_bytree': 0.7753528295909111}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.11613851275618, 'max_leaves': 4.739902157485656, 'min_child_weight': 0.5898365182153341, 'learning_rate': 0.07212949715621937, 'subsample': 0.6209827388868568, 'log_max_bin': 7.334386569502863, 'reg_alpha': 1e-10, 'reg_lambda': 0.9858989836178277, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 112.0, 'max_leaves': 19.687948396765705, 'min_child_weight': 0.06369066241559315, 'learning_rate': 0.2249674416649327, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.1725166554764165e-10, 'reg_lambda': 0.2524620967723375, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.158762134252056, 'max_leaves': 24.768035733446588, 'min_child_weight': 3.432244487525253, 'learning_rate': 0.17374323358262783, 'subsample': 0.6, 'log_max_bin': 3.1725818086738635, 'reg_alpha': 1.0932067589419603e-10, 'reg_lambda': 0.14483099169909663, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.282915033387557, 'min_child_weight': 4.449791612039794, 'learning_rate': 0.03909637857129462, 'subsample': 1.0, 'reg_alpha': 1.0840564442658169e-10, 'reg_lambda': 0.9992768594222093, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.580786969091233, 'max_leaves': 40.00541761345161, 'min_child_weight': 4.758088880201853, 'learning_rate': 0.054014786642696676, 'subsample': 0.6, 'reg_alpha': 1.0759606387809283e-09, 'reg_lambda': 0.1224641938543966, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.9274476606699, 'max_leaves': 39.12068880017666, 'min_child_weight': 0.5801591907812658, 'learning_rate': 1.0, 'subsample': 0.6, 'log_max_bin': 8.848742843289498, 'reg_alpha': 2.0444767425765295e-10, 'reg_lambda': 0.2443718475601903, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 48.81738080713013, 'max_leaves': 12.464806330484228, 'min_child_weight': 0.37679645251913224, 'learning_rate': 0.023292450713924034, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.1496258108576313, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.944970923155444, 'max_leaves': 6.026500593353196, 'min_child_weight': 1.1984881911074519, 'learning_rate': 0.08623600248327327, 'subsample': 0.7685938487067319, 'log_max_bin': 3.0, 'reg_alpha': 1.3524177279091774e-10, 'reg_lambda': 0.17181060996062486, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 112.0, 'max_leaves': 80.91458747173589, 'min_child_weight': 0.18239806333073194, 'learning_rate': 0.4532511902236889, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.21281768250721345, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.328486264546505, 'max_leaves': 28.183386661063928, 'min_child_weight': 0.8657854487091271, 'learning_rate': 0.2909359507651216, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.4157195651376896e-10, 'reg_lambda': 0.025023359898069274, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 43.56792437424261, 'max_leaves': 17.302101244029032, 'min_child_weight': 0.25248971937410536, 'learning_rate': 0.13434768258403368, 'subsample': 0.6409103224075613, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 0.7643442466924805}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.463177177867411, 'min_child_weight': 4.578162324457624, 'learning_rate': 0.05447764106256106, 'subsample': 1.0, 'reg_alpha': 1.9651091381507232e-10, 'reg_lambda': 0.17888960491458916, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9651986517386706}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.13514045539297, 'max_leaves': 92.84447164265936, 'min_child_weight': 4.6246730648569425, 'learning_rate': 0.038764206853329916, 'subsample': 0.6, 'reg_alpha': 5.935558700543622e-10, 'reg_lambda': 0.684084662632702, 'colsample_bylevel': 0.6406202918613483, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 103.71438254623425, 'max_leaves': 50.73192249142838, 'min_child_weight': 0.5564760689043066, 'learning_rate': 0.05913811979271543, 'subsample': 1.0, 'log_max_bin': 3.5167650956800003, 'reg_alpha': 1e-10, 'reg_lambda': 0.522076480943656, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.379661499998955, 'max_leaves': 9.611932398022867, 'min_child_weight': 0.39283257124277676, 'learning_rate': 0.6609369878967855, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 5.629864955922499e-10, 'reg_lambda': 0.07003635899453028, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 39.95303214423293, 'max_leaves': 6.582732414494118, 'min_child_weight': 0.3208362656222937, 'learning_rate': 0.5664191585016156, 'subsample': 0.6, 'log_max_bin': 7.658031706314263, 'reg_alpha': 1.6093839250279314e-10, 'reg_lambda': 0.29428049000309725, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.348735221226452, 'max_leaves': 74.07741629230722, 'min_child_weight': 0.6813504220252387, 'learning_rate': 0.06900644192381271, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.1242499488891911, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 86.263882812008, 'min_child_weight': 14.748551360058936, 'learning_rate': 0.02383542130088703, 'subsample': 0.6, 'reg_alpha': 3.5751290092161934e-10, 'reg_lambda': 0.18773785731709158, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.7821014379162685, 'max_leaves': 11.261354405987916, 'min_child_weight': 1.4355649901860876, 'learning_rate': 0.08859849886320185, 'subsample': 1.0, 'reg_alpha': 3.2625453829498326e-10, 'reg_lambda': 0.6518431432814326, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9618220768788042}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.240855498726955, 'min_child_weight': 9.194026014148559, 'learning_rate': 0.14663255658457297, 'subsample': 1.0, 'reg_alpha': 3.6736894343336205e-10, 'reg_lambda': 0.2579852687778576, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.479544358701625, 'max_leaves': 34.39868019672501, 'min_child_weight': 2.302854479188981, 'learning_rate': 0.014401866790152896, 'subsample': 0.6203734947724708, 'reg_alpha': 3.1750154309339614e-10, 'reg_lambda': 0.4743512511633662, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.209829561510713, 'max_leaves': 112.0, 'min_child_weight': 4.225160026070329, 'learning_rate': 0.06270070918722319, 'subsample': 1.0, 'reg_alpha': 4.861927557300169e-10, 'reg_lambda': 0.17210348650166216, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.78382932495254, 'min_child_weight': 5.011053748928372, 'learning_rate': 0.033680361425017256, 'subsample': 0.7990145029581356, 'reg_alpha': 2.3990527429712136e-10, 'reg_lambda': 0.7110584306803812, 'colsample_bylevel': 0.8139810385053072, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 29.052720730430437, 'min_child_weight': 3.1795138223645205, 'learning_rate': 0.10847582913391585, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.73611396004623, 'max_leaves': 9.001936336615648, 'min_child_weight': 0.1561700158955811, 'learning_rate': 0.5242665850353236, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.0713230328511402e-10, 'reg_lambda': 0.28880591184569665, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 54.848869552625565, 'max_leaves': 54.16965763531213, 'min_child_weight': 1.3997688591445987, 'learning_rate': 0.07455476256043109, 'subsample': 1.0, 'log_max_bin': 3.4143476205615615, 'reg_alpha': 1.1964674457969453e-10, 'reg_lambda': 0.126605219430226, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 39.238772769555, 'max_leaves': 112.0, 'min_child_weight': 0.19284984662653293, 'learning_rate': 0.10280686915724624, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.06886445113299287, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.791952762596793, 'max_leaves': 4.0, 'min_child_weight': 1.1335343470927886, 'learning_rate': 0.3801941551774377, 'subsample': 1.0, 'log_max_bin': 3.4547544986042436, 'reg_alpha': 1.3027766630894932e-10, 'reg_lambda': 0.5309609710147389, 'colsample_bytree': 0.7936098988369236}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.192164961726586, 'max_leaves': 27.2684703365842, 'min_child_weight': 3.180487083784045, 'learning_rate': 0.3657951960947479, 'subsample': 0.6, 'log_max_bin': 9.009160127247156, 'reg_alpha': 2.516487378873127e-10, 'reg_lambda': 0.5829615623628734, 'colsample_bytree': 0.8933162580456236}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 60.078797570584136, 'max_leaves': 17.882624268627342, 'min_child_weight': 0.06873221592293517, 'learning_rate': 0.10685370169692561, 'subsample': 0.7601004927354812, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.06272169247963368, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.11664749414975, 'max_leaves': 21.700490033172514, 'min_child_weight': 0.27273453522383156, 'learning_rate': 0.05277007924161252, 'subsample': 0.6, 'log_max_bin': 3.7929659376396128, 'reg_alpha': 3.241955462679783e-10, 'reg_lambda': 0.29337639973462837, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 60.36030764575572, 'max_leaves': 22.471004510217316, 'min_child_weight': 0.801519047829224, 'learning_rate': 0.7406956996732041, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.12463284666062084, 'colsample_bytree': 0.8589355243257443}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.138650617372043, 'max_leaves': 48.435827706572454, 'min_child_weight': 2.3156104185086934, 'learning_rate': 0.0418951090090179, 'subsample': 0.7184476763096893, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.231684672123999, 'max_leaves': 31.168063090006594, 'min_child_weight': 4.601358928453856, 'learning_rate': 0.04595413525495368, 'subsample': 0.9844680677639659, 'reg_alpha': 3.4152628950738626e-10, 'reg_lambda': 0.34982229063696624, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.915642310430883, 'min_child_weight': 3.2349604910306438, 'learning_rate': 0.440760507658756, 'subsample': 1.0, 'reg_alpha': 2.1394380213465572e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.29056764781964, 'max_leaves': 30.626187322949264, 'min_child_weight': 5.891730846331915, 'learning_rate': 0.17897921099012098, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.06150459355174092, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.2107614554997, 'max_leaves': 11.751709728929974, 'min_child_weight': 14.884144354395275, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 3.2218480339283193e-10, 'reg_lambda': 0.11809026438103327, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.777719093317303}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.841203180762058, 'min_child_weight': 1.2805248362188868, 'learning_rate': 0.06569601512724042, 'subsample': 0.8849070538202551, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 53.09050466122669, 'min_child_weight': 6.98935047891701, 'learning_rate': 0.25717587293124766, 'subsample': 0.6592324966736576, 'reg_alpha': 1e-10, 'reg_lambda': 0.45715444865584937, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 25.42378973276496, 'max_leaves': 5.720011907296889, 'min_child_weight': 2.726936725975076, 'learning_rate': 0.3067432687103531, 'subsample': 0.6, 'reg_alpha': 2.0166861326705116e-10, 'reg_lambda': 0.3056125706665654, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8838343401899831}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.76659055889085, 'min_child_weight': 1.3193152648203275, 'learning_rate': 0.6149996754634598, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.22616534154255077, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.998909397056252, 'max_leaves': 9.267925458427593, 'min_child_weight': 14.446521631253864, 'learning_rate': 0.12827156020354094, 'subsample': 0.6, 'reg_alpha': 4.185630692222199e-10, 'reg_lambda': 0.6177433964570785, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.870732112419141, 'min_child_weight': 2.965367223116027, 'learning_rate': 0.48962020157812963, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.25803114456580706, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.294676805838556, 'max_leaves': 51.72750399974928, 'min_child_weight': 6.427371410560887, 'learning_rate': 0.16111869494376077, 'subsample': 1.0, 'reg_alpha': 4.348140051956293e-10, 'reg_lambda': 0.5414545847962123, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.300843150969534, 'max_leaves': 9.404933372482258, 'min_child_weight': 9.600337803063967, 'learning_rate': 0.8680650130254849, 'subsample': 1.0, 'reg_alpha': 1.0553806088088623e-10, 'reg_lambda': 0.6674560346610784, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.28925786068247, 'min_child_weight': 1.9852964450466934, 'learning_rate': 0.09087679691342813, 'subsample': 0.6, 'reg_alpha': 1.8969511782853672e-10, 'reg_lambda': 0.2093203731633256, 'colsample_bylevel': 0.6785570118011615, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.411867173858418, 'max_leaves': 13.941713015243474, 'min_child_weight': 1.696051953768021, 'learning_rate': 0.4526389713162741, 'subsample': 0.8504275656597714, 'reg_alpha': 1e-10, 'reg_lambda': 0.06633097921364214, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.78199468706495, 'min_child_weight': 11.237578229444475, 'learning_rate': 0.17428231525660734, 'subsample': 0.6, 'reg_alpha': 4.054170101772993e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 1.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.392104530464525, 'criterion': 2.0, 'max_features': 0.12579627076777825}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.59342743655078, 'max_leaves': 50.58017709205315, 'min_child_weight': 11.918251926003729, 'learning_rate': 1.0, 'subsample': 0.8269467999343055, 'reg_alpha': 1.1471716204521556e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.003899873144766, 'min_child_weight': 1.599187249103658, 'learning_rate': 0.041727620065020996, 'subsample': 0.6, 'reg_alpha': 1.7451665066735288e-10, 'reg_lambda': 0.12908697038347283, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.134246263045346, 'min_child_weight': 1.719187766984562, 'learning_rate': 0.982222062946251, 'subsample': 0.8726460739967447, 'reg_alpha': 2.1221988924787754e-10, 'reg_lambda': 0.592159620261022, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.97371673079224, 'max_leaves': 33.246127822852415, 'min_child_weight': 11.086349541155984, 'learning_rate': 0.08031479934358404, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.23593663172065985, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 101.73201817087858, 'min_child_weight': 1.9327395979529403, 'learning_rate': 0.5955724552744606, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8264067498241234}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.79469346923014, 'max_leaves': 4.0, 'min_child_weight': 9.86139908959135, 'learning_rate': 0.132455702404866, 'subsample': 0.6, 'reg_alpha': 3.345468301222942e-10, 'reg_lambda': 0.11583002712732667, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.698070319598793, 'max_leaves': 10.50186923657627, 'min_child_weight': 1.2076065129971567, 'learning_rate': 0.13289098825031176, 'subsample': 0.637750607597683, 'reg_alpha': 4.6032246208679705e-10, 'reg_lambda': 0.15405375849764794, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.916596844393794, 'min_child_weight': 15.78288648374916, 'learning_rate': 0.5936216513626857, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.9069051453717283, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.979718996882302, 'max_leaves': 4.6974798531738315, 'min_child_weight': 1.3585402156150443, 'learning_rate': 0.48079835250241404, 'subsample': 1.0, 'reg_alpha': 3.2269740377580185e-10, 'reg_lambda': 0.42827940570592093, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 64.64707211494239, 'min_child_weight': 14.029409135335438, 'learning_rate': 0.1640749546785796, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.3262172880227265, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.625426846680483, 'max_leaves': 17.004521699329146, 'min_child_weight': 18.778738010478925, 'learning_rate': 0.3553355667430423, 'subsample': 0.6, 'reg_alpha': 2.3892916630675685e-10, 'reg_lambda': 0.6437870340909766, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.858680426077388, 'min_child_weight': 1.0149519366548845, 'learning_rate': 0.22200695702779372, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.21701609204143604, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.11615216986876, 'min_child_weight': 1.3325508323376696, 'learning_rate': 0.11150471097529033, 'subsample': 0.6, 'reg_alpha': 5.54134105695291e-10, 'reg_lambda': 0.3302702653035108, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.443651184733955, 'max_leaves': 9.455625855189695, 'min_child_weight': 14.303031486036835, 'learning_rate': 0.7074765470119988, 'subsample': 0.9117468676730851, 'reg_alpha': 1e-10, 'reg_lambda': 0.4230236897559587, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 48.25431742654813, 'min_child_weight': 10.112976915371108, 'learning_rate': 0.08399004289401726, 'subsample': 0.6, 'reg_alpha': 1.4176560924628975e-10, 'reg_lambda': 0.18925725271216476, 'colsample_bylevel': 0.6354903002509983, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.454851231861934, 'max_leaves': 6.293288041818672, 'min_child_weight': 1.8846593511650338, 'learning_rate': 0.9392419050900206, 'subsample': 0.6474786045518749, 'reg_alpha': 1.4121940434378624e-10, 'reg_lambda': 0.7382129046217013, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.230439409887954, 'max_leaves': 60.48512932593515, 'min_child_weight': 12.595432900247728, 'learning_rate': 1.0, 'subsample': 0.7132018156334866, 'reg_alpha': 3.5900268584893357e-10, 'reg_lambda': 0.975880706336314, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.020710416112227, 'min_child_weight': 1.5132085306329894, 'learning_rate': 0.07042921737545842, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.14316518949317364, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8316693880146536}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 36.75033211598214, 'min_child_weight': 10.307373680619456, 'learning_rate': 0.2717697797064272, 'subsample': 0.6, 'reg_alpha': 8.748491088576605e-10, 'reg_lambda': 0.1612876400343664, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.34509788137205, 'max_leaves': 8.263280937658593, 'min_child_weight': 1.8491147310887863, 'learning_rate': 0.29027130235593185, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.866229713669326, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.145492952288708, 'max_leaves': 25.672719396879618, 'min_child_weight': 2.875007612898094, 'learning_rate': 0.4143198105503708, 'subsample': 0.6, 'reg_alpha': 7.116393217958655e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.82883332817201, 'min_child_weight': 6.629379493175573, 'learning_rate': 0.1904011487927118, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.10158484816051329, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.548204604165097, 'max_leaves': 100.89174264162621, 'min_child_weight': 4.428172880993265, 'learning_rate': 0.2461877835229924, 'subsample': 0.6, 'reg_alpha': 3.425286905209355e-10, 'reg_lambda': 0.12721128874425328, 'colsample_bylevel': 0.7684245689271366, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 4.3041491432003705, 'learning_rate': 0.3204341286455498, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.454738322028268, 'max_leaves': 21.45152997219766, 'min_child_weight': 2.428052210218561, 'learning_rate': 0.3297759211055766, 'subsample': 1.0, 'reg_alpha': 1.8738799150964432e-10, 'reg_lambda': 0.33788035443154785, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.156487636089414, 'min_child_weight': 7.849714446607653, 'learning_rate': 0.2392138505197714, 'subsample': 0.6, 'reg_alpha': 1.0683744850941861e-10, 'reg_lambda': 0.41349591479037945, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.795443902795686, 'max_leaves': 14.377206259636905, 'min_child_weight': 0.6585730136413794, 'learning_rate': 0.1423714890405456, 'subsample': 0.6254701388719116, 'reg_alpha': 2.0032456131897708e-10, 'reg_lambda': 0.5990608334209144, 'colsample_bylevel': 0.7621241150164323, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.122206452527237, 'min_child_weight': 20.0, 'learning_rate': 0.5540924550834985, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.23321862897887943, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.312650004189459, 'max_leaves': 8.72020027272511, 'min_child_weight': 20.0, 'learning_rate': 0.8321469177912312, 'subsample': 0.7186485144269256, 'reg_alpha': 1e-10, 'reg_lambda': 0.7159060796276039, 'colsample_bylevel': 0.9289423262144706, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 34.824695457563905, 'min_child_weight': 0.6796490103005801, 'learning_rate': 0.09479932714977678, 'subsample': 0.6, 'reg_alpha': 2.3711728770351597e-10, 'reg_lambda': 0.19515429498523776, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 56.08629190777309, 'min_child_weight': 2.1297300753092974, 'learning_rate': 0.3718870678783337, 'subsample': 0.982644166420819, 'reg_alpha': 7.294055082441001e-10, 'reg_lambda': 0.21372566890942152, 'colsample_bylevel': 0.8082652633986412, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.149648965929025, 'max_leaves': 5.414483798037117, 'min_child_weight': 8.949263915006831, 'learning_rate': 0.2121261391164533, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.6536984862804736, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.633760218381877, 'max_leaves': 28.383755446321974, 'min_child_weight': 7.925457906794856, 'learning_rate': 0.05579613228058826, 'subsample': 0.6, 'reg_alpha': 1.5768730235275495e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.699018295902382, 'min_child_weight': 2.4048473584510095, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1.2696047554551387e-10, 'reg_lambda': 0.07769101394630769, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.777829211783185, 'max_leaves': 52.325594100584524, 'min_child_weight': 1.9770803171195575, 'learning_rate': 0.13678124621000323, 'subsample': 1.0, 'reg_alpha': 6.082958126964694e-10, 'reg_lambda': 0.4885467054641306, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.803628683945038, 'min_child_weight': 9.640233806706659, 'learning_rate': 0.5767381865731245, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.28597500440135143, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.75625838059581}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.394069488876143, 'min_child_weight': 13.699283749433787, 'learning_rate': 0.1389908261662877, 'subsample': 1.0, 'reg_alpha': 5.109693283259628e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9164039946753366, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.766676691515009, 'max_leaves': 26.652314094020063, 'min_child_weight': 1.391278322303386, 'learning_rate': 0.5675696020540916, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.08053119507300786, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9920128360119518}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 30.685908892681155, 'min_child_weight': 1.5509447483625318, 'learning_rate': 0.7209445181304089, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.7473685701879091, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.886018565711352, 'max_leaves': 9.896344276087174, 'min_child_weight': 12.288971951962234, 'learning_rate': 0.10942169045260672, 'subsample': 0.6724638863580796, 'reg_alpha': 5.796204437747807e-10, 'reg_lambda': 0.18693874992661652, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 103.17023983020142, 'min_child_weight': 3.6307900590461615, 'learning_rate': 0.064993767037651, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.23250525762323798, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8393243497926433}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.43295953540955, 'max_leaves': 4.0, 'min_child_weight': 5.249412993236345, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 3.125863634730362e-10, 'reg_lambda': 0.6008988685828618, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.690712937720485, 'max_leaves': 4.728675033128038, 'min_child_weight': 6.962457253199381, 'learning_rate': 0.6136020518406209, 'subsample': 0.9934966052347933, 'reg_alpha': 5.065825684521943e-10, 'reg_lambda': 0.5828876821385552, 'colsample_bylevel': 0.6350637822381152, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 64.22059386595936, 'min_child_weight': 2.7374698067858256, 'learning_rate': 0.128563728983194, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.2396896529581496, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 75.36366603794632, 'min_child_weight': 6.0595828859030085, 'learning_rate': 0.17726790449368027, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.6434089462686158, 'colsample_bylevel': 0.798188819176689, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.3861685776762664, 'max_leaves': 4.029505659580212, 'min_child_weight': 3.1453512346551555, 'learning_rate': 0.44501551548030904, 'subsample': 0.6530133621177957, 'reg_alpha': 1.2184189384825525e-09, 'reg_lambda': 0.21714361768765694, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.893286465088362, 'min_child_weight': 17.72699568525674, 'learning_rate': 0.10032832327888498, 'subsample': 0.8071747896225719, 'reg_alpha': 3.0498929335379804e-10, 'reg_lambda': 0.12824848564245853, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.10588926574277, 'max_leaves': 10.510341881445397, 'min_child_weight': 1.075169016232219, 'learning_rate': 0.786288112052719, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.507257803612273, 'min_child_weight': 12.941779169454723, 'learning_rate': 0.06880332087843684, 'subsample': 0.7363127382458603, 'reg_alpha': 1.8085442257643038e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.279123757223675, 'max_leaves': 18.39665451642513, 'min_child_weight': 1.4727122339295269, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1.10697071207835e-10, 'reg_lambda': 0.12369154637427363, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.326386839903968, 'max_leaves': 59.906035277011405, 'min_child_weight': 6.880963382773883, 'learning_rate': 0.7682335567454784, 'subsample': 0.6, 'reg_alpha': 4.2167863669441993e-10, 'reg_lambda': 0.936849115029578, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.069244149147564, 'min_child_weight': 2.7698907044593115, 'learning_rate': 0.10268617818592005, 'subsample': 0.7897824296435512, 'reg_alpha': 1e-10, 'reg_lambda': 0.14912982678214898, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'criterion': 1.010442589872138, 'max_features': 0.1138297850958609}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.716063769208864, 'criterion': 2.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.238757711765815, 'max_leaves': 38.44536284992909, 'min_child_weight': 10.162072785499698, 'learning_rate': 0.025862760494552484, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4135800661835023, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.898958322022386, 'min_child_weight': 1.8755540246539444, 'learning_rate': 1.0, 'subsample': 0.6496958349640908, 'reg_alpha': 2.5763919335171047e-10, 'reg_lambda': 0.3378116057058255, 'colsample_bylevel': 0.7719044852893494, 'colsample_bytree': 0.811771081182037}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.3150596936403, 'min_child_weight': 4.424575230295752, 'learning_rate': 0.26092715203906763, 'subsample': 0.6, 'reg_alpha': 6.884650114916864e-10, 'reg_lambda': 0.5422009934785142, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.705219100696759, 'max_leaves': 41.51412723133826, 'min_child_weight': 4.307648874668649, 'learning_rate': 0.30233330368223954, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.25767593185147286, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.954696595902223, 'min_child_weight': 6.941538382601287, 'learning_rate': 0.2574327752255418, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.9683176219078592, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.63073083156459, 'max_leaves': 43.665214526475246, 'min_child_weight': 2.7457193868497884, 'learning_rate': 0.30643715753464157, 'subsample': 1.0, 'reg_alpha': 5.748123393055487e-10, 'reg_lambda': 0.14428338706683672, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.179889098987552, 'max_leaves': 39.609718187184335, 'min_child_weight': 15.498100578798942, 'learning_rate': 0.13181119741495384, 'subsample': 1.0, 'reg_alpha': 9.032123991503201e-10, 'reg_lambda': 0.2257631648351787, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.789813599080921}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.666762923975366, 'min_child_weight': 1.2297969299375482, 'learning_rate': 0.5984845706850371, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.6188438505784112, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.22288098444447, 'max_leaves': 36.866928558661755, 'min_child_weight': 16.573999449729257, 'learning_rate': 0.1524811001385414, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.19469866479943013, 'colsample_bylevel': 0.6018164075215756, 'colsample_bytree': 0.916889704172569}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.237147240064008, 'min_child_weight': 1.1499648331399954, 'learning_rate': 0.5173557104762108, 'subsample': 0.6, 'reg_alpha': 3.1496697873548904e-10, 'reg_lambda': 0.717581429689288, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.32458143378456, 'min_child_weight': 2.388044752427238, 'learning_rate': 0.12215215726707779, 'subsample': 0.7164816850918898, 'reg_alpha': 1.4828735718398413e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.060915948065066, 'max_leaves': 11.991444739990529, 'min_child_weight': 7.9812225010850195, 'learning_rate': 0.6458090439114234, 'subsample': 0.6, 'reg_alpha': 1.3500850830698653e-10, 'reg_lambda': 0.09634599104810868, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 34.6232494721217, 'min_child_weight': 3.7859292197851198, 'learning_rate': 0.08315472087570869, 'subsample': 1.0, 'reg_alpha': 2.924475287980492e-10, 'reg_lambda': 0.6007348297615428, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.718642627912933, 'max_leaves': 8.770936392643806, 'min_child_weight': 5.034303444466416, 'learning_rate': 0.9486769610384674, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.2325687463482485, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.168659337188374, 'max_leaves': 49.079750571716026, 'min_child_weight': 5.881046644848468, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1.4706392529791586e-10, 'reg_lambda': 0.20253514989951232, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.187446254089628, 'min_child_weight': 3.2408375009855694, 'learning_rate': 0.07176856633554972, 'subsample': 1.0, 'reg_alpha': 1.3613165059778746e-10, 'reg_lambda': 0.6898167864426921, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 79.97030203099793, 'min_child_weight': 5.540357337564162, 'learning_rate': 0.41564853393860474, 'subsample': 0.6, 'reg_alpha': 2.217398976332491e-10, 'reg_lambda': 0.1817360959996883, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.880425072382021, 'max_leaves': 4.0, 'min_child_weight': 3.4401240480365596, 'learning_rate': 0.1897924844070825, 'subsample': 0.987899447023369, 'reg_alpha': 1e-10, 'reg_lambda': 0.7687638797171595, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.277198070725877, 'min_child_weight': 3.757177897670938, 'learning_rate': 0.3754306858270293, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.48767581660547854, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.88942748808926, 'max_leaves': 15.75323953784445, 'min_child_weight': 5.072827806073598, 'learning_rate': 0.21012392133741195, 'subsample': 1.0, 'reg_alpha': 7.087103468879343e-10, 'reg_lambda': 0.28648569703097515, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.420056752690904, 'min_child_weight': 4.156673530719354, 'learning_rate': 0.16325059346575835, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.47242398154306275, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.669481258604315, 'max_leaves': 26.591664595279884, 'min_child_weight': 4.585281083735205, 'learning_rate': 0.48322622430720774, 'subsample': 1.0, 'reg_alpha': 2.93575552625714e-10, 'reg_lambda': 0.29573466145607885, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.013169281756443, 'min_child_weight': 20.0, 'learning_rate': 0.5580631901504745, 'subsample': 1.0, 'reg_alpha': 4.6482356059291954e-10, 'reg_lambda': 0.16394347666512946, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.426591841696459, 'max_leaves': 18.964285800225298, 'min_child_weight': 0.7105590791170858, 'learning_rate': 0.14135848643788615, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.8521970442943955, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.293316772694148, 'min_child_weight': 18.932386974717108, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 3.013827220656034e-10, 'reg_lambda': 0.3917653804974983, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.227582931915438, 'max_leaves': 32.67706527758666, 'min_child_weight': 1.0067149238562967, 'learning_rate': 0.05322730458889687, 'subsample': 0.845662304586058, 'reg_alpha': 1e-10, 'reg_lambda': 0.35662198142151225, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.086429819691364, 'min_child_weight': 0.8081300031558786, 'learning_rate': 0.9815481817331273, 'subsample': 1.0, 'reg_alpha': 3.6900516486116003e-10, 'reg_lambda': 0.57243967716552, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.722132345375082, 'max_leaves': 25.12556009979565, 'min_child_weight': 20.0, 'learning_rate': 0.08036993941252887, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.2440643998284084, 'colsample_bylevel': 0.8026605450522799, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 36.92981783107449, 'min_child_weight': 0.5711491999131293, 'learning_rate': 0.08919678504588853, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.47518040599575045, 'colsample_bylevel': 0.7838947850971384, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.330015402306471, 'max_leaves': 8.22311987066149, 'min_child_weight': 20.0, 'learning_rate': 0.884414924324737, 'subsample': 0.7055505903061073, 'reg_alpha': 4.569558762353456e-10, 'reg_lambda': 0.2940191651055157, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 45.44528014857677, 'min_child_weight': 4.001948810189581, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1.1788105456644e-10, 'reg_lambda': 0.6498077063245176, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.092685524253252, 'max_leaves': 6.682285109339965, 'min_child_weight': 4.762558797139483, 'learning_rate': 0.05927989281171848, 'subsample': 1.0, 'reg_alpha': 1.6983267555441925e-10, 'reg_lambda': 0.21500536987414165, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.867058676497503, 'min_child_weight': 3.4952034473213245, 'learning_rate': 0.0789105915525964, 'subsample': 1.0, 'reg_alpha': 2.3198407728002895e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.9382000875456615, 'max_leaves': 10.897394028984252, 'min_child_weight': 5.453049242749296, 'learning_rate': 0.9997006275613671, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.05627083139994554, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.793052499565244, 'max_leaves': 23.01331503538076, 'min_child_weight': 0.5176831975079143, 'learning_rate': 0.24201994481865102, 'subsample': 0.6, 'reg_alpha': 1.9059140682974633e-10, 'reg_lambda': 0.9182175688024315, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.195765945051436, 'min_child_weight': 20.0, 'learning_rate': 0.32595234229757575, 'subsample': 0.9975262057894465, 'reg_alpha': 1.0504174992568652e-10, 'reg_lambda': 0.15215581904797085, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7038268514058137}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.69626142520226, 'max_leaves': 37.53441853331056, 'min_child_weight': 2.3888445410150583, 'learning_rate': 0.17822060371059406, 'subsample': 0.6, 'reg_alpha': 1.077389768143402e-10, 'reg_lambda': 0.24607078647714506, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.090662668907823, 'min_child_weight': 7.978550376313557, 'learning_rate': 0.4426366326559582, 'subsample': 0.6758520034591784, 'reg_alpha': 1.858199835022965e-10, 'reg_lambda': 0.5677721774516575, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.572841731136048, 'criterion': 2.0, 'max_features': 0.2513005232742433}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.336775980881099, 'criterion': 1.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 112.0, 'criterion': 1.0, 'max_features': 0.3612506912182688}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 33.08896983212018, 'min_child_weight': 8.94861019320855, 'learning_rate': 0.23815503040111563, 'subsample': 0.6, 'reg_alpha': 1.576472692009614e-10, 'reg_lambda': 0.7422653121696361, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.737507425850912, 'max_leaves': 9.177629898040239, 'min_child_weight': 2.1298856582372183, 'learning_rate': 0.3312420811078521, 'subsample': 1.0, 'reg_alpha': 1.2699271605316782e-10, 'reg_lambda': 0.18822400017184282, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.454171602053245, 'max_leaves': 28.393225735380355, 'min_child_weight': 1.3184650663216524, 'learning_rate': 0.1957955076179316, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.695449740612206, 'min_child_weight': 14.455837320623043, 'learning_rate': 0.4029048922322904, 'subsample': 0.6, 'reg_alpha': 6.051815645828821e-10, 'reg_lambda': 0.10744440747709993, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.49574565393311, 'min_child_weight': 10.475776400943428, 'learning_rate': 0.5501808411962107, 'subsample': 0.6, 'reg_alpha': 1.8876035718052167e-10, 'reg_lambda': 0.8872239761368317, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.91453859328232, 'max_leaves': 17.357266436846583, 'min_child_weight': 1.819389397233967, 'learning_rate': 0.14338370584633992, 'subsample': 1.0, 'reg_alpha': 1.0606069618234904e-10, 'reg_lambda': 0.15747111214657197, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.414559792698893, 'max_leaves': 10.100101041784939, 'min_child_weight': 0.9527576851365198, 'learning_rate': 0.3491171734855205, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.3457686306167809, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 30.06685948687798, 'min_child_weight': 20.0, 'learning_rate': 0.22596129290569295, 'subsample': 0.6, 'reg_alpha': 5.198243811002832e-10, 'reg_lambda': 0.40406252584611996, 'colsample_bylevel': 0.9091520472850987, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.571689728569453, 'max_leaves': 7.421417429916945, 'min_child_weight': 3.923505438661733, 'learning_rate': 0.7866760739882684, 'subsample': 1.0, 'reg_alpha': 1.4693457722526742e-10, 'reg_lambda': 0.22084798753990642, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 40.91918042535119, 'min_child_weight': 4.85777751799709, 'learning_rate': 0.1002788447555426, 'subsample': 0.6, 'reg_alpha': 1.3625148873911398e-10, 'reg_lambda': 0.6326167958407366, 'colsample_bylevel': 0.8974045606757167, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.689638577872415, 'min_child_weight': 1.7731251323772885, 'learning_rate': 0.05498311803922751, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.23727728273005752, 'colsample_bylevel': 0.7368056230358578, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.058056709147351, 'max_leaves': 22.18307788764238, 'min_child_weight': 10.749109672883911, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 4.313401654328551e-10, 'reg_lambda': 0.5888138326512968, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.3233320099986594, 'learning_rate': 0.29316531416210184, 'subsample': 0.7289926435765944, 'reg_alpha': 2.827277468922565e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7199295139530857, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.003991777829327, 'max_leaves': 4.0, 'min_child_weight': 8.203526844052426, 'learning_rate': 0.2690869761378041, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.12960466555557346, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 6.402282972327454, 'learning_rate': 0.30109565608583266, 'subsample': 0.6, 'reg_alpha': 2.8393268101141123e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.266551553533876, 'max_leaves': 4.0, 'min_child_weight': 2.976987520553388, 'learning_rate': 0.2619996878131022, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.12229352261060276, 'colsample_bylevel': 0.6402760088255346, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 35.549909511677185, 'min_child_weight': 2.2639482989394515, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1.924185411467343e-10, 'reg_lambda': 0.17974545354815313, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.845785254893342, 'max_leaves': 8.542309192850901, 'min_child_weight': 8.418706611188393, 'learning_rate': 0.041360794775943906, 'subsample': 0.6, 'reg_alpha': 1.0404431285511165e-10, 'reg_lambda': 0.7772777752508891, 'colsample_bylevel': 0.9945891947853047, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 10.816912403723666, 'learning_rate': 0.5723476000800611, 'subsample': 0.6, 'reg_alpha': 1.9879498705591295e-10, 'reg_lambda': 0.29315101002447685, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.047643785825368, 'max_leaves': 112.0, 'min_child_weight': 1.7620108031113515, 'learning_rate': 0.13783052097245532, 'subsample': 1.0, 'reg_alpha': 1.0070704091026284e-10, 'reg_lambda': 0.47658763390822073, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.228975583127939, 'min_child_weight': 20.0, 'learning_rate': 0.13619135577877609, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.6318708567852003, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.072808715612717, 'max_leaves': 36.90353869189458, 'min_child_weight': 0.7825790080275922, 'learning_rate': 0.5792362330580675, 'subsample': 0.6842141479622346, 'reg_alpha': 7.323175815101996e-10, 'reg_lambda': 0.22110870400985214, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8711763166058624}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.37917127081401, 'max_leaves': 45.51090879323294, 'min_child_weight': 0.7566027626992314, 'learning_rate': 0.3869815456418609, 'subsample': 0.6, 'reg_alpha': 2.0870547456476856e-10, 'reg_lambda': 0.8397130186429359, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.672648973157219, 'min_child_weight': 20.0, 'learning_rate': 0.20385201512781365, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.16638082671525084, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.73129212492481, 'min_child_weight': 6.4605769247680565, 'learning_rate': 0.4450069875117266, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.08293766320504212, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.438069391362322, 'max_leaves': 12.279112522412975, 'min_child_weight': 2.950126085272878, 'learning_rate': 0.17727130159791152, 'subsample': 0.6, 'reg_alpha': 6.383947554290683e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7594945201569534}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 110.24822197048147, 'min_child_weight': 2.0497212699379572, 'learning_rate': 0.7988061100968893, 'subsample': 0.6, 'reg_alpha': 1.5976619817869712e-10, 'reg_lambda': 0.09998658927817468, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7242477760244022}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.707895694550811, 'max_leaves': 4.0, 'min_child_weight': 9.298589418573574, 'learning_rate': 0.09875608974348096, 'subsample': 1.0, 'reg_alpha': 1.2530845148986233e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7554290530774175, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.460875313707924, 'max_leaves': 12.33976896801523, 'min_child_weight': 20.0, 'learning_rate': 0.2695797430387217, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.6356342356499849, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.60972483469942, 'min_child_weight': 0.8684746690475328, 'learning_rate': 0.29262943501299443, 'subsample': 1.0, 'reg_alpha': 2.5982494296113973e-10, 'reg_lambda': 0.21979959292548823, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.342793799225665, 'max_leaves': 5.480971052871526, 'min_child_weight': 2.477661590066109, 'learning_rate': 0.5939256874677259, 'subsample': 1.0, 'reg_alpha': 5.491995026760575e-10, 'reg_lambda': 0.2991988710106717, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 55.40593371087374, 'min_child_weight': 7.692542269730117, 'learning_rate': 0.13282296011259165, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4669541224317899, 'colsample_bylevel': 0.649516022739234, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.707989407956106, 'max_leaves': 34.74221040824451, 'min_child_weight': 5.783742220168035, 'learning_rate': 0.7841305591377201, 'subsample': 0.9317238753280417, 'reg_alpha': 4.593224773813903e-10, 'reg_lambda': 0.16038341459548455, 'colsample_bylevel': 0.9436166289456834, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.740903795647764, 'min_child_weight': 3.295360648199245, 'learning_rate': 0.10060437892271212, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.871113429014773, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.038095214124005, 'max_leaves': 11.50168286029403, 'min_child_weight': 20.0, 'learning_rate': 0.13824839469852654, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.41789152238950544, 'colsample_bylevel': 0.8630620268682987, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 26.402946639658467, 'min_child_weight': 0.9323903275723311, 'learning_rate': 0.570617605133104, 'subsample': 1.0, 'reg_alpha': 7.705766033570016e-10, 'reg_lambda': 0.33432634729342176, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.0979970815366, 'min_child_weight': 1.848162929850589, 'learning_rate': 0.13363086347240588, 'subsample': 1.0, 'reg_alpha': 1.5237110467535337e-10, 'reg_lambda': 0.5526117212149628, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.824618464430397, 'max_leaves': 42.78366352341135, 'min_child_weight': 10.312681963170373, 'learning_rate': 0.5903349409446801, 'subsample': 0.6, 'reg_alpha': 1.3139010140308656e-10, 'reg_lambda': 0.252821539757068, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.049211311117505, 'min_child_weight': 1.4664690136503642, 'learning_rate': 0.37090061821888287, 'subsample': 0.6, 'reg_alpha': 2.1224339775720827e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.0744272701632, 'max_leaves': 21.615328583342546, 'min_child_weight': 12.996876397836015, 'learning_rate': 0.21269031115449655, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.08687745394867537, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.58582896108626, 'min_child_weight': 1.9707126119084024, 'learning_rate': 0.5980574145433262, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.22156891977321103, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.085689275645109, 'max_leaves': 16.33923993718217, 'min_child_weight': 9.671383029925092, 'learning_rate': 0.13190534215950997, 'subsample': 0.6, 'reg_alpha': 3.8254841661388615e-10, 'reg_lambda': 0.6305584122013783, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 7.874947707771302, 'learning_rate': 0.2996187295309178, 'subsample': 0.6, 'reg_alpha': 1.6719580931991684e-10, 'reg_lambda': 0.22924917586474586, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.564035862467648, 'max_leaves': 83.32768432487467, 'min_child_weight': 2.420272136265948, 'learning_rate': 0.2632911768228726, 'subsample': 1.0, 'reg_alpha': 1.197401715726505e-10, 'reg_lambda': 0.6094335812478512, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.545315917517821, 'max_leaves': 71.30011065045329, 'min_child_weight': 4.148716323392677, 'learning_rate': 0.03274754917839315, 'subsample': 0.9322564081505722, 'reg_alpha': 1e-10, 'reg_lambda': 0.23659271014844183, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9090265928355346}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.259156347111321, 'min_child_weight': 4.594075619054152, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 2.1898765396941496e-10, 'reg_lambda': 0.5905175445080831, 'colsample_bylevel': 0.680942331325982, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.783985368171804, 'max_leaves': 11.90439784349683, 'min_child_weight': 11.136263784193329, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 2.996813334298003e-10, 'reg_lambda': 0.3701514156519355, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.509758899103996, 'min_child_weight': 1.7114821344949744, 'learning_rate': 0.0468234052813915, 'subsample': 0.7442516092418091, 'reg_alpha': 1e-10, 'reg_lambda': 0.3774459324957602, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.893254620110548, 'min_child_weight': 6.011106888727904, 'learning_rate': 0.25949339859880644, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.17778164953019635, 'colsample_bylevel': 0.6864393521266289, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.475605964246814, 'max_leaves': 25.53365992123987, 'min_child_weight': 3.1707166191655816, 'learning_rate': 0.30400375625097764, 'subsample': 0.6, 'reg_alpha': 5.837561347392613e-10, 'reg_lambda': 0.7858637076130869, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 44.933273738372165, 'min_child_weight': 4.125838884353471, 'learning_rate': 0.12907130540309236, 'subsample': 0.6, 'reg_alpha': 4.4623319737283447e-10, 'reg_lambda': 0.5279601235208918, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8827791462714109}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.8623649069081925, 'max_leaves': 6.758428522141758, 'min_child_weight': 4.619549392476326, 'learning_rate': 0.6111890450786385, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.2646263231276822, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 91.2494800445598, 'max_leaves': 13.574439560656463, 'min_child_weight': 1.129213013436149, 'learning_rate': 0.22497856983555126, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 1.2741102534492679e-10, 'reg_lambda': 0.8826147914370274, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.660946237611734, 'max_leaves': 35.9227949876233, 'min_child_weight': 0.19358785488802924, 'learning_rate': 0.17373463967811267, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1.0060378442672027e-10, 'reg_lambda': 0.041427286509031644, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.93925515406696, 'max_leaves': 12.33746983366174, 'min_child_weight': 8.099929960279066, 'learning_rate': 0.16241144092738097, 'subsample': 0.6, 'reg_alpha': 2.7667998031246606e-10, 'reg_lambda': 0.0772209258915105, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.614310950374698, 'min_child_weight': 2.3530470763494877, 'learning_rate': 0.48572297275314535, 'subsample': 0.6261294235757908, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6007394522049286, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.938732932315355, 'min_child_weight': 5.461771736960606, 'learning_rate': 0.09118999647292342, 'subsample': 0.8393501864853843, 'reg_alpha': 1.989641139496943e-10, 'reg_lambda': 0.8751218063013951, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.233317066443863, 'max_leaves': 21.78665164913048, 'min_child_weight': 3.4896215787803344, 'learning_rate': 0.8650835721853858, 'subsample': 0.6, 'reg_alpha': 1.0062143618148562e-10, 'reg_lambda': 0.15964880001773507, 'colsample_bylevel': 0.6850000567360204, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.099199636037036, 'min_child_weight': 7.032133321724465, 'learning_rate': 1.0, 'subsample': 0.9223358888105891, 'reg_alpha': 1.9381578597810713e-10, 'reg_lambda': 0.4361913939900459, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.841714033928348, 'max_leaves': 59.55411446935003, 'min_child_weight': 2.7103462974442563, 'learning_rate': 0.0673361140774241, 'subsample': 0.6, 'reg_alpha': 1.0329424300070379e-10, 'reg_lambda': 0.32030009800825826, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.6663854248686, 'max_leaves': 6.318219870574882, 'min_child_weight': 9.69037376256013, 'learning_rate': 0.04621093928153702, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.612741885960594, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 48.06390487309625, 'min_child_weight': 1.9668505032601433, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 2.834908956140806e-10, 'reg_lambda': 0.12524338171077995, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9456614932944427}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.336938806365406, 'min_child_weight': 1.2855041197125259, 'learning_rate': 0.10628385800191248, 'subsample': 0.8497044729068415, 'reg_alpha': 4.290864849185155e-10, 'reg_lambda': 0.12730018124724932, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.952436550760396, 'max_leaves': 24.615370440998767, 'min_child_weight': 14.826491972606446, 'learning_rate': 0.742229058856236, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.099166802850114, 'max_leaves': 4.0, 'min_child_weight': 2.1015258749964616, 'learning_rate': 0.11986389899152539, 'subsample': 0.7326364009902945, 'reg_alpha': 1e-10, 'reg_lambda': 0.4596608376880295, 'colsample_bylevel': 0.6792517646048586, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 78.74675784886117, 'min_child_weight': 9.06937037437256, 'learning_rate': 0.6581378426706008, 'subsample': 0.6, 'reg_alpha': 2.0125237930000725e-10, 'reg_lambda': 0.3039461594076299, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 41.37837504853377, 'criterion': 2.0, 'max_features': 0.11853862068705828}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 112.0, 'criterion': 1.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.23377621111773, 'max_leaves': 8.134514544881428, 'min_child_weight': 7.63393315842659, 'learning_rate': 0.5131328610868947, 'subsample': 1.0, 'reg_alpha': 1.4493705457027334e-10, 'reg_lambda': 0.6546117677510895, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 37.332076444279586, 'min_child_weight': 2.4966837036857923, 'learning_rate': 0.15373595004084228, 'subsample': 0.6, 'reg_alpha': 1.38129306915701e-10, 'reg_lambda': 0.21342748958722488, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 45.89976352198455, 'min_child_weight': 1.8532430722453692, 'learning_rate': 0.05602137070832297, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7112418165831091, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.059793567749502, 'max_leaves': 6.616119463908897, 'min_child_weight': 10.28441265860391, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 2.2884409356070964e-10, 'reg_lambda': 0.12820084100121007, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.08269984189321, 'max_leaves': 4.0, 'min_child_weight': 5.677355894184658, 'learning_rate': 0.4522520046829828, 'subsample': 0.8856458665551471, 'reg_alpha': 1.2532454843834968e-10, 'reg_lambda': 0.08797676046176144, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.357111455914368, 'learning_rate': 0.17443143884274676, 'subsample': 0.6, 'reg_alpha': 1.5974567747230599e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9804427575554565, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.014677283899447, 'max_leaves': 4.0, 'min_child_weight': 1.6997098636353403, 'learning_rate': 0.5202132898427186, 'subsample': 0.6, 'reg_alpha': 3.9058150943386737e-10, 'reg_lambda': 0.5213502608446032, 'colsample_bylevel': 0.6553063676594525, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 96.66330052597552, 'min_child_weight': 11.213394073566047, 'learning_rate': 0.15164350745483648, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.26798134908196386, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.214632612540467, 'max_leaves': 46.23227861268743, 'min_child_weight': 5.050256351157575, 'learning_rate': 0.19815390518191442, 'subsample': 0.6589684475219398, 'reg_alpha': 2.979385608205574e-10, 'reg_lambda': 0.25506057985298397, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.568534537756481, 'min_child_weight': 3.773970108923604, 'learning_rate': 0.39810957964188215, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.5477606391622732, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.300924314669594, 'min_child_weight': 0.8046625917372351, 'learning_rate': 0.3963640318048086, 'subsample': 0.6, 'reg_alpha': 5.354544274478395e-10, 'reg_lambda': 0.08578375665970302, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.2908208675870005, 'max_leaves': 12.496574817250798, 'min_child_weight': 20.0, 'learning_rate': 0.19902655530362956, 'subsample': 0.6265313859496088, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6083917780479157, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.049220808900916, 'max_leaves': 7.032811152665551, 'min_child_weight': 2.9892134094040483, 'learning_rate': 0.44693948700501274, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.25664847296762533, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 43.180218014459065, 'min_child_weight': 6.376097622106588, 'learning_rate': 0.17650480700418525, 'subsample': 0.8592695134916684, 'reg_alpha': 8.796677098571376e-10, 'reg_lambda': 0.5443716248527782, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8815859739111658}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.250732717319256, 'max_leaves': 30.74013911981043, 'min_child_weight': 5.8231107901619374, 'learning_rate': 0.11532458544589998, 'subsample': 1.0, 'reg_alpha': 1.6537699400689037e-10, 'reg_lambda': 0.37755140165805406, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.878885636887462, 'min_child_weight': 3.2730815535694533, 'learning_rate': 0.6840429349158691, 'subsample': 0.6, 'reg_alpha': 1.210570733518162e-10, 'reg_lambda': 0.37004801367922596, 'colsample_bylevel': 0.6794336843942691, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.377483684996456, 'min_child_weight': 5.001095843858733, 'learning_rate': 0.07681054977626235, 'subsample': 1.0, 'reg_alpha': 2.404074093832466e-10, 'reg_lambda': 0.2272475440045853, 'colsample_bylevel': 0.6811510848908661, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.175848574952228, 'max_leaves': 15.671710721746026, 'min_child_weight': 3.8110680352337307, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.6148015674156262, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.6775148309053165, 'max_leaves': 27.513317772262177, 'min_child_weight': 0.40851936517484944, 'learning_rate': 0.4600374070878257, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.20224425323638207, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.037502686527104, 'min_child_weight': 20.0, 'learning_rate': 0.1714794638021882, 'subsample': 1.0, 'reg_alpha': 3.149583911934996e-10, 'reg_lambda': 0.690808979783844, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7054671428440659}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 40.14102366644095, 'min_child_weight': 8.85490641930691, 'learning_rate': 0.21071540107961545, 'subsample': 1.0, 'reg_alpha': 1.0941657234046848e-10, 'reg_lambda': 0.9873437815777361, 'colsample_bylevel': 0.9629727270656947, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.089545422893843, 'max_leaves': 7.5652858619174035, 'min_child_weight': 2.152424385887762, 'learning_rate': 0.37437684902093676, 'subsample': 0.6, 'reg_alpha': 1.8297095646442986e-10, 'reg_lambda': 0.14150303962224392, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7538975339285027}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 99.0957860045266, 'min_child_weight': 2.394667276209381, 'learning_rate': 0.2187672496752683, 'subsample': 1.0, 'reg_alpha': 2.7929901014257837e-10, 'reg_lambda': 0.8733168888884663, 'colsample_bylevel': 0.725336389122063, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.926764711955439, 'max_leaves': 4.0, 'min_child_weight': 7.959150192188865, 'learning_rate': 0.36059770378549266, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.15997875229825487, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.08111965734987, 'max_leaves': 26.503892991433876, 'min_child_weight': 12.273495096970676, 'learning_rate': 0.5454122131869152, 'subsample': 1.0, 'reg_alpha': 8.023622412916254e-10, 'reg_lambda': 0.38844637168643686, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.457875977871147, 'min_child_weight': 1.5529004868690188, 'learning_rate': 0.14463733299154125, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.35966907256415176, 'colsample_bylevel': 0.9068190787399576, 'colsample_bytree': 0.8081085168610395}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.458641128532534, 'min_child_weight': 10.658706758587623, 'learning_rate': 1.0, 'subsample': 0.718511468172843, 'reg_alpha': 1e-10, 'reg_lambda': 0.3917126558420797, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.828202403434485, 'max_leaves': 14.843523424588268, 'min_child_weight': 1.788164075000393, 'learning_rate': 0.06792125087623567, 'subsample': 0.6, 'reg_alpha': 5.902502537925708e-10, 'reg_lambda': 0.35666998286033413, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 45.508997818484374, 'min_child_weight': 4.122273107347744, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 2.1628893261287814e-10, 'reg_lambda': 0.06316895183554579, 'colsample_bylevel': 0.7436148764164948, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.065624451490823, 'max_leaves': 6.672929165301741, 'min_child_weight': 4.623545314767635, 'learning_rate': 0.05600692528192839, 'subsample': 0.9492962670321023, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.04443632897416, 'max_leaves': 6.436385494589273, 'min_child_weight': 1.18302517679644, 'learning_rate': 0.24347788875199242, 'subsample': 0.6, 'reg_alpha': 1.3148669238250561e-10, 'reg_lambda': 0.07150406365849377, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 47.18149947387456, 'min_child_weight': 16.110829156892745, 'learning_rate': 0.3240005419002295, 'subsample': 1.0, 'reg_alpha': 1.522591718708309e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9797445202053281, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.907730727127105, 'max_leaves': 87.01672790980379, 'min_child_weight': 9.908725834041167, 'learning_rate': 0.34898484830148624, 'subsample': 0.6, 'reg_alpha': 9.798653496924369e-10, 'reg_lambda': 0.27262994031083543, 'colsample_bylevel': 0.8325973047527231, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.9235083128641837, 'learning_rate': 0.22604697103703278, 'subsample': 0.82831094308519, 'reg_alpha': 1e-10, 'reg_lambda': 0.5124607593945094, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8274896889515715}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.985342763215386, 'min_child_weight': 12.881331613901672, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 2.5218397986733284e-10, 'reg_lambda': 0.9307847160185242, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.563223712163494, 'max_leaves': 38.02946571379714, 'min_child_weight': 1.479623154107844, 'learning_rate': 0.06646266781769887, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.15010146153129358, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.7878466918550835, 'min_child_weight': 3.3932489811648208, 'learning_rate': 0.04359502460673996, 'subsample': 0.6, 'reg_alpha': 3.113597076464648e-10, 'reg_lambda': 0.27535657283749365, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.95014771295825, 'max_leaves': 44.73853529883185, 'min_child_weight': 5.616893018303538, 'learning_rate': 1.0, 'subsample': 0.6499719540383541, 'reg_alpha': 1e-10, 'reg_lambda': 0.5073862766581716, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.448131576449854, 'max_leaves': 43.990049597898135, 'min_child_weight': 20.0, 'learning_rate': 0.23814220518043205, 'subsample': 1.0, 'reg_alpha': 5.831615234920263e-10, 'reg_lambda': 0.42367413350706395, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.903341132880366, 'min_child_weight': 0.9336475318738037, 'learning_rate': 0.33125992025058904, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.3297632194084397, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 22.910608729478025, 'min_child_weight': 6.810332470006778, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.39231151375064877, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.506388491604177, 'max_leaves': 13.254921438900432, 'min_child_weight': 2.7986176292581653, 'learning_rate': 0.06670416611599217, 'subsample': 0.6, 'reg_alpha': 2.0194556348854522e-10, 'reg_lambda': 0.35612553123834867, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.452602296872968, 'min_child_weight': 1.2035458482973203, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 3.9471203332056946e-10, 'reg_lambda': 0.17316269272291482, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.222006258354908, 'max_leaves': 12.419059335269704, 'min_child_weight': 15.836136644594093, 'learning_rate': 0.05970168658110941, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.8068259048669912, 'colsample_bylevel': 0.81409868608762, 'colsample_bytree': 0.8627050278396826}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.95267969261233, 'min_child_weight': 1.5386442989731273, 'learning_rate': 0.12795762043315725, 'subsample': 0.6, 'reg_alpha': 2.409190642817941e-10, 'reg_lambda': 0.8660095906922674, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 32.796555998460626, 'max_leaves': 14.493531294409614, 'min_child_weight': 12.387214201742646, 'learning_rate': 0.6165085567340511, 'subsample': 0.6608473649805396, 'reg_alpha': 1e-10, 'reg_lambda': 0.16132863624949922, 'colsample_bylevel': 0.9953961850631998, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.994427322039588, 'max_leaves': 9.035392617570043, 'min_child_weight': 0.46663560794727993, 'learning_rate': 0.14216509894321336, 'subsample': 0.6, 'reg_alpha': 2.50001387799543e-10, 'reg_lambda': 0.6155580185099654, 'colsample_bylevel': 0.6302357627660913, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 33.60986419517519, 'min_child_weight': 20.0, 'learning_rate': 0.5548968662687039, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.22696828250822093, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9597522759577586}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.5738305122167615, 'max_leaves': 19.303440957930153, 'min_child_weight': 1.256637993708413, 'learning_rate': 0.11633599384066867, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.731823123579524, 'min_child_weight': 15.167070076740654, 'learning_rate': 0.6780959640436928, 'subsample': 1.0, 'reg_alpha': 3.454059447676414e-10, 'reg_lambda': 0.1394399114879591, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.723117043551473, 'max_leaves': 12.538850315034173, 'min_child_weight': 4.46791523417971, 'learning_rate': 0.2071571558873389, 'subsample': 0.6, 'reg_alpha': 1.8891824312249933e-10, 'reg_lambda': 0.12755220636471312, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9625832344451933}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.218992267776347, 'min_child_weight': 4.265863498453216, 'learning_rate': 0.3808073515899759, 'subsample': 1.0, 'reg_alpha': 1.0597205734765113e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.349254966807983, 'max_leaves': 10.555789650947155, 'min_child_weight': 20.0, 'learning_rate': 0.14659184763817126, 'subsample': 0.6, 'reg_alpha': 1.3330676043242924e-10, 'reg_lambda': 0.4580875438265741, 'colsample_bylevel': 0.9596541899486055, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.76888692068329, 'min_child_weight': 0.7389982125283167, 'learning_rate': 0.5381402115285696, 'subsample': 1.0, 'reg_alpha': 1.501803421615875e-10, 'reg_lambda': 0.3049900573115424, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8615629677627117}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.9842666539688185, 'min_child_weight': 3.1899946361450833, 'learning_rate': 0.29229850824604897, 'subsample': 0.6, 'reg_alpha': 4.5469828795212127e-10, 'reg_lambda': 0.6663409635845997, 'colsample_bylevel': 0.8571415872751881, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.987537664625531, 'max_leaves': 43.48034430415856, 'min_child_weight': 5.974780112703437, 'learning_rate': 0.2698849486770709, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.20967065493585318, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.041200425021102, 'max_leaves': 39.14837841936817, 'min_child_weight': 7.654215553577347, 'learning_rate': 0.6170716654275558, 'subsample': 0.9441736438194203, 'reg_alpha': 4.883574198959309e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.757111050003966, 'min_child_weight': 2.4900679081035864, 'learning_rate': 0.1278408527179906, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.10868834863896318, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.484233934164061, 'min_child_weight': 3.0009167689324983, 'learning_rate': 0.06824401473607009, 'subsample': 0.6, 'reg_alpha': 1.498099423370639e-10, 'reg_lambda': 0.8831274200967403, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.884999610820274, 'max_leaves': 67.72133730869429, 'min_child_weight': 6.351231300043762, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1.336363567189086e-10, 'reg_lambda': 0.15820157212428765, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.651916981843645, 'min_child_weight': 0.9340397452429526, 'learning_rate': 0.09863578487441792, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7999940626772277, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.377340997100303, 'max_leaves': 12.318649257592398, 'min_child_weight': 20.0, 'learning_rate': 0.7997804042093588, 'subsample': 0.9734112647223756, 'reg_alpha': 2.7085018836584614e-10, 'reg_lambda': 0.12036294665947694, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.275913751787522, 'max_leaves': 7.607785889056253, 'min_child_weight': 7.960174966597984, 'learning_rate': 0.5615843982783381, 'subsample': 0.6, 'reg_alpha': 2.5372413703357204e-10, 'reg_lambda': 0.13665065493076203, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 39.91678042141759, 'min_child_weight': 2.3943589923144524, 'learning_rate': 0.1404721501135268, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.087942758768538, 'min_child_weight': 1.932624745704438, 'learning_rate': 0.7942108389328962, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8977951152153226, 'colsample_bytree': 0.8022203515741656}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.665511864987034, 'max_leaves': 12.607067439002115, 'min_child_weight': 9.861985133965115, 'learning_rate': 0.09932748840643131, 'subsample': 1.0, 'reg_alpha': 4.1912918656741174e-10, 'reg_lambda': 0.12584597084395788, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.991476166692459, 'max_leaves': 13.12612779644912, 'min_child_weight': 2.36119159146777, 'learning_rate': 0.3532571671874416, 'subsample': 0.7824302160362457, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 23.13540775587822, 'min_child_weight': 8.071990676462834, 'learning_rate': 0.22331314188032073, 'subsample': 0.6, 'reg_alpha': 6.609438865595677e-10, 'reg_lambda': 0.05606866397854489, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9376997252704402}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.042121020363204, 'min_child_weight': 9.495857192903348, 'learning_rate': 0.5249297832221422, 'subsample': 0.6, 'reg_alpha': 2.4506729930827376e-10, 'reg_lambda': 0.19742272575072123, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7436185212945934}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.730941433721401, 'max_leaves': 18.930060335609046, 'min_child_weight': 2.007140179605297, 'learning_rate': 0.15028099074916762, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.707680160498747, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.885935777021302, 'max_leaves': 4.0, 'min_child_weight': 3.671066775881695, 'learning_rate': 0.6585047838761094, 'subsample': 0.9091509348162602, 'reg_alpha': 1e-10, 'reg_lambda': 0.1928721140218966, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 5.1918196195417, 'learning_rate': 0.11979710676059577, 'subsample': 0.6, 'reg_alpha': 3.125009802288504e-10, 'reg_lambda': 0.7243771187653862, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.745766664572407, 'min_child_weight': 6.20055459447912, 'learning_rate': 0.6324313487215355, 'subsample': 0.6, 'reg_alpha': 3.1285860104617116e-10, 'reg_lambda': 0.17377593070775943, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7512524264086345}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.071256989765015, 'max_leaves': 20.594271273546127, 'min_child_weight': 3.0738406091352837, 'learning_rate': 0.12473601768134976, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.8039786964532258, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.483648047924024, 'min_child_weight': 7.548456607780408, 'learning_rate': 0.04252747143801977, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.6063291680681345, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.323813371235681, 'max_leaves': 12.403311721856197, 'min_child_weight': 2.524955431554723, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 2.844776073835072e-10, 'reg_lambda': 0.23042293460912763, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.72533258785081, 'min_child_weight': 1.6800078394531888, 'learning_rate': 0.9829201923682482, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.20471867144548522, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.825762564481176, 'max_leaves': 10.571794700648875, 'min_child_weight': 11.34489736540384, 'learning_rate': 0.08025775491120905, 'subsample': 1.0, 'reg_alpha': 4.154046127480094e-10, 'reg_lambda': 0.682459226893599, 'colsample_bylevel': 0.6199187406452354, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.32879083481732, 'min_child_weight': 9.687553814796923, 'learning_rate': 0.21424494265624383, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.0386818041587359, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.897864566703625, 'max_leaves': 10.719776943440303, 'min_child_weight': 1.9674230333108935, 'learning_rate': 0.36820924180667136, 'subsample': 0.6, 'reg_alpha': 2.693674094602295e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.623850696481393, 'max_leaves': 7.487707288551824, 'min_child_weight': 2.19497241663037, 'learning_rate': 0.9519107676222599, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.5285998112609216, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 40.55691643968514, 'min_child_weight': 8.683260148175188, 'learning_rate': 0.08287222981353384, 'subsample': 1.0, 'reg_alpha': 2.2673620142955027e-10, 'reg_lambda': 0.264306084241879, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7341024681465774}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.075723282133724, 'max_leaves': 4.0, 'min_child_weight': 3.8142108425244365, 'learning_rate': 0.08814285716430553, 'subsample': 0.7153989672659741, 'reg_alpha': 1e-10, 'reg_lambda': 0.4726978248090477, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 90.72098646096778, 'min_child_weight': 4.99697507520474, 'learning_rate': 0.894989911086244, 'subsample': 0.6, 'reg_alpha': 2.1509399898580862e-10, 'reg_lambda': 0.2955633364757052, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 22.586396191953543, 'min_child_weight': 14.617799260731474, 'learning_rate': 0.6064050997823908, 'subsample': 0.6, 'reg_alpha': 1.9835852002235132e-10, 'reg_lambda': 0.3719659828197081, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.76363606966011, 'max_leaves': 13.445186927820018, 'min_child_weight': 1.3038567688414502, 'learning_rate': 0.13008955222289195, 'subsample': 1.0, 'reg_alpha': 1.0092863614801678e-10, 'reg_lambda': 0.3756046324082517, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.16112038983683, 'max_leaves': 15.886638184594702, 'min_child_weight': 6.999580063529119, 'learning_rate': 0.27435806310697813, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.15128901870606212, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.115329202945848, 'min_child_weight': 2.7229514254688962, 'learning_rate': 0.2875328940691989, 'subsample': 0.6837776287298576, 'reg_alpha': 4.709435922683799e-10, 'reg_lambda': 0.9234784351190473, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8534962434715493}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 33.57528212563693, 'min_child_weight': 1.1973946816513792, 'learning_rate': 0.30218788425535376, 'subsample': 0.6, 'reg_alpha': 1.3910322918616481e-09, 'reg_lambda': 0.4198174124808564, 'colsample_bylevel': 0.7140113763744065, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.505340650019224, 'max_leaves': 9.04469894520229, 'min_child_weight': 15.917488864560903, 'learning_rate': 0.2610527158981282, 'subsample': 0.709043143655525, 'reg_alpha': 1e-10, 'reg_lambda': 0.3327926429248367, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.868250370674594}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 81.06403163470733, 'min_child_weight': 14.148862445982873, 'learning_rate': 0.22045583047782336, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.557354346574602, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.837400491282315, 'max_leaves': 4.0, 'min_child_weight': 1.347070592030643, 'learning_rate': 0.35783570670545234, 'subsample': 1.0, 'reg_alpha': 2.2506871307548347e-10, 'reg_lambda': 0.250670237173202, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.078755722088037, 'max_leaves': 64.45109051323445, 'min_child_weight': 1.5855225459728057, 'learning_rate': 0.3826466687203175, 'subsample': 1.0, 'reg_alpha': 3.06329706967354e-10, 'reg_lambda': 0.10292048365984245, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.711763857032956, 'min_child_weight': 12.020968456160432, 'learning_rate': 0.20616138684857874, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8837663651063896, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 45.303554759257494, 'min_child_weight': 14.563841941658728, 'learning_rate': 0.06737120827192984, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.23690763125627712, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.896611873655166, 'max_leaves': 6.703189637995524, 'min_child_weight': 1.308687404602492, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 2.0100453779643607e-10, 'reg_lambda': 0.5897325700506268, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.0306333710642, 'max_leaves': 8.198605982040004, 'min_child_weight': 6.243179191791746, 'learning_rate': 0.551223037463308, 'subsample': 0.7674466412189355, 'reg_alpha': 1e-10, 'reg_lambda': 0.17942777425555329, 'colsample_bylevel': 0.7057833961809495, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 37.04023824194749, 'min_child_weight': 3.0528543112664273, 'learning_rate': 0.14311261056758792, 'subsample': 0.6, 'reg_alpha': 1.0492697367718525e-09, 'reg_lambda': 0.7786539560279165, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.303420991095606, 'min_child_weight': 3.7790988592158548, 'learning_rate': 0.12128809412505148, 'subsample': 0.6, 'reg_alpha': 2.534957122906663e-10, 'reg_lambda': 0.39357449050149, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 37.846036054133926, 'max_leaves': 10.729385642893002, 'min_child_weight': 5.043402467546201, 'learning_rate': 0.6504098235316866, 'subsample': 0.7344121847036057, 'reg_alpha': 1e-10, 'reg_lambda': 0.3549827278372392, 'colsample_bylevel': 0.8147817689776123, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.13591820000925, 'min_child_weight': 1.3548792889379804, 'learning_rate': 0.11290153532617725, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.7204338102049493, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7926498718103943}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.588039160932975, 'max_leaves': 21.482744490302647, 'min_child_weight': 14.067317042398695, 'learning_rate': 0.6987236060914636, 'subsample': 0.6, 'reg_alpha': 1.0351475334120992e-09, 'reg_lambda': 0.19392780331287499, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.661887460588204, 'max_leaves': 9.14404426019365, 'min_child_weight': 3.6037257525268314, 'learning_rate': 0.10311135313595961, 'subsample': 0.6, 'reg_alpha': 1.8523423004197018e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 33.21050403797875, 'min_child_weight': 5.2888365598592735, 'learning_rate': 0.7650657808006001, 'subsample': 1.0, 'reg_alpha': 1.0807967236756876e-10, 'reg_lambda': 0.1074926017107299, 'colsample_bylevel': 0.9257359362482365, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 43.4454532838694, 'min_child_weight': 4.571768611374771, 'learning_rate': 0.6638437503901954, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.39548176667815493, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.52443302697446, 'max_leaves': 6.9898757147820705, 'min_child_weight': 4.168959134162941, 'learning_rate': 0.11883363796074149, 'subsample': 0.7239038730848476, 'reg_alpha': 5.945285791589304e-10, 'reg_lambda': 0.3532707649682089, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.118606667553578, 'max_leaves': 33.37128220232165, 'min_child_weight': 5.931919271656684, 'learning_rate': 0.43504852073743683, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.03605619547901582, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.099989535478223, 'min_child_weight': 3.2130438124366587, 'learning_rate': 0.18132912568614312, 'subsample': 1.0, 'reg_alpha': 2.596882314769266e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8877379951718504, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 34.670916405849795, 'min_child_weight': 10.954540569969083, 'learning_rate': 0.08867343049399122, 'subsample': 1.0, 'reg_alpha': 1.4076705177900908e-10, 'reg_lambda': 0.0907668982694683, 'colsample_bylevel': 0.6192141336912617, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.055782269617639, 'max_leaves': 8.75887776578585, 'min_child_weight': 1.739873652384864, 'learning_rate': 0.8896347807556058, 'subsample': 0.6, 'reg_alpha': 1.4222117065877452e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 47.66079448463015, 'min_child_weight': 10.264584550557766, 'learning_rate': 0.42178245081055316, 'subsample': 0.6, 'reg_alpha': 1.2942985725223467e-10, 'reg_lambda': 0.3811464717573714, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.49868442781892, 'max_leaves': 6.371658762938773, 'min_child_weight': 1.8568229837061068, 'learning_rate': 0.18703236169444615, 'subsample': 1.0, 'reg_alpha': 1.5467879915203524e-10, 'reg_lambda': 0.3665576270487108, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.019275219730922, 'max_leaves': 4.0, 'min_child_weight': 3.6660143710774675, 'learning_rate': 0.9883973445112393, 'subsample': 0.6, 'reg_alpha': 1.4395806021416185e-10, 'reg_lambda': 0.18917223253122362, 'colsample_bylevel': 0.9672739385985719, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 5.1989748490998275, 'learning_rate': 0.07981301076378225, 'subsample': 1.0, 'reg_alpha': 1.3906866252859892e-10, 'reg_lambda': 0.7385446816160532, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7896215507660833}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 26.435196033954913, 'min_child_weight': 0.9340735882776042, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.9115639698071587, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9302515550283659}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.529365072772494, 'max_leaves': 11.487651479359391, 'min_child_weight': 20.0, 'learning_rate': 0.04793510827545543, 'subsample': 0.6755520706463619, 'reg_alpha': 2.4852678567296635e-10, 'reg_lambda': 0.1532664199912669, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 63.73330768305867, 'min_child_weight': 3.9824429903120446, 'learning_rate': 0.2124880931792458, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.1447310944535217, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9584029799496623}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.063005523947046, 'max_leaves': 4.764829095906789, 'min_child_weight': 4.785885587825294, 'learning_rate': 0.37125359221809984, 'subsample': 1.0, 'reg_alpha': 7.581214754393574e-10, 'reg_lambda': 0.9653222534721939, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.853745637447306, 'max_leaves': 14.062995940249188, 'min_child_weight': 20.0, 'learning_rate': 0.2580687304428657, 'subsample': 1.0, 'reg_alpha': 2.7941431245990444e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.594141114516784, 'min_child_weight': 0.8160379248912923, 'learning_rate': 0.3056820086687497, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.115310602900932, 'colsample_bylevel': 0.7518267473907566, 'colsample_bytree': 0.7314543179355831}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.229672445308351, 'min_child_weight': 4.374829399725177, 'learning_rate': 0.4614125467758049, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.47688764693181707, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.800520917135822, 'max_leaves': 29.686025671906442, 'min_child_weight': 4.356630800933079, 'learning_rate': 0.1709684065758611, 'subsample': 0.6, 'reg_alpha': 3.0063108816159225e-10, 'reg_lambda': 0.29296658687689986, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.387534397926208, 'min_child_weight': 3.9650845350764605, 'learning_rate': 0.13212216826982873, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.5300886187567186, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.956951927953856, 'max_leaves': 29.234879731155907, 'min_child_weight': 4.806837368299071, 'learning_rate': 0.5970759406192993, 'subsample': 1.0, 'reg_alpha': 8.19348011929328e-10, 'reg_lambda': 0.2635637538739361, 'colsample_bylevel': 0.6180068326511036, 'colsample_bytree': 0.8872333412561673}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.921181510375918, 'max_leaves': 43.24008027505082, 'min_child_weight': 12.951590736728651, 'learning_rate': 0.8310280970699709, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.1476508256319309, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.023074816117712, 'min_child_weight': 1.4715965705757303, 'learning_rate': 0.09492695635022218, 'subsample': 1.0, 'reg_alpha': 4.425819274787811e-10, 'reg_lambda': 0.9462334236697721, 'colsample_bylevel': 0.9131749112572589, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.799314850626856, 'max_leaves': 24.915434807559585, 'min_child_weight': 2.181751912649429, 'learning_rate': 0.1292635545490654, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.188361197472608, 'min_child_weight': 8.735877072533508, 'learning_rate': 0.6102800450719904, 'subsample': 0.6, 'reg_alpha': 2.684187235394478e-10, 'reg_lambda': 0.08163803473863773, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.681119550449341, 'max_leaves': 4.0, 'min_child_weight': 1.3780537207104098, 'learning_rate': 0.26720813137409655, 'subsample': 0.6, 'reg_alpha': 2.895656952119397e-10, 'reg_lambda': 0.568193853380176, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 13.83075001012644, 'learning_rate': 0.29522667401886077, 'subsample': 0.7765789253489165, 'reg_alpha': 1e-10, 'reg_lambda': 0.2458881690011696, 'colsample_bylevel': 0.7984202831375422, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.286926243563585, 'min_child_weight': 9.72861655402475, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1.4742506493144662e-10, 'reg_lambda': 0.6528844809030211, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.538111648643048, 'max_leaves': 41.67440545934596, 'min_child_weight': 1.959118894842794, 'learning_rate': 0.07711607194904675, 'subsample': 0.6, 'reg_alpha': 1.357981758631371e-10, 'reg_lambda': 0.21399213847468251, 'colsample_bylevel': 0.6387100966882743, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.03847082409883, 'min_child_weight': 0.6322797678224874, 'learning_rate': 0.6776827392705081, 'subsample': 1.0, 'reg_alpha': 4.122833307504179e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.809405996800813, 'max_leaves': 15.95077260313484, 'min_child_weight': 20.0, 'learning_rate': 0.11640693103868519, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.11729580548499052, 'colsample_bylevel': 0.656001437777583, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.879493836698013, 'max_leaves': 7.380711941670982, 'min_child_weight': 6.839390134388449, 'learning_rate': 0.6044743952511379, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.9472917473009411, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 41.14485448376208, 'min_child_weight': 2.7867274913649163, 'learning_rate': 0.13050506111775761, 'subsample': 1.0, 'reg_alpha': 6.496092344691501e-10, 'reg_lambda': 0.1474858686813683, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9178439695763967}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.087536923838513, 'max_leaves': 7.631746564747466, 'min_child_weight': 13.024169650018772, 'learning_rate': 0.10165481358205469, 'subsample': 1.0, 'reg_alpha': 4.753693391101411e-10, 'reg_lambda': 0.588218397896632, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 39.79145746654735, 'min_child_weight': 1.4633959034496153, 'learning_rate': 0.7760278644620463, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.23751747096819337, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.203734800908926, 'max_leaves': 42.02946140752401, 'min_child_weight': 1.2884799494737091, 'learning_rate': 0.4135184264850352, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.909498247821579, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.225367840955818, 'min_child_weight': 14.792249207646037, 'learning_rate': 0.19077013947581406, 'subsample': 0.6, 'reg_alpha': 2.635815462085865e-10, 'reg_lambda': 0.15361453040729617, 'colsample_bylevel': 0.7930182882485823, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.336087615800449, 'min_child_weight': 5.013396307952232, 'learning_rate': 0.0664254632691388, 'subsample': 0.6, 'reg_alpha': 1.470768583699028e-10, 'reg_lambda': 0.20404746285618877, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.652258137701878, 'max_leaves': 70.03509747359155, 'min_child_weight': 3.8017175066407853, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1.3611967998285595e-10, 'reg_lambda': 0.6847041579920975, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.883599951091668, 'min_child_weight': 7.013449847647728, 'learning_rate': 0.2668732971590157, 'subsample': 1.0, 'reg_alpha': 5.623248065700491e-10, 'reg_lambda': 0.3360728252488759, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.710810753017597, 'max_leaves': 10.513866669696068, 'min_child_weight': 2.7175665222818606, 'learning_rate': 0.2955970819716922, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4157198551888504, 'colsample_bylevel': 0.9098372637084768, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.448755520890908, 'max_leaves': 10.027084757805275, 'min_child_weight': 1.5715518680443248, 'learning_rate': 0.8077886719207857, 'subsample': 0.6, 'reg_alpha': 1.1420135002109287e-10, 'reg_lambda': 0.3383830364444752, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8747491225788643}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 30.28580351734123, 'min_child_weight': 12.127831667044104, 'learning_rate': 0.09765792791917886, 'subsample': 1.0, 'reg_alpha': 1.7530488816898673e-10, 'reg_lambda': 0.41288164948627876, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.363364595403708, 'max_leaves': 31.52961946390988, 'min_child_weight': 7.408882066801739, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 3.774342898710481e-10, 'reg_lambda': 0.29880690076902194, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9282840051327266}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.631525022819273, 'min_child_weight': 2.5725225938031264, 'learning_rate': 0.05533456060731405, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.46756666558168997, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.079218186110015, 'learning_rate': 0.5002436769911315, 'subsample': 0.741539092968185, 'reg_alpha': 1e-10, 'reg_lambda': 0.1918015712771942, 'colsample_bylevel': 0.9130934035995583, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.091060617878261, 'max_leaves': 4.0, 'min_child_weight': 6.189725884851382, 'learning_rate': 0.15769708149208223, 'subsample': 0.6, 'reg_alpha': 4.1729467082700285e-10, 'reg_lambda': 0.7284202382443294, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.719875812198378}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.827167934365037, 'min_child_weight': 2.628377674255688, 'learning_rate': 0.1703426438947411, 'subsample': 0.6, 'reg_alpha': 1.9703434312448217e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.479532954191262, 'max_leaves': 62.91024529407911, 'min_child_weight': 7.251437530592938, 'learning_rate': 0.4631075700874733, 'subsample': 0.7941860684439562, 'reg_alpha': 1.0160693093765256e-10, 'reg_lambda': 0.0888021765041493, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.686484664805374, 'max_leaves': 14.96925850174352, 'min_child_weight': 0.8389641995980408, 'learning_rate': 1.0, 'subsample': 0.9615293250373328, 'reg_alpha': 1.5692269437932353e-10, 'reg_lambda': 0.3511693934444502, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.28679769216673, 'min_child_weight': 20.0, 'learning_rate': 0.04528705681980076, 'subsample': 0.6, 'reg_alpha': 1.2757909219810645e-10, 'reg_lambda': 0.39784830014655276, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.9503595335359725, 'max_leaves': 18.71834453916989, 'min_child_weight': 20.0, 'learning_rate': 0.14105659429894088, 'subsample': 1.0, 'reg_alpha': 6.073577965555496e-10, 'reg_lambda': 0.33310980570269666, 'colsample_bylevel': 0.6507476005755831, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.223567110389613, 'min_child_weight': 0.9199133769365307, 'learning_rate': 0.5592575681303092, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.41941769306564575, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 9.640923388658956, 'learning_rate': 0.17104140619608707, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.9469384164766105, 'colsample_bylevel': 0.7673861801044352, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.114904964973303, 'max_leaves': 99.63981742818318, 'min_child_weight': 1.9769389033928875, 'learning_rate': 0.4612156181990863, 'subsample': 1.0, 'reg_alpha': 3.3680107569535206e-10, 'reg_lambda': 0.14754090003573261, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.911033975453506, 'min_child_weight': 5.813668309600235, 'learning_rate': 0.29844657361031374, 'subsample': 0.6, 'reg_alpha': 2.1646931669016222e-10, 'reg_lambda': 0.3467675567031418, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.906092898163347, 'max_leaves': 9.22724940982147, 'min_child_weight': 3.278397647866647, 'learning_rate': 0.2643252590977079, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.4028985513341269, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.38564896376872, 'max_leaves': 4.577650026631526, 'min_child_weight': 14.787188698241799, 'learning_rate': 0.4472743848392427, 'subsample': 0.7056943350437243, 'reg_alpha': 1e-10, 'reg_lambda': 0.22166304853018348, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 66.33934815022984, 'min_child_weight': 1.2889208963659509, 'learning_rate': 0.17637264858063026, 'subsample': 0.6, 'reg_alpha': 2.771463427451942e-10, 'reg_lambda': 0.6302906468704735, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.5531155488216415, 'min_child_weight': 20.0, 'learning_rate': 0.07758793734724953, 'subsample': 0.9091426052286892, 'reg_alpha': 1.1370942025616511e-10, 'reg_lambda': 0.5423725701005109, 'colsample_bylevel': 0.6356157846273524, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.466522408492, 'max_leaves': 54.68611559704668, 'min_child_weight': 0.6100601630650475, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1.7606329228566752e-10, 'reg_lambda': 0.2575944174674606, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.961743580119847, 'max_leaves': 7.579783231779959, 'min_child_weight': 16.191392472813785, 'learning_rate': 0.985930843283253, 'subsample': 1.0, 'reg_alpha': 1.9774550780059465e-10, 'reg_lambda': 0.6034462639435247, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 40.06424848053405, 'min_child_weight': 1.1771388127162148, 'learning_rate': 0.08001267881392925, 'subsample': 0.6, 'reg_alpha': 1.0124151550579391e-10, 'reg_lambda': 0.23152375711525802, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.286100179747732, 'min_child_weight': 0.5280598808342039, 'learning_rate': 0.17068766318303932, 'subsample': 0.6, 'reg_alpha': 1.844781758298969e-10, 'reg_lambda': 0.16993452755539604, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.724512267224917, 'max_leaves': 19.86630437166409, 'min_child_weight': 20.0, 'learning_rate': 0.4621714681967013, 'subsample': 1.0, 'reg_alpha': 1.0852261956804599e-10, 'reg_lambda': 0.8221527917557927, 'colsample_bylevel': 0.6511637581494368, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.6190915395177345, 'max_leaves': 16.077255776500184, 'min_child_weight': 3.2943960359715647, 'learning_rate': 0.5060074075985167, 'subsample': 0.6, 'reg_alpha': 4.2962144964039404e-10, 'reg_lambda': 0.36131088016930374, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.888691145319616, 'min_child_weight': 5.785435722833291, 'learning_rate': 0.15590081629587704, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.386681259584278, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 36.66206300299861, 'max_leaves': 19.593432421804813, 'min_child_weight': 2.2523343776814557, 'learning_rate': 0.48646057665769915, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.24592668787746375, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7978012755112684}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.49898518488599, 'min_child_weight': 8.462116771174124, 'learning_rate': 0.16216518189073853, 'subsample': 0.6, 'reg_alpha': 3.0398641381054577e-10, 'reg_lambda': 0.5681048586112947, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.869742629972283, 'max_leaves': 4.0, 'min_child_weight': 10.32572289583308, 'learning_rate': 0.5244410603771804, 'subsample': 0.7824910626473885, 'reg_alpha': 1e-10, 'reg_lambda': 0.15644756341335458, 'colsample_bylevel': 0.9170242487783176, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 94.32085063017291, 'min_child_weight': 1.8458287815724457, 'learning_rate': 0.15042103652149866, 'subsample': 0.6, 'reg_alpha': 2.880284439717598e-10, 'reg_lambda': 0.8930285854068117, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9881037066467966}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.248986267506422, 'max_leaves': 19.98158790933899, 'min_child_weight': 2.097497026128308, 'learning_rate': 1.0, 'subsample': 0.8676952774054438, 'reg_alpha': 1.256360403453106e-10, 'reg_lambda': 0.2809090859340858, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.197907203595394, 'min_child_weight': 9.086790719723467, 'learning_rate': 0.04025612124384035, 'subsample': 0.6, 'reg_alpha': 1.5934961687084283e-10, 'reg_lambda': 0.4973571637271762, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7979703075168935}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.47539317795096, 'min_child_weight': 2.3899643151155496, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.7453266946643976, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.023114325410457, 'max_leaves': 9.351028243525587, 'min_child_weight': 7.97481217235195, 'learning_rate': 0.058298636128172605, 'subsample': 1.0, 'reg_alpha': 3.1942318732387857e-10, 'reg_lambda': 0.18745088193611456, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.554429251054472, 'max_leaves': 24.558161046453876, 'min_child_weight': 1.1703047795939343, 'learning_rate': 0.046501410164919314, 'subsample': 0.7901103640877439, 'reg_alpha': 1.2383248902764935e-10, 'reg_lambda': 0.2221692073156448, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.365678287237547, 'min_child_weight': 16.285942639902263, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1.6167045539821876e-10, 'reg_lambda': 0.6288546821291747, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9933597820756026}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.148016307920111, 'max_leaves': 101.37799376994063, 'min_child_weight': 5.229365273907851, 'learning_rate': 0.2620123712230857, 'subsample': 1.0, 'reg_alpha': 2.782961036982566e-10, 'reg_lambda': 0.4230569633882396, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 3.6447093506297175, 'learning_rate': 0.30108108074485707, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.330244289389362, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.564492791947787, 'max_leaves': 21.619868070520944, 'min_child_weight': 2.910462706521788, 'learning_rate': 0.6618861443306923, 'subsample': 0.6, 'reg_alpha': 2.8125088052535727e-10, 'reg_lambda': 0.11668953291175665, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.046261421950497, 'min_child_weight': 6.548620763620012, 'learning_rate': 0.11918510241083961, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.877373108230667, 'min_child_weight': 2.458574783746296, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1.2468815072006573e-10, 'reg_lambda': 0.2532591886590265, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7199893516605149}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.1868635087573445, 'max_leaves': 30.744846377582622, 'min_child_weight': 7.752262260913622, 'learning_rate': 0.046036281882916565, 'subsample': 0.8195845309741298, 'reg_alpha': 1.6056100582597881e-10, 'reg_lambda': 0.5516567710144205, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.848161220612648, 'max_leaves': 20.185509505499322, 'min_child_weight': 19.225672181718892, 'learning_rate': 0.27727045280363055, 'subsample': 0.6, 'reg_alpha': 1.1522606757192217e-10, 'reg_lambda': 0.11112271836103657, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.044372238604323, 'min_child_weight': 0.9913576145230123, 'learning_rate': 0.28451270987839056, 'subsample': 1.0, 'reg_alpha': 1.7374588334101408e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.977391127554963, 'max_leaves': 11.8354924524049, 'min_child_weight': 11.1847606783684, 'learning_rate': 0.6417648870147847, 'subsample': 0.6, 'reg_alpha': 2.41646436717546e-10, 'reg_lambda': 0.9458764806414351, 'colsample_bylevel': 0.7998563391494783, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.658274892052514, 'min_child_weight': 1.704061182867493, 'learning_rate': 0.12292191344920365, 'subsample': 0.630796810971945, 'reg_alpha': 1e-10, 'reg_lambda': 0.14770654425261356, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.639403775379574, 'min_child_weight': 6.9457517373803555, 'learning_rate': 0.6077718864390377, 'subsample': 0.6, 'reg_alpha': 4.0185685283669724e-10, 'reg_lambda': 0.13346040253965674, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.145636296872233, 'max_leaves': 35.15037920695812, 'min_child_weight': 2.7440538090494324, 'learning_rate': 0.12979700057956212, 'subsample': 0.8038183348117233, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.4742684505096, 'min_child_weight': 15.380862114550384, 'learning_rate': 0.15332270314765442, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.31658923307014075, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.84279834536091, 'max_leaves': 12.40806520696207, 'min_child_weight': 1.239170884552685, 'learning_rate': 0.5145158954078625, 'subsample': 0.7004160663504752, 'reg_alpha': 2.9058208830292373e-10, 'reg_lambda': 0.441304162148866, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.923792568438337, 'max_leaves': 25.129985418407447, 'min_child_weight': 8.38381834243861, 'learning_rate': 0.4518335770418633, 'subsample': 0.6924964484997533, 'reg_alpha': 1.6258455796927898e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.084301433942596, 'min_child_weight': 2.2733694521017513, 'learning_rate': 0.1745929738397027, 'subsample': 0.6, 'reg_alpha': 1.2313626302676216e-10, 'reg_lambda': 0.04511458779138416, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.476746693625456, 'max_leaves': 4.098398323375727, 'min_child_weight': 1.8595497041534221, 'learning_rate': 0.19811668534106297, 'subsample': 0.7705376564179333, 'reg_alpha': 7.053073412205612e-10, 'reg_lambda': 0.8210235015398492, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 74.09682877687862, 'min_child_weight': 10.249533244042706, 'learning_rate': 0.39818437180373467, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.17016826678327363, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.858548006716685, 'max_leaves': 10.305256023728969, 'min_child_weight': 5.599141619614798, 'learning_rate': 1.0, 'subsample': 0.8285661795795666, 'reg_alpha': 1e-10, 'reg_lambda': 0.551234007943747, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 29.468294443861016, 'min_child_weight': 3.4040068650704187, 'learning_rate': 0.06182317873702539, 'subsample': 0.6, 'reg_alpha': 2.6226576834492124e-10, 'reg_lambda': 0.2534534231052523, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.034012300715926, 'max_leaves': 29.39432818666247, 'min_child_weight': 1.335000981565969, 'learning_rate': 0.43212011471827705, 'subsample': 0.6933413151796551, 'reg_alpha': 1e-10, 'reg_lambda': 0.6615467621068253, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7471139086145746}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.331187598443233, 'min_child_weight': 14.276780897429218, 'learning_rate': 0.18255796295851698, 'subsample': 0.6, 'reg_alpha': 4.802143810539039e-10, 'reg_lambda': 0.21119012932725997, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.52866360150797, 'min_child_weight': 10.933718862113535, 'learning_rate': 0.10870174107365431, 'subsample': 1.0, 'reg_alpha': 1.680837624214063e-10, 'reg_lambda': 0.0909445427873258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.132602012223145, 'max_leaves': 11.031349840389009, 'min_child_weight': 1.7431869935592976, 'learning_rate': 0.7257194513831839, 'subsample': 0.6, 'reg_alpha': 1.19107608050814e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 39.298753015904545, 'min_child_weight': 10.016458739760726, 'learning_rate': 0.7009879942107355, 'subsample': 1.0, 'reg_alpha': 1.9679863476740405e-10, 'reg_lambda': 0.2225197149287438, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.882797686484306, 'max_leaves': 7.727428875509522, 'min_child_weight': 1.9028198494955892, 'learning_rate': 0.11253683165457155, 'subsample': 0.6, 'reg_alpha': 1.0172862691784758e-10, 'reg_lambda': 0.6278641256129135, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.504727488265568, 'min_child_weight': 5.864450532277141, 'learning_rate': 0.2066448701446217, 'subsample': 0.6114955128180242, 'reg_alpha': 1e-10, 'reg_lambda': 0.05355330962808035, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8592564967925258}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.335889389588516, 'max_leaves': 55.16682151368418, 'min_child_weight': 3.2500089150329226, 'learning_rate': 0.3817513971731299, 'subsample': 0.6, 'reg_alpha': 2.728165103596312e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.240010777469449, 'min_child_weight': 3.3194182026935963, 'learning_rate': 0.17928766739921614, 'subsample': 1.0, 'reg_alpha': 5.139131039668575e-10, 'reg_lambda': 0.5382447890212909, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.387488450705348, 'max_leaves': 48.66631319341571, 'min_child_weight': 5.741824424594684, 'learning_rate': 0.44000219892823605, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.2595699003410956, 'colsample_bylevel': 0.6845100397524256, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.871045558660802, 'max_leaves': 16.02547052969562, 'min_child_weight': 4.113665141690839, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 2.0417855752405146e-10, 'reg_lambda': 0.22703951514602302, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9398563318095509}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.949728699940117, 'min_child_weight': 4.633220219727523, 'learning_rate': 0.04584936735103697, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.615364889920211, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.203749158949126, 'min_child_weight': 5.597679921187108, 'learning_rate': 0.15834661973266048, 'subsample': 1.0, 'reg_alpha': 1.2935475713843289e-10, 'reg_lambda': 0.4653350297749638, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9894945597567381}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.604932609503058, 'max_leaves': 19.9739100962389, 'min_child_weight': 3.4048957389525585, 'learning_rate': 0.49819167614411763, 'subsample': 0.6, 'reg_alpha': 1.5476860176676713e-10, 'reg_lambda': 0.3002399073908864, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.171951748887714, 'min_child_weight': 2.6438893379121895, 'learning_rate': 0.2285579749238247, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.32505674680130414, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.950540627200143, 'max_leaves': 12.064154653404515, 'min_child_weight': 7.208893442840192, 'learning_rate': 0.3451508000220132, 'subsample': 1.0, 'reg_alpha': 3.0082402142232674e-10, 'reg_lambda': 0.42980847996602783, 'colsample_bylevel': 0.6283013601232137, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.796077059151088, 'max_leaves': 20.560104704787825, 'min_child_weight': 10.889421806562126, 'learning_rate': 0.18228349351518425, 'subsample': 0.6, 'reg_alpha': 1.199083725869564e-10, 'reg_lambda': 0.2568262638112467, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.770271026679167, 'min_child_weight': 1.7502781001820256, 'learning_rate': 0.4327707702716265, 'subsample': 1.0, 'reg_alpha': 1.6696127603330322e-10, 'reg_lambda': 0.5439947775280933, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.143233527512683, 'max_leaves': 13.951251468161635, 'min_child_weight': 0.600106282131778, 'learning_rate': 0.3560449016451771, 'subsample': 1.0, 'reg_alpha': 2.4031847071146767e-10, 'reg_lambda': 0.4038417239157279, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.76710236494888, 'min_child_weight': 20.0, 'learning_rate': 0.22156466089489338, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.34595768087233375, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.822748091071245, 'min_child_weight': 3.855607094908087, 'learning_rate': 0.30487878329702606, 'subsample': 0.9261420491802101, 'reg_alpha': 1.0374639439404799e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7827718901879747, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.659043018892618, 'max_leaves': 28.059261499133655, 'min_child_weight': 4.943324369550324, 'learning_rate': 0.25874863131920284, 'subsample': 0.6, 'reg_alpha': 1.9297109081357685e-10, 'reg_lambda': 0.054833857899101265, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.868275946420543, 'max_leaves': 19.29441800895815, 'min_child_weight': 1.6919904862761368, 'learning_rate': 0.3422521843656766, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.739180040860713, 'min_child_weight': 11.264553002078596, 'learning_rate': 0.23049368711138207, 'subsample': 0.7215637258665917, 'reg_alpha': 5.003107156920812e-10, 'reg_lambda': 0.05037265454125819, 'colsample_bylevel': 0.7490230358377371, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.364587000668106, 'min_child_weight': 1.022969989679225, 'learning_rate': 0.44693417544418507, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7567942448185977}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.511432594842942, 'max_leaves': 14.912078443655883, 'min_child_weight': 18.63155000045193, 'learning_rate': 0.17650690466435598, 'subsample': 1.0, 'reg_alpha': 3.032349921740646e-10, 'reg_lambda': 0.0762573431799364, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.969653483284361, 'min_child_weight': 5.760571533554754, 'learning_rate': 0.5343773390366984, 'subsample': 0.6, 'reg_alpha': 2.4077289557188663e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.567488167808307, 'max_leaves': 33.85619292791473, 'min_child_weight': 3.3086155428589854, 'learning_rate': 0.14762408907266886, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.09969179110312479, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.236938303770013, 'max_leaves': 77.98205348795496, 'min_child_weight': 13.07252244861382, 'learning_rate': 0.14504811249982233, 'subsample': 0.8581556854936608, 'reg_alpha': 6.44669297422738e-10, 'reg_lambda': 0.5434612713409637, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.4579830776034588, 'learning_rate': 0.5438675935646248, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.2570783855501566, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 80.27098980173851, 'max_leaves': 25.689302373302983, 'min_child_weight': 0.61427487185734, 'learning_rate': 0.27486186097990056, 'subsample': 1.0, 'log_max_bin': 5.65653792552482, 'reg_alpha': 1.3986244748223962e-10, 'reg_lambda': 0.6637839980005242, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.11902087376538, 'max_leaves': 18.981901583910105, 'min_child_weight': 0.3558698800779202, 'learning_rate': 0.14220441725283536, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.05508469012828185, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.939643426487876, 'max_leaves': 6.6851608742167326, 'min_child_weight': 12.246356336699112, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.18958540004181365, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 45.42573088971448, 'min_child_weight': 1.5563418201831933, 'learning_rate': 0.0783611622480657, 'subsample': 1.0, 'reg_alpha': 2.1553038512165763e-10, 'reg_lambda': 0.7369351554210218, 'colsample_bylevel': 0.6034580145741198, 'colsample_bytree': 0.7144569288683771}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 38.34107543640863, 'min_child_weight': 1.2042343226126278, 'learning_rate': 0.1363751612755693, 'subsample': 0.7489440128738823, 'reg_alpha': 1.9274905025254317e-10, 'reg_lambda': 0.47606833863952924, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.522385032065483, 'max_leaves': 7.920443424449308, 'min_child_weight': 15.82708294704639, 'learning_rate': 0.5784555424793576, 'subsample': 0.6, 'reg_alpha': 1.0386590682529627e-10, 'reg_lambda': 0.29347077909996905, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9147878852071266}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.925128712431775, 'max_leaves': 112.0, 'min_child_weight': 2.898944412348021, 'learning_rate': 0.5446064427417894, 'subsample': 1.0, 'reg_alpha': 3.5865867275859337e-10, 'reg_lambda': 0.333786890693555, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9762768071384956}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 6.574640214033247, 'learning_rate': 0.1448513306218294, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4185669064326384, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.052298475331135, 'min_child_weight': 1.5552532703035185, 'learning_rate': 0.12059327428680171, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.8957479678296596, 'colsample_bylevel': 0.866809951458982, 'colsample_bytree': 0.8198936097139898}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 28.460698780913763, 'max_leaves': 33.54709521059059, 'min_child_weight': 12.25492778288817, 'learning_rate': 0.6541572767048012, 'subsample': 0.6, 'reg_alpha': 2.1112471349807902e-10, 'reg_lambda': 0.15597260754482556, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.4205664213655922, 'learning_rate': 0.11363580278426007, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.5149399807012196, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.222092237379828, 'max_leaves': 102.2438037332845, 'min_child_weight': 13.416842905063422, 'learning_rate': 0.6942087437542714, 'subsample': 0.9579499828156353, 'reg_alpha': 2.908124790174787e-10, 'reg_lambda': 0.2713173408192494, 'colsample_bylevel': 0.6339407625796613, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 61.20806518660619, 'min_child_weight': 3.613075002867825, 'learning_rate': 0.2790067049692029, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.2810222901591844, 'colsample_bylevel': 0.7162415038221277, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.029974610232609, 'max_leaves': 4.961410198162412, 'min_child_weight': 5.2751510822615275, 'learning_rate': 0.28274219397371464, 'subsample': 0.6, 'reg_alpha': 7.696271932248672e-10, 'reg_lambda': 0.4971568133126768, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.818427156777743, 'max_leaves': 32.96127018786919, 'min_child_weight': 14.601010158299449, 'learning_rate': 0.4354985434717449, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.07553301416087799, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.21318617564626, 'min_child_weight': 1.3053560202364864, 'learning_rate': 0.18114174910320338, 'subsample': 0.6, 'reg_alpha': 2.1459306507343256e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 47.2241147807556, 'min_child_weight': 6.990932680369314, 'learning_rate': 0.1852282290286576, 'subsample': 0.6, 'reg_alpha': 1.9449892246686977e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.384938366519719, 'max_leaves': 6.430577264105123, 'min_child_weight': 2.726319560362783, 'learning_rate': 0.42589063400354776, 'subsample': 0.8008789324440423, 'reg_alpha': 1.0293144373385997e-10, 'reg_lambda': 0.13959792804276144, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.05432520142882, 'min_child_weight': 3.09372187432522, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 5.052710055601652e-10, 'reg_lambda': 0.8794565369791791, 'colsample_bylevel': 0.9910293317784062, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.526279176935638, 'max_leaves': 30.203749405625143, 'min_child_weight': 6.160707809530358, 'learning_rate': 0.043912883157487446, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.15886191115852513, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.93713741680519, 'max_leaves': 4.0, 'min_child_weight': 7.719362538263352, 'learning_rate': 0.5888794599963549, 'subsample': 0.6, 'reg_alpha': 1.2175124304402438e-10, 'reg_lambda': 0.2067594243213064, 'colsample_bylevel': 0.709905278972451, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.469053165620351, 'learning_rate': 0.13396114698389652, 'subsample': 0.7130942549450618, 'reg_alpha': 1.6443409031114276e-10, 'reg_lambda': 0.6757232310158512, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7530744156051876}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.6496980634552285, 'min_child_weight': 3.4933732953343064, 'learning_rate': 0.7632505828357061, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.07679853082689479, 'colsample_bylevel': 0.8492618689588717, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.65697271473192, 'max_leaves': 39.69807910162819, 'min_child_weight': 5.455906054221535, 'learning_rate': 0.1033565773422412, 'subsample': 0.6386416507203145, 'reg_alpha': 2.717160163093298e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.438092306274662, 'min_child_weight': 8.486248004229623, 'learning_rate': 0.07800432391288908, 'subsample': 0.6, 'reg_alpha': 3.217226425586274e-10, 'reg_lambda': 0.31452541120658484, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.199973078088344, 'max_leaves': 15.62284580409105, 'min_child_weight': 2.2459297091212567, 'learning_rate': 1.0, 'subsample': 0.8593330542586181, 'reg_alpha': 1e-10, 'reg_lambda': 0.4441998683330727, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.936877334394232, 'max_leaves': 17.752936572237182, 'min_child_weight': 1.8688687446134191, 'learning_rate': 1.0, 'subsample': 0.7613849346975611, 'reg_alpha': 1.0396335273247423e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.105807683756563, 'min_child_weight': 10.198424349813177, 'learning_rate': 0.05809096849405, 'subsample': 0.6, 'reg_alpha': 1.9256838460868032e-10, 'reg_lambda': 0.12715823779184446, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.075599905581634, 'max_leaves': 20.96894416666302, 'min_child_weight': 6.513712955127574, 'learning_rate': 0.18826008806831168, 'subsample': 1.0, 'reg_alpha': 1.8720011443445246e-10, 'reg_lambda': 0.0559291182105522, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.482289447334857, 'min_child_weight': 2.9260602429013525, 'learning_rate': 0.4190318229732505, 'subsample': 0.6, 'reg_alpha': 1.0694467230790586e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.703803976799655, 'max_leaves': 61.62158926885765, 'min_child_weight': 5.975119145333913, 'learning_rate': 0.7505298594450276, 'subsample': 0.6679063369916797, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9144918952156889}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.928115656051259, 'min_child_weight': 3.189813633516283, 'learning_rate': 0.10510836698049772, 'subsample': 0.6, 'reg_alpha': 2.7524451796918107e-10, 'reg_lambda': 0.08961643519917495, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.1731071143665135, 'max_leaves': 46.42338628462538, 'min_child_weight': 1.5346823406617391, 'learning_rate': 0.2563038517641083, 'subsample': 0.6, 'reg_alpha': 3.059987052640829e-10, 'reg_lambda': 0.7035650492672278, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.541494344353562, 'min_child_weight': 12.419193214572347, 'learning_rate': 0.3077868996248004, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.19857743984139425, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.209860765153233, 'max_leaves': 7.416802099046213, 'min_child_weight': 5.501459651986705, 'learning_rate': 0.2126077029442316, 'subsample': 0.6, 'reg_alpha': 3.665615513829578e-10, 'reg_lambda': 0.34322489501425496, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 40.944643630934976, 'min_child_weight': 3.4644472044409964, 'learning_rate': 0.37104473075964656, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.4070571461302886, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.366538859221203, 'max_leaves': 33.23946765588316, 'min_child_weight': 9.338832340985586, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 3.927722454117713e-10, 'reg_lambda': 0.11442887395675436, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.136076485053714, 'min_child_weight': 2.040888605315599, 'learning_rate': 0.07245042192055996, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.7988690467478605, 'max_leaves': 29.270179395349967, 'min_child_weight': 15.257998915577195, 'learning_rate': 0.20940220451111818, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.19037023108899928, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7251023736237123}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.375007092538073, 'min_child_weight': 1.2491491588855757, 'learning_rate': 0.3767246294304453, 'subsample': 1.0, 'reg_alpha': 6.741428355488079e-10, 'reg_lambda': 0.7338970250031068, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.703741210196904, 'min_child_weight': 5.5419029172537275, 'learning_rate': 0.557340037578659, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9645556994490454}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.9826576821138, 'max_leaves': 64.5610175509433, 'min_child_weight': 3.4391646328433265, 'learning_rate': 0.1415419000563651, 'subsample': 1.0, 'reg_alpha': 2.9667330710301474e-10, 'reg_lambda': 0.13542360257789526, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.992205750510248, 'max_leaves': 4.0, 'min_child_weight': 2.6404259352454336, 'learning_rate': 0.0715669422021148, 'subsample': 1.0, 'reg_alpha': 1.1761752767009648e-10, 'reg_lambda': 0.1309257330903101, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 95.19934382922379, 'min_child_weight': 7.218349228151576, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1.702131926318748e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.962522722800251, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.322237054208777, 'min_child_weight': 11.55673242864081, 'learning_rate': 0.2300031515782243, 'subsample': 0.9331315017570465, 'reg_alpha': 6.040070454597638e-10, 'reg_lambda': 0.7452225647666515, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.129739046598178, 'max_leaves': 18.60518982894643, 'min_child_weight': 1.6492132728136435, 'learning_rate': 0.3429821172234668, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.1874770744349616, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9662845506369612}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.22184354946323, 'min_child_weight': 1.305621462061947, 'learning_rate': 0.16943597699638094, 'subsample': 1.0, 'reg_alpha': 2.8968048411410736e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8257514351768832}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.980743767212271, 'max_leaves': 14.309704909416254, 'min_child_weight': 14.598041672484374, 'learning_rate': 0.4655856996537064, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.07403997432076463, 'colsample_bylevel': 0.9463047503344835, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 42.622696889950824, 'min_child_weight': 19.527310968208816, 'learning_rate': 0.5015144699762883, 'subsample': 1.0, 'reg_alpha': 2.70927432624762e-10, 'reg_lambda': 0.28926179190021134, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.579275571028723, 'max_leaves': 7.124803003683609, 'min_child_weight': 0.9760440924354551, 'learning_rate': 0.1572974911373925, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.48299550842016487, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.047673566651449, 'max_leaves': 112.0, 'min_child_weight': 5.426804032283395, 'learning_rate': 0.1217458872189288, 'subsample': 0.6, 'reg_alpha': 3.0943244185434723e-10, 'reg_lambda': 0.3081840693833585, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9989761235489837}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 3.5121070151580085, 'learning_rate': 0.6479641300285678, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.45333993585365634, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.129667832873312, 'max_leaves': 4.0, 'min_child_weight': 4.677598002768052, 'learning_rate': 0.26160409692466374, 'subsample': 1.0, 'reg_alpha': 5.776208433914053e-10, 'reg_lambda': 0.37799331319231405, 'colsample_bylevel': 0.7413559692515657, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 79.67940663531384, 'min_child_weight': 4.074637559788479, 'learning_rate': 0.3015509650794462, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.36961539098520585, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.538592636505156, 'min_child_weight': 1.0872793222603365, 'learning_rate': 0.41293425803784184, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.315484296749714, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.55903353619048, 'max_leaves': 66.9102391750361, 'min_child_weight': 17.529549326890162, 'learning_rate': 0.19104001753504313, 'subsample': 1.0, 'reg_alpha': 2.83632835173717e-10, 'reg_lambda': 0.4428497636324816, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.916630573957214, 'max_leaves': 12.071168858906246, 'min_child_weight': 11.7867465018838, 'learning_rate': 0.11404362409541262, 'subsample': 0.7530773478848628, 'reg_alpha': 1e-10, 'reg_lambda': 0.2861876841714279, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.157325059085753, 'min_child_weight': 1.6170294753199383, 'learning_rate': 0.6917262453039015, 'subsample': 0.6, 'reg_alpha': 3.9734842959207977e-10, 'reg_lambda': 0.48818364301687495, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.19726823955973, 'max_leaves': 63.48291188056614, 'min_child_weight': 4.35657963450022, 'learning_rate': 0.22333644958536833, 'subsample': 0.849546368772181, 'reg_alpha': 6.98701083509618e-10, 'reg_lambda': 0.14897268817895368, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.783623022805636, 'min_child_weight': 4.374880780494847, 'learning_rate': 0.35322030077412647, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.9378373173849227, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.926717466788945, 'max_leaves': 8.41343056483277, 'min_child_weight': 1.6910604177196307, 'learning_rate': 1.0, 'subsample': 0.8710077218318395, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8440097563180503}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 36.09447020291106, 'min_child_weight': 11.27074840848782, 'learning_rate': 0.05571895752106064, 'subsample': 0.6, 'reg_alpha': 4.0273257861117164e-10, 'reg_lambda': 0.10441491476740994, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.862981766095044, 'max_leaves': 93.02718304083461, 'min_child_weight': 4.713822302099213, 'learning_rate': 0.04533046207003308, 'subsample': 0.6, 'reg_alpha': 1.316919074582945e-10, 'reg_lambda': 0.19557704886030994, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 4.043325201966668, 'learning_rate': 1.0, 'subsample': 0.6718991248728714, 'reg_alpha': 1.5202190689306517e-10, 'reg_lambda': 0.7143585970824179, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 52.288912796098444, 'min_child_weight': 1.9528004444579246, 'learning_rate': 0.5519739362173729, 'subsample': 0.9683738677024991, 'reg_alpha': 2.1506763561882883e-10, 'reg_lambda': 0.7466765017486358, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.882773015129406, 'max_leaves': 5.807699999631216, 'min_child_weight': 9.760094312637758, 'learning_rate': 0.14291792188046873, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.1871120169419819, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.394324145791686, 'max_leaves': 36.41088746802252, 'min_child_weight': 5.860135274850309, 'learning_rate': 0.11187882914938642, 'subsample': 0.7864261017070893, 'reg_alpha': 1e-10, 'reg_lambda': 0.16230443735220793, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.340316315918416, 'min_child_weight': 3.2524021405217702, 'learning_rate': 0.7051107747207057, 'subsample': 0.6, 'reg_alpha': 3.203355307045033e-10, 'reg_lambda': 0.860802997900722, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.01083030144885, 'min_child_weight': 4.151923203932948, 'learning_rate': 0.48579047151981963, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.2329473852288264, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.811812672551115, 'max_leaves': 9.48673670651001, 'min_child_weight': 4.590527226904383, 'learning_rate': 0.16238887446591432, 'subsample': 1.0, 'reg_alpha': 4.3844947145289724e-10, 'reg_lambda': 0.5997583793788025, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.333055757637688, 'max_leaves': 25.655007874331126, 'min_child_weight': 3.264625996637169, 'learning_rate': 0.02308164243092458, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.3728059157287089, 'colsample_bylevel': 0.8773650077846222, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.83699963430766, 'min_child_weight': 5.8381929603278095, 'learning_rate': 1.0, 'subsample': 0.6151291350221312, 'reg_alpha': 2.3779284175220346e-10, 'reg_lambda': 0.37475839398170685, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.380296262778353, 'min_child_weight': 4.952274279421219, 'learning_rate': 0.0950998542734013, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.121870704967732, 'max_leaves': 19.744633889891016, 'min_child_weight': 3.848639117358783, 'learning_rate': 0.8295172321671308, 'subsample': 0.6, 'reg_alpha': 2.145962605497592e-10, 'reg_lambda': 0.07542103605863346, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.168755690151944, 'min_child_weight': 4.672760114411126, 'learning_rate': 0.14173200334003241, 'subsample': 0.9180550709344821, 'reg_alpha': 1e-10, 'reg_lambda': 0.7726753895116052, 'colsample_bylevel': 0.7672965607076926, 'colsample_bytree': 0.7357872727049877}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 36.856566909077316, 'max_leaves': 37.175590793188356, 'min_child_weight': 4.078856188848507, 'learning_rate': 0.5565924846705922, 'subsample': 0.6, 'reg_alpha': 3.7266590299196573e-10, 'reg_lambda': 0.18081609449691435, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.874746255733417, 'min_child_weight': 3.528666978236049, 'learning_rate': 0.12373650859288682, 'subsample': 0.6, 'reg_alpha': 3.4111118377035867e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.523847154205006, 'max_leaves': 15.279607342861715, 'min_child_weight': 5.401336150230297, 'learning_rate': 0.6375399531913435, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.11309809203168182, 'colsample_bylevel': 0.892670102210369, 'colsample_bytree': 0.7035414196922103}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.414623965727253, 'max_leaves': 10.766053165435212, 'min_child_weight': 4.089416222651857, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1.1006879958433039e-10, 'reg_lambda': 0.2865516435513262, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.20702388890178, 'min_child_weight': 4.660693721049208, 'learning_rate': 0.06104639173839354, 'subsample': 1.0, 'reg_alpha': 1.818867378385136e-10, 'reg_lambda': 0.4875635837012595, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.257961220062011, 'max_leaves': 4.0, 'min_child_weight': 10.006638488419055, 'learning_rate': 0.3654634181367114, 'subsample': 0.6, 'reg_alpha': 3.435163233987011e-10, 'reg_lambda': 0.256709430241107, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.9046872267573525, 'learning_rate': 0.215854621780119, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5442423603766712, 'colsample_bylevel': 0.7546523829041886, 'colsample_bytree': 0.856540260532568}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.162856949859715, 'min_child_weight': 3.265799895616828, 'learning_rate': 0.31694172657052694, 'subsample': 1.0, 'reg_alpha': 1.3713480854408614e-10, 'reg_lambda': 0.8469864534705218, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.9206730480125955, 'max_leaves': 58.819820455197615, 'min_child_weight': 5.836094408984115, 'learning_rate': 0.24890054316914037, 'subsample': 0.6, 'reg_alpha': 1.4598813464459642e-10, 'reg_lambda': 0.16495204341568961, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.127352088332824, 'max_leaves': 67.8029341199538, 'min_child_weight': 2.460809964447156, 'learning_rate': 0.787117495294811, 'subsample': 0.6, 'reg_alpha': 2.385962049316087e-10, 'reg_lambda': 0.06634505645232737, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.478837424489094, 'min_child_weight': 7.745220796012249, 'learning_rate': 0.10022260763854905, 'subsample': 0.8891192910094632, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9743614990967191, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.645008026138896, 'max_leaves': 9.636696262403156, 'min_child_weight': 11.87110556876189, 'learning_rate': 0.7201880719858006, 'subsample': 0.6, 'reg_alpha': 4.884766602689679e-10, 'reg_lambda': 0.15320947988680808, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8389368310586629}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.51270005379289, 'min_child_weight': 1.6055384564875126, 'learning_rate': 0.10953662100908093, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.9119027513740698, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.527990479414775, 'max_leaves': 53.93961854614863, 'min_child_weight': 7.453870232394617, 'learning_rate': 1.0, 'subsample': 0.6515485493635265, 'reg_alpha': 1.704684386601043e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.62996786057733, 'min_child_weight': 2.556996019173687, 'learning_rate': 0.05890779977497854, 'subsample': 0.6, 'reg_alpha': 1.174414164378711e-10, 'reg_lambda': 0.1162471822969071, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 2.7133977482206952, 'learning_rate': 0.13933769898971257, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.1444910913775877, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.998549738178569, 'max_leaves': 77.73813170338657, 'min_child_weight': 7.024225078748044, 'learning_rate': 0.5661566716570626, 'subsample': 1.0, 'reg_alpha': 4.4443067267376933e-10, 'reg_lambda': 0.9669256762707347, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.489826411626353, 'max_leaves': 16.17671736982618, 'min_child_weight': 20.0, 'learning_rate': 0.21268457327397236, 'subsample': 1.0, 'reg_alpha': 1.0627286871683781e-10, 'reg_lambda': 0.10259246099913984, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.77255514107314, 'min_child_weight': 0.5669194174687477, 'learning_rate': 0.3709106245084831, 'subsample': 0.6, 'reg_alpha': 1.8838349934392082e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.691426977706126, 'max_leaves': 4.801777156589885, 'min_child_weight': 4.4089604723714935, 'learning_rate': 0.6072943237179238, 'subsample': 0.6971806471277381, 'reg_alpha': 2.357544748717696e-10, 'reg_lambda': 0.7164824764769737, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 63.2429013099565, 'min_child_weight': 4.322904827817279, 'learning_rate': 0.12989907004797027, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.19499729697835894, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 11.949124268519878, 'learning_rate': 0.9482319251426604, 'subsample': 0.6456760186301629, 'reg_alpha': 2.6107655101907284e-10, 'reg_lambda': 0.3146509253329468, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.493589540382591, 'max_leaves': 112.0, 'min_child_weight': 1.5950555106270692, 'learning_rate': 0.08319374807434465, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4440226771859468, 'colsample_bylevel': 0.6193470853074916, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 48.38245746759696, 'min_child_weight': 1.469622973535697, 'learning_rate': 0.18941330488469035, 'subsample': 0.6, 'reg_alpha': 1.0394666163237395e-10, 'reg_lambda': 0.9704192391405614, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.82098527959178, 'max_leaves': 6.276620385188149, 'min_child_weight': 12.968983783518219, 'learning_rate': 0.4164806054378997, 'subsample': 1.0, 'reg_alpha': 1.9259930602677285e-10, 'reg_lambda': 0.14397091546649948, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.025832108184353, 'max_leaves': 24.284546606031334, 'min_child_weight': 17.37560103061613, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 2.039641957956659e-10, 'reg_lambda': 0.7637411125680156, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8206247069109166}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.50500261558088, 'min_child_weight': 1.0969126465373518, 'learning_rate': 0.04830082701357833, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.18293128907988224, 'colsample_bylevel': 0.9415014504804748, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.972249992839288, 'max_leaves': 4.145219730599255, 'min_child_weight': 4.91744992722163, 'learning_rate': 0.5443262454348976, 'subsample': 0.7348838369192465, 'reg_alpha': 1e-10, 'reg_lambda': 0.41595643584343783, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 73.25988453275944, 'min_child_weight': 3.875894374879573, 'learning_rate': 0.14492589427383096, 'subsample': 0.6, 'reg_alpha': 3.436852175393169e-10, 'reg_lambda': 0.33588167944096164, 'colsample_bylevel': 0.676624602378322, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.98900113996001, 'min_child_weight': 3.926692852304025, 'learning_rate': 0.2654360960898149, 'subsample': 0.8740977951112927, 'reg_alpha': 1.599613255924311e-10, 'reg_lambda': 0.13343511544316786, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.350855714056802, 'max_leaves': 25.32974309381295, 'min_child_weight': 4.853834315176171, 'learning_rate': 0.2971975893952138, 'subsample': 0.6, 'reg_alpha': 1.251555950793039e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.820260623777463, 'max_leaves': 64.02295028643087, 'min_child_weight': 1.4066616840676183, 'learning_rate': 0.29857475966890834, 'subsample': 0.9292584210611677, 'reg_alpha': 1e-10, 'reg_lambda': 0.7329410216172721, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.743272802455962, 'min_child_weight': 13.549467315094713, 'learning_rate': 0.26421177725755396, 'subsample': 0.6, 'reg_alpha': 6.493974630802253e-10, 'reg_lambda': 0.1906185383608199, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.94207998589532, 'min_child_weight': 1.276705339784765, 'learning_rate': 0.18373061629431145, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.4229624344632537, 'colsample_bylevel': 0.9290923011532581, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.53722410619285, 'max_leaves': 27.753253423304198, 'min_child_weight': 14.928672981726114, 'learning_rate': 0.4293621253085177, 'subsample': 0.6, 'reg_alpha': 7.026155234562519e-10, 'reg_lambda': 0.33031809650582217, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 74.32424963824197, 'min_child_weight': 0.6532538012939837, 'learning_rate': 0.43247653844032397, 'subsample': 0.6639512373700877, 'reg_alpha': 1e-10, 'reg_lambda': 0.6767611155974493, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.211316517803224, 'max_leaves': 4.085857849957579, 'min_child_weight': 20.0, 'learning_rate': 0.18240750858038668, 'subsample': 0.6, 'reg_alpha': 3.11103619520192e-10, 'reg_lambda': 0.2064423369271618, 'colsample_bylevel': 0.8655213126375877, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 25.56546851352117, 'max_leaves': 53.67149240705585, 'min_child_weight': 4.135645196157544, 'learning_rate': 0.25421364125579216, 'subsample': 0.6, 'reg_alpha': 1.7687141443160047e-10, 'reg_lambda': 0.7901381992801173, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.65809343484354, 'min_child_weight': 4.608595662262953, 'learning_rate': 0.3103176033617823, 'subsample': 1.0, 'reg_alpha': 1.1318988406652412e-10, 'reg_lambda': 0.1768198859043394, 'colsample_bylevel': 0.9812451454903082, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 39.67027684677224, 'min_child_weight': 1.1202074958522414, 'learning_rate': 0.08671612890217019, 'subsample': 0.6, 'reg_alpha': 1.0526102158959681e-10, 'reg_lambda': 0.1583481135752302, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.344374732684401, 'max_leaves': 7.655059227329954, 'min_child_weight': 17.014273321899182, 'learning_rate': 0.9097150541090986, 'subsample': 0.7524282116259206, 'reg_alpha': 1.9019438147058251e-10, 'reg_lambda': 0.8823101399246801, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.524178889460472, 'min_child_weight': 3.2778195213009202, 'learning_rate': 0.2808451056410499, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.0969291936560156, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.431597405284538, 'max_leaves': 31.88498686880718, 'min_child_weight': 5.814693697383871, 'learning_rate': 0.2808913750385784, 'subsample': 0.6, 'reg_alpha': 2.3555845864390617e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 2.444318985885159, 'learning_rate': 0.5032020264832447, 'subsample': 0.6, 'reg_alpha': 1.1001087109031704e-10, 'reg_lambda': 0.26103203324216573, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.915989145013978, 'max_leaves': 80.3389931800517, 'min_child_weight': 7.797475133863625, 'learning_rate': 0.15676997258475084, 'subsample': 1.0, 'reg_alpha': 1.819825140531691e-10, 'reg_lambda': 0.5352298892594388, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.741354988532792}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.546119542534599, 'max_leaves': 112.0, 'min_child_weight': 7.013179668523221, 'learning_rate': 0.16675710300059768, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.2164811401689116, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 2.7176712151285414, 'learning_rate': 0.4730651137306373, 'subsample': 0.6142230653199924, 'reg_alpha': 2.1912470459277907e-10, 'reg_lambda': 0.6453779120728887, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.913977497466076, 'min_child_weight': 4.815324993490445, 'learning_rate': 0.10251988822456747, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.12678763427598744, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.394923595194145, 'max_leaves': 38.372401099680964, 'min_child_weight': 3.958095567264041, 'learning_rate': 0.7694796518268654, 'subsample': 0.7452700068147332, 'reg_alpha': 1.007987074702986e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.897186841567359}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.013747034379993, 'max_leaves': 13.634702972705059, 'min_child_weight': 20.0, 'learning_rate': 0.10412339371010831, 'subsample': 0.6128484779836353, 'reg_alpha': 1.2804968673227022e-10, 'reg_lambda': 0.7468958271331156, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 22.272455764862865, 'min_child_weight': 0.37854239444079213, 'learning_rate': 0.7576296265947674, 'subsample': 0.6, 'reg_alpha': 1.5634598885082378e-10, 'reg_lambda': 0.18705707164229518, 'colsample_bylevel': 0.8098007272211507, 'colsample_bytree': 0.7390237399972263}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.88200054995333, 'max_leaves': 11.194347797319173, 'min_child_weight': 0.9442445374385112, 'learning_rate': 0.725520255042715, 'subsample': 1.0, 'reg_alpha': 2.4903164778726464e-10, 'reg_lambda': 0.36198673557635214, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.12782596404077, 'min_child_weight': 20.0, 'learning_rate': 0.1087315858490055, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.3859592977154869, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.846893820419807, 'max_leaves': 66.55969457547837, 'min_child_weight': 8.515582258680274, 'learning_rate': 0.45697474425503276, 'subsample': 0.6, 'reg_alpha': 1.193041850141096e-10, 'reg_lambda': 0.1819583298833097, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.562495677954891, 'min_child_weight': 2.238192989356911, 'learning_rate': 0.17262872595940082, 'subsample': 0.86952437849446, 'reg_alpha': 1.6780681157016672e-10, 'reg_lambda': 0.767824953850523, 'colsample_bylevel': 0.7505986976656855, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.379145008081462, 'max_leaves': 23.791535824522438, 'min_child_weight': 12.161317094329615, 'learning_rate': 0.14611352149154877, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.42432263205706816, 'colsample_bylevel': 0.8708994388248145, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.764132633825596, 'min_child_weight': 1.5672246981009192, 'learning_rate': 0.5399019001874659, 'subsample': 1.0, 'reg_alpha': 9.719486898320394e-10, 'reg_lambda': 0.3292592374063618, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.081461673250836, 'min_child_weight': 6.856285128255422, 'learning_rate': 0.9474807893468329, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7762115114342297}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.902479301304753, 'max_leaves': 16.795009403242553, 'min_child_weight': 2.7798605447612066, 'learning_rate': 0.08325970170936324, 'subsample': 1.0, 'reg_alpha': 2.5532137457585324e-10, 'reg_lambda': 0.0802558660439764, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.578077308076743, 'max_leaves': 93.84485156101327, 'min_child_weight': 3.9726351740973977, 'learning_rate': 0.08300232328783275, 'subsample': 0.6413789371943358, 'reg_alpha': 1e-10, 'reg_lambda': 0.1441306069767763, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 4.797701192383137, 'learning_rate': 0.9504187927705069, 'subsample': 0.6, 'reg_alpha': 4.641883178455979e-10, 'reg_lambda': 0.9693440496499282, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7613941758120709}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.171295690918086, 'max_leaves': 91.53362983403262, 'min_child_weight': 2.011759591542752, 'learning_rate': 0.41670084390238676, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.11886015175142364, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8018439131710153}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 9.474052760476296, 'learning_rate': 0.18931319446727302, 'subsample': 0.6824720897504695, 'reg_alpha': 3.510963778751761e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.103392238639917, 'learning_rate': 0.5834925008451068, 'subsample': 1.0, 'reg_alpha': 1.469404915394095e-10, 'reg_lambda': 0.1709445510261899, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8132778794662239}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.099236108702, 'max_leaves': 112.0, 'min_child_weight': 17.27356405475877, 'learning_rate': 0.13519791219615102, 'subsample': 0.6, 'reg_alpha': 1.3624600465437813e-10, 'reg_lambda': 0.8172951135714507, 'colsample_bylevel': 0.8623851970718304, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 33.92839975084716, 'min_child_weight': 1.1887220009894386, 'learning_rate': 0.05927373932358396, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.8900311574599982, 'colsample_bylevel': 0.7811548010944959, 'colsample_bytree': 0.7000635028862129}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.952683661818348, 'max_leaves': 8.950564160310421, 'min_child_weight': 16.03361971580066, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 4.4008877348315285e-10, 'reg_lambda': 0.1569744441802306, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 22.13728525619448, 'min_child_weight': 15.654591293255205, 'learning_rate': 0.1790385578460117, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.20487636627853795, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.753428657237185, 'max_leaves': 13.71795661989051, 'min_child_weight': 1.2175032969325803, 'learning_rate': 0.4406144064465644, 'subsample': 0.955065265154718, 'reg_alpha': 6.223259021765046e-10, 'reg_lambda': 0.6819339330502672, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.247048978612324, 'max_leaves': 6.556207754931365, 'min_child_weight': 9.83085796132505, 'learning_rate': 0.1156852265633342, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.17816349515738744, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 46.31920313968097, 'min_child_weight': 1.9387439617835092, 'learning_rate': 0.6819104758651362, 'subsample': 1.0, 'reg_alpha': 2.2582509433622264e-10, 'reg_lambda': 0.7841794197063238, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.391932091405052, 'max_leaves': 53.93373781630426, 'min_child_weight': 15.919596477743102, 'learning_rate': 0.35571388456119885, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.63058173088117, 'min_child_weight': 1.1972361572303067, 'learning_rate': 0.22177084257951482, 'subsample': 0.9430029888820484, 'reg_alpha': 5.598703303606574e-10, 'reg_lambda': 0.11658273389685157, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.849974759543672, 'max_leaves': 52.51290901741062, 'min_child_weight': 17.176915630237502, 'learning_rate': 0.49200549821598577, 'subsample': 0.8353927270523821, 'reg_alpha': 1e-10, 'reg_lambda': 0.1545302347729844, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.782926988979669, 'min_child_weight': 1.1096006362235793, 'learning_rate': 0.16033757383284097, 'subsample': 0.6, 'reg_alpha': 3.6421835284550627e-10, 'reg_lambda': 0.9041088072545631, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.749578778340314, 'max_leaves': 9.03153601816755, 'min_child_weight': 8.072445066504375, 'learning_rate': 0.0747230369626712, 'subsample': 0.7763303084367897, 'reg_alpha': 1e-10, 'reg_lambda': 0.07868291961802229, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9486934913070908}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 33.624216104076645, 'min_child_weight': 2.3610586823012794, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 4.1902015179759894e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.338442340555659, 'min_child_weight': 4.142842135782154, 'learning_rate': 0.552619634923005, 'subsample': 0.6, 'reg_alpha': 4.5013558046308535e-10, 'reg_lambda': 0.9166329723063337, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7895710621616921}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.894495011845901, 'max_leaves': 32.51916194928801, 'min_child_weight': 4.600589616256741, 'learning_rate': 0.14275093194500846, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.15241885298304486, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 67.7786673892058, 'min_child_weight': 0.8847216661993242, 'learning_rate': 0.13648516152242224, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.3727578678522182, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9038901687990096}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.815241914958511, 'max_leaves': 4.480440978321455, 'min_child_weight': 20.0, 'learning_rate': 0.5779893361038337, 'subsample': 1.0, 'reg_alpha': 3.867850138724376e-10, 'reg_lambda': 0.37480669972272757, 'colsample_bylevel': 0.7432730894822855, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.692037992504984, 'max_leaves': 7.290942832830851, 'min_child_weight': 3.0254122733269533, 'learning_rate': 0.14396305102492107, 'subsample': 0.6, 'reg_alpha': 3.0823615296075225e-10, 'reg_lambda': 0.11520035721218327, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7079906959047001}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 41.65144697873164, 'min_child_weight': 6.299808022762832, 'learning_rate': 0.5479667687975952, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.719101111625179, 'max_leaves': 37.34250162874937, 'min_child_weight': 13.888860673409905, 'learning_rate': 1.0, 'subsample': 0.6858457328204759, 'reg_alpha': 1e-10, 'reg_lambda': 0.1883192262917697, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8612571424269365}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.132243571834534, 'min_child_weight': 1.3722879766631646, 'learning_rate': 0.073447404197653, 'subsample': 0.6, 'reg_alpha': 2.5444662187509217e-10, 'reg_lambda': 0.7418899758482945, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.49648087356672, 'min_child_weight': 6.735501619366551, 'learning_rate': 0.6331888360040896, 'subsample': 0.6, 'reg_alpha': 4.0997780100905647e-10, 'reg_lambda': 0.09174895568033725, 'colsample_bylevel': 0.8799907446270004, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.457857394271498, 'max_leaves': 10.656695476679335, 'min_child_weight': 2.829710033305991, 'learning_rate': 0.12458679529823519, 'subsample': 0.8054223672648548, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.350369066409724, 'max_leaves': 112.0, 'min_child_weight': 10.598034237409747, 'learning_rate': 0.36684456460703385, 'subsample': 0.6, 'reg_alpha': 1.6225975505284744e-10, 'reg_lambda': 0.3425116060175337, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.7984011076688682, 'learning_rate': 0.21504194284812023, 'subsample': 0.8385345394345524, 'reg_alpha': 1.233827506252215e-10, 'reg_lambda': 0.40790485283064665, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7476907873673901}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.257471011586977, 'min_child_weight': 9.147218542217628, 'learning_rate': 0.11615534699700635, 'subsample': 1.0, 'reg_alpha': 1.1225326423939648e-10, 'reg_lambda': 0.733735457255903, 'colsample_bylevel': 0.714326071535324, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 35.19047550240461, 'max_leaves': 32.80359381590535, 'min_child_weight': 2.083640663410841, 'learning_rate': 0.6791505508429367, 'subsample': 0.6, 'reg_alpha': 1.7834719577953033e-10, 'reg_lambda': 0.19041215040619672, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9154581137150499}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.199259122244477, 'max_leaves': 8.349988876202444, 'min_child_weight': 8.576501949615274, 'learning_rate': 0.0917308759179888, 'subsample': 1.0, 'reg_alpha': 4.1789093104388833e-10, 'reg_lambda': 0.2884866443519453, 'colsample_bylevel': 0.8256093462895716, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 36.368709387398596, 'min_child_weight': 2.222294896408815, 'learning_rate': 0.8599827169087271, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4842932904544648, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 33.56999389182108, 'min_child_weight': 1.1289466944730975, 'learning_rate': 0.06420856210088427, 'subsample': 1.0, 'reg_alpha': 1.420812689935999e-10, 'reg_lambda': 0.8986207544444952, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.731698530240294, 'max_leaves': 9.046123743877274, 'min_child_weight': 16.8825654966515, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1.4090565938777482e-10, 'reg_lambda': 0.155473981158756, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 63.5481738118986, 'min_child_weight': 1.6594323016998827, 'learning_rate': 0.09884300734221511, 'subsample': 1.0, 'reg_alpha': 2.091596330783397e-10, 'reg_lambda': 0.12345691727002878, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.28210020212772, 'max_leaves': 4.778710395762116, 'min_child_weight': 11.485564365684677, 'learning_rate': 0.7981036799421348, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6710687511536642, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.599861626684067, 'min_child_weight': 10.54961947645002, 'learning_rate': 0.07156880625476705, 'subsample': 0.6, 'reg_alpha': 5.688761755965299e-10, 'reg_lambda': 0.1305450390931724, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.735549334077317, 'max_leaves': 11.862498448432156, 'min_child_weight': 1.8066544062766388, 'learning_rate': 1.0, 'subsample': 0.810688691105514, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 43.07479376248346, 'min_child_weight': 16.135786162359917, 'learning_rate': 0.5952958157670594, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.639278135558741, 'max_leaves': 7.050023744770895, 'min_child_weight': 1.1811954075178916, 'learning_rate': 0.1325172558028494, 'subsample': 1.0, 'reg_alpha': 3.0764487600804876e-10, 'reg_lambda': 0.12076932203861296, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.366245724797881, 'max_leaves': 19.56849589307172, 'min_child_weight': 3.1270469552948765, 'learning_rate': 0.06373063006675612, 'subsample': 0.8424080022919634, 'reg_alpha': 1e-10, 'reg_lambda': 0.14529715993349723, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.518735854099845, 'min_child_weight': 6.095052867497793, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 3.1178521420117095e-10, 'reg_lambda': 0.9615614393930139, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.9468525488367863, 'learning_rate': 0.5658324163019994, 'subsample': 1.0, 'reg_alpha': 1.8340470125982364e-10, 'reg_lambda': 0.21237592511562725, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.687796911561852, 'max_leaves': 87.30905249793761, 'min_child_weight': 9.789912709649244, 'learning_rate': 0.13941754771127374, 'subsample': 0.6, 'reg_alpha': 1.091578065157295e-10, 'reg_lambda': 0.6578530319258399, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.22960810418582, 'max_leaves': 23.880060157900147, 'min_child_weight': 4.797178321025514, 'learning_rate': 0.15256314361801587, 'subsample': 1.0, 'reg_alpha': 3.829217885766756e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.716815486168402, 'min_child_weight': 3.973068173875146, 'learning_rate': 0.5170774934599193, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.08987465918240096, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9075450362517551}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.419594429999655, 'min_child_weight': 5.307707038006986, 'learning_rate': 0.031174239915883924, 'subsample': 1.0, 'reg_alpha': 3.421503002696901e-10, 'reg_lambda': 0.2602159468363237, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.771465908051243, 'max_leaves': 9.665252665918036, 'min_child_weight': 3.590913434971162, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.5369084713829999, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.753436261630477}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.320380484474066, 'min_child_weight': 9.513391357446746, 'learning_rate': 0.36202329571617164, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.23029442887311888, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.350804830536838, 'max_leaves': 22.798021361370136, 'min_child_weight': 2.0034408125921535, 'learning_rate': 0.21790577797020325, 'subsample': 0.6, 'reg_alpha': 8.296357633326604e-10, 'reg_lambda': 0.606667503547579, 'colsample_bylevel': 0.8016564661343731, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.989228286647726, 'max_leaves': 112.0, 'min_child_weight': 5.466672333840644, 'learning_rate': 0.4507734341141188, 'subsample': 1.0, 'reg_alpha': 2.8353038139377347e-10, 'reg_lambda': 0.3960964918286845, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 3.4864933084950236, 'learning_rate': 0.1750035870046373, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.3527225035504665, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.089150346255484, 'max_leaves': 8.000530315209032, 'min_child_weight': 2.127423838414978, 'learning_rate': 0.5375954396513606, 'subsample': 0.6, 'reg_alpha': 2.2740628206321607e-10, 'reg_lambda': 0.043447713353149384, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 37.95727368838592, 'min_child_weight': 8.958965377519899, 'learning_rate': 0.1467403963611165, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.044814072192112, 'min_child_weight': 3.7622459991031314, 'learning_rate': 0.22738934159979607, 'subsample': 0.6, 'reg_alpha': 1.0725924539007655e-09, 'reg_lambda': 0.53252296582018, 'colsample_bylevel': 0.714537964937793, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.669784759857563, 'max_leaves': 75.07843708179084, 'min_child_weight': 5.06599422690962, 'learning_rate': 0.34692465065143613, 'subsample': 0.7484365334811699, 'reg_alpha': 1e-10, 'reg_lambda': 0.26235891259673466, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.572799430426247, 'min_child_weight': 7.012125248662325, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 3.0409504602031764e-10, 'reg_lambda': 0.9142687412233458, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.566211456160454, 'max_leaves': 12.358311867820833, 'min_child_weight': 2.7180798739021648, 'learning_rate': 0.06435967704688629, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.15281299682019905, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.74351049521994, 'min_child_weight': 2.0307349784492383, 'learning_rate': 0.09826620890974447, 'subsample': 0.6, 'reg_alpha': 7.133016957586808e-10, 'reg_lambda': 0.21251129028745933, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9691523474037848}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.780674423904234, 'max_leaves': 34.73185272581739, 'min_child_weight': 9.38552628183171, 'learning_rate': 0.8027883518822366, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.6574339935369315, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.182326734408775, 'max_leaves': 16.954141312527717, 'min_child_weight': 5.721763502937039, 'learning_rate': 0.14428951365425138, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.2619569004202669, 'colsample_bylevel': 0.9066262423885324, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.91174871252396, 'min_child_weight': 3.331056325883941, 'learning_rate': 0.5467269651029486, 'subsample': 0.6, 'reg_alpha': 3.49302019816539e-10, 'reg_lambda': 0.5333402022287838, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.978650541108053}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.73667959579732, 'max_leaves': 17.455309330897357, 'min_child_weight': 8.76058918805226, 'learning_rate': 0.5820554352674313, 'subsample': 0.6, 'reg_alpha': 1.939272730115089e-10, 'reg_lambda': 0.8532712475837928, 'colsample_bylevel': 0.6667450246998972, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.39747563734558, 'min_child_weight': 2.175597565705256, 'learning_rate': 0.13553170903751446, 'subsample': 1.0, 'reg_alpha': 1.0323486007564743e-10, 'reg_lambda': 0.16373708435739895, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.717783998378952, 'max_leaves': 6.860747859560065, 'min_child_weight': 5.763744678108043, 'learning_rate': 0.06571894251522498, 'subsample': 0.6, 'reg_alpha': 5.127930006044354e-10, 'reg_lambda': 0.46238033060494343, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 44.26315105042944, 'min_child_weight': 3.306794033410687, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.3021584980974033, 'colsample_bylevel': 0.6734404885123838, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.202548396526064, 'min_child_weight': 4.120057061623893, 'learning_rate': 0.4307397203866584, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.7019472204397705, 'colsample_bylevel': 0.8865905608464172, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.885669820376428, 'max_leaves': 32.99937210232497, 'min_child_weight': 4.626032170573409, 'learning_rate': 0.18314300762779792, 'subsample': 0.9560440784716381, 'reg_alpha': 6.559449950858558e-10, 'reg_lambda': 0.19903511571402865, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.500429481683629, 'min_child_weight': 2.7899373508170533, 'learning_rate': 0.3948984137110552, 'subsample': 0.6, 'reg_alpha': 1.6997567306187507e-10, 'reg_lambda': 0.1372912308051872, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.259804897864886, 'max_leaves': 26.405824174677697, 'min_child_weight': 6.831521326487335, 'learning_rate': 0.19976521849006576, 'subsample': 1.0, 'reg_alpha': 1.1778188333401823e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.528760210740049, 'min_child_weight': 0.652689318514042, 'learning_rate': 0.3070669952508248, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.21368467228150087, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8439488870972772}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.969700245947581, 'max_leaves': 40.33576715505025, 'min_child_weight': 20.0, 'learning_rate': 0.25690474429507226, 'subsample': 0.6, 'reg_alpha': 2.440548666191705e-10, 'reg_lambda': 0.6538239020780983, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.743161842795356, 'max_leaves': 6.749518122312542, 'min_child_weight': 1.4011220414393912, 'learning_rate': 0.17924364991254246, 'subsample': 0.9742061581572079, 'reg_alpha': 5.836474070127474e-10, 'reg_lambda': 0.6020258004488311, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 44.99259255601056, 'min_child_weight': 13.60303809944363, 'learning_rate': 0.4401102517989356, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.23207003112027802, 'colsample_bylevel': 0.6251230258106092, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.692346535399797, 'min_child_weight': 1.336921041309091, 'learning_rate': 0.5754767385165664, 'subsample': 0.6, 'reg_alpha': 1.396725894222284e-10, 'reg_lambda': 0.19362790033725963, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8474500537266935}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.934391831363136, 'max_leaves': 64.71779450550397, 'min_child_weight': 14.25627686509258, 'learning_rate': 0.13708107142561485, 'subsample': 1.0, 'reg_alpha': 1.4333560347817879e-10, 'reg_lambda': 0.7215496630496998, 'colsample_bylevel': 0.8933900530295155, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.715523626154006, 'min_child_weight': 1.2492609943480657, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.3365276775054062, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.893984130321606, 'max_leaves': 18.16744276867679, 'min_child_weight': 15.256632999749264, 'learning_rate': 0.07158196242351685, 'subsample': 0.6, 'reg_alpha': 2.0208799491207536e-10, 'reg_lambda': 0.4151579664443085, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.150769093426348, 'max_leaves': 15.080322050228967, 'min_child_weight': 0.6737738443003116, 'learning_rate': 0.38322535284895515, 'subsample': 0.6480276889568756, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.137389494411153, 'min_child_weight': 20.0, 'learning_rate': 0.20585007570587824, 'subsample': 0.6, 'reg_alpha': 2.537759818946123e-10, 'reg_lambda': 0.07192683372634469, 'colsample_bylevel': 0.9257825351011817, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.227467521005282, 'max_leaves': 5.950668389105266, 'min_child_weight': 1.2763180031565882, 'learning_rate': 0.1844453199557648, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 51.032640195949206, 'min_child_weight': 14.933203531198576, 'learning_rate': 0.42769839817724115, 'subsample': 0.65901388861664, 'reg_alpha': 3.8146513230151983e-10, 'reg_lambda': 0.08338500548332875, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 25.350864205450492, 'max_leaves': 15.854886574084126, 'min_child_weight': 2.537215171734275, 'learning_rate': 0.17989862241477342, 'subsample': 1.0, 'reg_alpha': 1.641109543510748e-10, 'reg_lambda': 0.41996567938004403, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.153610302264806, 'min_child_weight': 7.511982713962109, 'learning_rate': 0.4385079042711506, 'subsample': 0.6, 'reg_alpha': 1.2199097234769012e-10, 'reg_lambda': 0.3326751520543642, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.707928004215199, 'max_leaves': 7.0647603277030555, 'min_child_weight': 13.540534975907871, 'learning_rate': 0.06196802772123945, 'subsample': 0.7816758869536823, 'reg_alpha': 1.2036657946530167e-10, 'reg_lambda': 0.3321470804430305, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 42.98494283462149, 'min_child_weight': 1.4075896222403406, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1.6632569425108754e-10, 'reg_lambda': 0.4206333713938329, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.679006374446622, 'min_child_weight': 1.4748753147754456, 'learning_rate': 0.46320751912394365, 'subsample': 1.0, 'reg_alpha': 1.3403182748959234e-10, 'reg_lambda': 0.4841265098969039, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.551955612997484, 'max_leaves': 10.97143136998497, 'min_child_weight': 12.922798504205863, 'learning_rate': 0.1703058880511415, 'subsample': 0.6, 'reg_alpha': 1.49367917077379e-10, 'reg_lambda': 0.28858602739007744, 'colsample_bylevel': 0.6166207612875354, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.89400293860962, 'max_leaves': 76.85042028237918, 'min_child_weight': 1.5272931103773775, 'learning_rate': 0.1502794904743383, 'subsample': 0.6, 'reg_alpha': 4.1309290816061393e-10, 'reg_lambda': 0.1979246850363465, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 12.479278785563878, 'learning_rate': 0.5249350237172921, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.7058854039338956, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.69698212315541, 'max_leaves': 30.78386053134755, 'min_child_weight': 5.074524063581056, 'learning_rate': 0.41142882121806296, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.757901147863371, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.864854946226728, 'min_child_weight': 3.755921988518488, 'learning_rate': 0.19173904167145875, 'subsample': 1.0, 'reg_alpha': 2.0980161920068345e-10, 'reg_lambda': 0.18434085584807272, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.848597153022769, 'min_child_weight': 6.782009506706758, 'learning_rate': 0.7690686834238974, 'subsample': 1.0, 'reg_alpha': 6.095961906180388e-10, 'reg_lambda': 0.1676895816688764, 'colsample_bylevel': 0.656200790338435, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.769097789268128, 'max_leaves': 62.63220252012377, 'min_child_weight': 2.8103051894607702, 'learning_rate': 0.10257467193328451, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.8331593701584231, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.341851537536947, 'max_leaves': 7.9549339185220855, 'min_child_weight': 1.6356928192692872, 'learning_rate': 0.1435829949042858, 'subsample': 0.6, 'reg_alpha': 4.943291754772596e-10, 'reg_lambda': 0.24912619246516765, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 38.174838651964166, 'min_child_weight': 11.652259083820356, 'learning_rate': 0.549417206048365, 'subsample': 0.8413224855381336, 'reg_alpha': 1e-10, 'reg_lambda': 0.5608087405940057, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 32.844344642776655, 'max_leaves': 7.435467884191715, 'min_child_weight': 10.118821380894644, 'learning_rate': 0.49347324905937034, 'subsample': 0.6, 'reg_alpha': 1.4476547077019903e-10, 'reg_lambda': 0.9635138334205291, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 40.84185737285711, 'min_child_weight': 1.883570802787029, 'learning_rate': 0.15986067744652624, 'subsample': 0.8637644567222331, 'reg_alpha': 1.3829302517846174e-10, 'reg_lambda': 0.14500274038555777, 'colsample_bylevel': 0.7413985160575197, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.673511668016818, 'max_leaves': 37.9075781495128, 'min_child_weight': 5.541281620294833, 'learning_rate': 0.5247824042065183, 'subsample': 0.6, 'reg_alpha': 4.675159393431011e-10, 'reg_lambda': 0.1648612537074704, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.01101873690975, 'min_child_weight': 3.4395502372348625, 'learning_rate': 0.15032319541210235, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.8474528920741775, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9404776022210654}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.3967028627257285, 'max_leaves': 62.06487802890267, 'min_child_weight': 1.5726387563014037, 'learning_rate': 0.1063277512553378, 'subsample': 1.0, 'reg_alpha': 1.3336303569889621e-10, 'reg_lambda': 0.5209909333710976, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.892917354726762, 'min_child_weight': 12.119449832519217, 'learning_rate': 0.7419226586192765, 'subsample': 0.6, 'reg_alpha': 1.501169704879528e-10, 'reg_lambda': 0.26816617583218993, 'colsample_bylevel': 0.8104099300461539, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.462116120798214, 'max_leaves': 4.508766508226891, 'min_child_weight': 1.454115895592969, 'learning_rate': 0.10363685324526795, 'subsample': 1.0, 'reg_alpha': 2.789490634462332e-10, 'reg_lambda': 0.32151861872674037, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 67.3528598725423, 'min_child_weight': 13.107288469532936, 'learning_rate': 0.7611864450349017, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4345382758816599, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 52.2412252870802, 'min_child_weight': 1.9172310056022255, 'learning_rate': 0.30063457666754106, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.591759039149103, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.037136918609308, 'max_leaves': 5.8130014592464105, 'min_child_weight': 9.941168516458168, 'learning_rate': 0.26240151339480505, 'subsample': 1.0, 'reg_alpha': 5.876317795473862e-10, 'reg_lambda': 0.23609634496883092, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.510922937058934, 'max_leaves': 5.194513718114398, 'min_child_weight': 4.11999421431037, 'learning_rate': 0.047424222395738826, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.6531488364006003, 'colsample_bylevel': 0.6012199096561371, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 58.46135659775531, 'min_child_weight': 4.626102737103134, 'learning_rate': 1.0, 'subsample': 0.7436412522705718, 'reg_alpha': 6.060415715941346e-10, 'reg_lambda': 0.21390552728425885, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.729081872156545, 'min_child_weight': 16.949305498584437, 'learning_rate': 0.4335024860395057, 'subsample': 1.0, 'reg_alpha': 2.1920216562041152e-10, 'reg_lambda': 0.2908205055185416, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.63330594595833, 'max_leaves': 10.570415030246217, 'min_child_weight': 1.1245013262202443, 'learning_rate': 0.1819758142959767, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.48040679248617496, 'colsample_bylevel': 0.6852974283236508, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.734092177043118, 'min_child_weight': 0.4105803849310426, 'learning_rate': 0.2487025714893695, 'subsample': 0.6, 'reg_alpha': 1.8084372564777363e-10, 'reg_lambda': 0.30282681441412307, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.787501657000162, 'max_leaves': 31.197395021881192, 'min_child_weight': 20.0, 'learning_rate': 0.31719401783403456, 'subsample': 1.0, 'reg_alpha': 1.1070361895323774e-10, 'reg_lambda': 0.46135989151314305, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.052203225026906, 'max_leaves': 52.27780255709741, 'min_child_weight': 5.488784283319861, 'learning_rate': 0.13725607202648551, 'subsample': 1.0, 'reg_alpha': 2.3738953507846945e-10, 'reg_lambda': 0.4613932481990433, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.808934269854639, 'min_child_weight': 3.472447727558029, 'learning_rate': 0.5747430094105196, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.30280492137825826, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9333559510081018}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.22234044798619, 'max_leaves': 48.90855469439023, 'min_child_weight': 1.6241542075930187, 'learning_rate': 0.3902966564718263, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.41570186552195126, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.209104332037218, 'min_child_weight': 11.735041181783041, 'learning_rate': 0.2021205321344171, 'subsample': 0.6, 'reg_alpha': 3.5991880644489716e-10, 'reg_lambda': 0.3360873689367482, 'colsample_bylevel': 0.8201985968594593, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.859542130024499, 'max_leaves': 14.710068300559154, 'min_child_weight': 20.0, 'learning_rate': 0.5105688833976743, 'subsample': 0.6, 'reg_alpha': 2.1976875752471342e-10, 'reg_lambda': 0.2197615352960784, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7315694500973431}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.644249409438455, 'min_child_weight': 0.8609749214201733, 'learning_rate': 0.15450798209910785, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.635744312839553, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.723832481117773, 'max_leaves': 7.319029104373567, 'min_child_weight': 1.970217158825528, 'learning_rate': 0.07060903163722963, 'subsample': 0.6, 'reg_alpha': 1.2005622596017893e-10, 'reg_lambda': 0.14569042441551971, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 41.49161241142644, 'min_child_weight': 9.673815105250581, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1.66755657476984e-10, 'reg_lambda': 0.9589658812915617, 'colsample_bylevel': 0.7687137614798858, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 62.224177860470796, 'min_child_weight': 5.0225858773384795, 'learning_rate': 0.092294195784386, 'subsample': 1.0, 'reg_alpha': 5.607171053793339e-10, 'reg_lambda': 0.33863433573418883, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8076898565416822}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.951766672447764, 'max_leaves': 4.8803910195097275, 'min_child_weight': 3.7947616978866097, 'learning_rate': 0.8547337915014926, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.41257525153928165, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 33.51940934035522, 'min_child_weight': 9.79435607695465, 'learning_rate': 0.1688695876971922, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.4891752303570354, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 30.064398891792642, 'max_leaves': 9.05977536009289, 'min_child_weight': 1.9459693278372658, 'learning_rate': 0.4671472760259541, 'subsample': 0.6, 'reg_alpha': 3.341637244790787e-10, 'reg_lambda': 0.28560756468269766, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.715077882600026, 'max_leaves': 20.275585449579545, 'min_child_weight': 17.574731604419206, 'learning_rate': 0.24330544952376504, 'subsample': 0.6, 'reg_alpha': 1.6852147041648113e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.977536386398894, 'min_child_weight': 1.0844840729674485, 'learning_rate': 0.32423017261133724, 'subsample': 1.0, 'reg_alpha': 1.1879824478576984e-10, 'reg_lambda': 0.0900765121131067, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.610912692699287, 'max_leaves': 56.2540328484094, 'min_child_weight': 1.5266606653935035, 'learning_rate': 0.7800738946297662, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.3794434573096395, 'colsample_bylevel': 0.7800335275199769, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.398338633693251, 'min_child_weight': 12.48444853772243, 'learning_rate': 0.10112755783708179, 'subsample': 0.6, 'reg_alpha': 2.56081307107267e-10, 'reg_lambda': 0.36820280743794825, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.626440222416523, 'max_leaves': 28.827238042900447, 'min_child_weight': 9.194291540734088, 'learning_rate': 0.781456511518355, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.28525544388373414, 'colsample_bylevel': 0.7691295447178278, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.534422977833888, 'min_child_weight': 2.0729728252829074, 'learning_rate': 0.10094863467589958, 'subsample': 1.0, 'reg_alpha': 5.906126163870651e-10, 'reg_lambda': 0.4897790707977342, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.415019678122866, 'max_leaves': 43.44599015428982, 'min_child_weight': 6.001517483020859, 'learning_rate': 0.1702025094212049, 'subsample': 0.6, 'reg_alpha': 2.2564017941118736e-10, 'reg_lambda': 0.03609629861380114, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.989789339549273, 'min_child_weight': 3.175782885843846, 'learning_rate': 0.46348886490942115, 'subsample': 0.7218009398095329, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6210789656600233, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.912008290320088, 'min_child_weight': 0.49308431106603934, 'learning_rate': 0.45305595943557103, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.2712416839203034, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.701942564647663, 'max_leaves': 51.36635537603008, 'min_child_weight': 20.0, 'learning_rate': 0.1741219075777058, 'subsample': 0.6106199776994624, 'reg_alpha': 2.7291772986078514e-10, 'reg_lambda': 0.5150836118773726, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.96677124281984, 'max_leaves': 49.087495269959994, 'min_child_weight': 4.638708131801297, 'learning_rate': 0.34459894057351287, 'subsample': 0.6332959176904792, 'reg_alpha': 1.5341267086995546e-10, 'reg_lambda': 0.3343895432177906, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.186470040007505, 'min_child_weight': 4.1087983917343625, 'learning_rate': 0.2289240000711507, 'subsample': 0.6, 'reg_alpha': 1.3049805326162112e-10, 'reg_lambda': 0.4178125455148424, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.925235592914283, 'max_leaves': 52.12805365171965, 'min_child_weight': 18.078822763162147, 'learning_rate': 0.1923724165928517, 'subsample': 1.0, 'reg_alpha': 5.028653320734067e-10, 'reg_lambda': 0.9005570266233824, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.825621667280486, 'min_child_weight': 1.05424544293373, 'learning_rate': 0.4100742159065889, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.15513969922506513, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7609141256721013}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.3135079900541, 'max_leaves': 108.54305374452868, 'min_child_weight': 4.266507904347988, 'learning_rate': 0.18949339656722627, 'subsample': 0.6, 'reg_alpha': 2.877335757793246e-10, 'reg_lambda': 0.35791357642571026, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 4.467240408073959, 'learning_rate': 0.4163045748582733, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.39035162521802147, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.056825838911868, 'max_leaves': 33.14348081272898, 'min_child_weight': 5.057047962962855, 'learning_rate': 0.33645867667602414, 'subsample': 0.6, 'reg_alpha': 1.2843606978229306e-10, 'reg_lambda': 0.4995756847715108, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.162535478469959, 'min_child_weight': 3.768901669760626, 'learning_rate': 0.2344625755403822, 'subsample': 1.0, 'reg_alpha': 1.5587564247434702e-10, 'reg_lambda': 0.2796616218607, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.491451519667715, 'max_leaves': 48.669043814043, 'min_child_weight': 1.5755915123610622, 'learning_rate': 1.0, 'subsample': 0.8798955816985884, 'reg_alpha': 1e-10, 'reg_lambda': 0.180178955514041, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.2396606760331315, 'min_child_weight': 12.096737233059304, 'learning_rate': 0.07187860596153797, 'subsample': 0.6, 'reg_alpha': 2.990203080509533e-10, 'reg_lambda': 0.7754076820280104, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.3966623034869405, 'min_child_weight': 3.666696593079129, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 3.454555236885971e-10, 'reg_lambda': 0.3695058927794985, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.886562169156834, 'max_leaves': 47.474495982237, 'min_child_weight': 5.198007532896237, 'learning_rate': 0.06130518988202018, 'subsample': 0.8202476231460398, 'reg_alpha': 1e-10, 'reg_lambda': 0.37810532653329915, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.71748009775753, 'max_leaves': 6.908693554540712, 'min_child_weight': 0.8420093551903199, 'learning_rate': 0.4492708441435043, 'subsample': 0.6, 'reg_alpha': 1.505537684943715e-10, 'reg_lambda': 0.41707094451801985, 'colsample_bylevel': 0.9292963653687759, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 43.95596887157142, 'min_child_weight': 20.0, 'learning_rate': 0.17558888791628677, 'subsample': 1.0, 'reg_alpha': 1.3297611274966825e-10, 'reg_lambda': 0.3349841269974494, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.190960403745044, 'max_leaves': 112.0, 'min_child_weight': 4.956253363341878, 'learning_rate': 0.5629345575917446, 'subsample': 0.8201562160216881, 'reg_alpha': 1.370411032534789e-10, 'reg_lambda': 0.5350009308693483, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 3.8455492716818904, 'learning_rate': 0.1401352374490043, 'subsample': 0.6, 'reg_alpha': 1.46087957692261e-10, 'reg_lambda': 0.26114374421432435, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 22.297377056661702, 'min_child_weight': 10.403293127105828, 'learning_rate': 0.33056008364250133, 'subsample': 0.6, 'reg_alpha': 5.664303880600502e-10, 'reg_lambda': 0.09529757830070706, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8078002238538025}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.529199325588173, 'max_leaves': 13.61946376270696, 'min_child_weight': 1.8320657006203755, 'learning_rate': 0.23864638170192706, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.047070171911199, 'max_leaves': 12.645728983463016, 'min_child_weight': 1.1937627739433123, 'learning_rate': 0.05302581678213084, 'subsample': 1.0, 'reg_alpha': 2.211549275606117e-10, 'reg_lambda': 0.5531996145124999, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7570672677408667}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.014299153788738, 'min_child_weight': 15.965916283946168, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.25255286261992443, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.770275690516797, 'max_leaves': 14.767379912007174, 'min_child_weight': 0.6603807017141722, 'learning_rate': 0.42641715333402225, 'subsample': 0.6, 'reg_alpha': 2.648867286056271e-10, 'reg_lambda': 0.25263610574123607, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.564129902265236, 'min_child_weight': 20.0, 'learning_rate': 0.18499951814690574, 'subsample': 0.7047897808332612, 'reg_alpha': 1e-10, 'reg_lambda': 0.5530173362807906, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 5.87722269706751, 'learning_rate': 0.5498166987895353, 'subsample': 0.6, 'reg_alpha': 2.533254988448533e-10, 'reg_lambda': 0.3675156579692296, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8070407671666433}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.269522896874669, 'max_leaves': 91.22668283842636, 'min_child_weight': 3.242946114868199, 'learning_rate': 0.14347866856362346, 'subsample': 0.94036326673487, 'reg_alpha': 1e-10, 'reg_lambda': 0.380152908361439, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 37.90567846962617, 'min_child_weight': 11.182514282264586, 'learning_rate': 0.07769123449040623, 'subsample': 0.6, 'reg_alpha': 2.694741630672166e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.343471483258908, 'max_leaves': 8.011420216893233, 'min_child_weight': 1.704403502698725, 'learning_rate': 1.0, 'subsample': 0.6410438323997548, 'reg_alpha': 1e-10, 'reg_lambda': 0.1229903123693115, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9783811990825795}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.276299466694401, 'max_leaves': 9.690268303645999, 'min_child_weight': 20.0, 'learning_rate': 0.3525271970903098, 'subsample': 0.6357052084329575, 'reg_alpha': 1e-10, 'reg_lambda': 0.15179850914517098, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7812246315517019}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.338484065746407, 'min_child_weight': 0.8921196494829317, 'learning_rate': 0.2237755513545816, 'subsample': 0.6, 'reg_alpha': 5.07612575844082e-10, 'reg_lambda': 0.9203789090692467, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.860336384617407, 'max_leaves': 12.304282743660075, 'min_child_weight': 17.21723886955053, 'learning_rate': 0.2959768741716963, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.680700627030976, 'min_child_weight': 1.1070019215089069, 'learning_rate': 0.2665308501454305, 'subsample': 1.0, 'reg_alpha': 4.3643529836986513e-10, 'reg_lambda': 0.10119089309247543, 'colsample_bylevel': 0.8343032867817274, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.30307450898924, 'max_leaves': 6.223270347342883, 'min_child_weight': 17.146334580522247, 'learning_rate': 0.736590850565274, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.4119721743330009, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 48.797224269114004, 'min_child_weight': 1.111579645326725, 'learning_rate': 0.10709740398734242, 'subsample': 0.6, 'reg_alpha': 2.0838704530054768e-10, 'reg_lambda': 0.33913005525572204, 'colsample_bylevel': 0.6893201745104006, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.304279227203534, 'max_leaves': 14.950972158263513, 'min_child_weight': 13.011903434683846, 'learning_rate': 0.2659327304283418, 'subsample': 0.6, 'reg_alpha': 1.0578582471786614e-09, 'reg_lambda': 0.1011325758100488, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7379179247090031}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.311610215846226, 'min_child_weight': 1.464775434842702, 'learning_rate': 0.29664256734891153, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9371120392926239, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.366679421048463, 'max_leaves': 38.17899783945662, 'min_child_weight': 3.514167720795613, 'learning_rate': 0.1774493770599842, 'subsample': 0.6, 'reg_alpha': 2.9372658390076037e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7377520330803834, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.954067314799369, 'min_child_weight': 5.423621757972091, 'learning_rate': 0.4445604104301968, 'subsample': 0.7039706589983125, 'reg_alpha': 1e-10, 'reg_lambda': 0.033658038294525246, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.84435625505032, 'min_child_weight': 0.515714662252273, 'learning_rate': 0.11422707562418603, 'subsample': 0.6140056536058407, 'reg_alpha': 3.503600194816634e-10, 'reg_lambda': 0.7975630854203108, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.435044992990552, 'max_leaves': 34.33583067769469, 'min_child_weight': 20.0, 'learning_rate': 0.6906153157234998, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.17517378725188001, 'colsample_bylevel': 0.7392030617272324, 'colsample_bytree': 0.7190006461654493}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 50.25535082690005, 'min_child_weight': 3.0150293199814997, 'learning_rate': 0.7408731012986177, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.16437473817854362, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.9020949604362025, 'max_leaves': 6.042706176156441, 'min_child_weight': 6.321502874070633, 'learning_rate': 0.1064783803840288, 'subsample': 1.0, 'reg_alpha': 3.9891101531645045e-10, 'reg_lambda': 0.8499611789106875, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.736230874279576, 'max_leaves': 34.704702689884265, 'min_child_weight': 4.395204143848397, 'learning_rate': 0.55117403563106, 'subsample': 1.0, 'reg_alpha': 5.782956195338411e-10, 'reg_lambda': 0.5091954127442696, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.750350681296394, 'min_child_weight': 4.336434870345284, 'learning_rate': 0.14312533391753232, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.27437824997755306, 'colsample_bylevel': 0.8672253281426223, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 48.73741304568971, 'min_child_weight': 3.3941280433963157, 'learning_rate': 1.0, 'subsample': 0.9688753203485702, 'reg_alpha': 3.2620360162238214e-10, 'reg_lambda': 0.14604595342325566, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.219376970303747, 'max_leaves': 6.230907630282495, 'min_child_weight': 5.615438271031896, 'learning_rate': 0.052954081988403935, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.9566314092967086, 'colsample_bylevel': 0.6954559942970352, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.12985329169118, 'max_leaves': 4.0, 'min_child_weight': 3.2478779647021296, 'learning_rate': 0.30631151747501195, 'subsample': 0.6, 'reg_alpha': 2.3767588018447156e-10, 'reg_lambda': 0.13491707117825702, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 93.17384081607815, 'min_child_weight': 5.868298230047037, 'learning_rate': 0.25753836664925506, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7316529052927159}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.827010453166032, 'max_leaves': 4.5128227706767765, 'min_child_weight': 5.802880541001149, 'learning_rate': 0.4856886455921922, 'subsample': 0.6, 'reg_alpha': 2.0408087027846167e-10, 'reg_lambda': 0.43397931401644096, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 67.29232107226666, 'min_child_weight': 3.2844923098110193, 'learning_rate': 0.16242291972912756, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.32193273212113893, 'colsample_bylevel': 0.9987681699252063, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.465529218305875, 'max_leaves': 11.387870173684764, 'min_child_weight': 3.1840528868602593, 'learning_rate': 0.3365458910298727, 'subsample': 0.6741751487715507, 'reg_alpha': 1e-10, 'reg_lambda': 0.04246886907683947, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 26.666823048998346, 'min_child_weight': 5.98592962771562, 'learning_rate': 0.23440181561856335, 'subsample': 0.6, 'reg_alpha': 2.5743676106261083e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6590422188237983, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.122069795641774, 'min_child_weight': 2.9913821776248186, 'learning_rate': 0.42677883781814485, 'subsample': 1.0, 'reg_alpha': 4.818558248058781e-10, 'reg_lambda': 0.31577749254131005, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.4912405490854495, 'max_leaves': 16.757374971574716, 'min_child_weight': 6.371474916924085, 'learning_rate': 0.18484273564188283, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4424385826899724, 'colsample_bylevel': 0.7474722005553772, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.972771015314417, 'max_leaves': 5.924565327433246, 'min_child_weight': 5.600188229303716, 'learning_rate': 0.36008578933276225, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.18384029364401097, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8076385305089251}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 51.25748507159816, 'min_child_weight': 3.4033706959953367, 'learning_rate': 0.21907825921857849, 'subsample': 1.0, 'reg_alpha': 1.119099195536391e-09, 'reg_lambda': 0.7599647687460163, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.358235674644922, 'max_leaves': 6.2972034582317615, 'min_child_weight': 4.647159260951677, 'learning_rate': 0.5846373170194977, 'subsample': 0.6, 'reg_alpha': 1.8634373352224764e-10, 'reg_lambda': 0.5487458480046747, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 48.22431430727343, 'min_child_weight': 4.101326303107404, 'learning_rate': 0.13493317241283528, 'subsample': 1.0, 'reg_alpha': 1.0743615852155714e-10, 'reg_lambda': 0.25460264848178005, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.176991681268096, 'max_leaves': 12.347302744267543, 'min_child_weight': 9.63216010878773, 'learning_rate': 0.1448903759090454, 'subsample': 1.0, 'reg_alpha': 3.9894506510435146e-10, 'reg_lambda': 0.3688209075554406, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.59470907260339, 'min_child_weight': 1.9787375102165992, 'learning_rate': 0.5444596813379132, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.37880755505805813, 'colsample_bylevel': 0.8703433491477871, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.566951612295144, 'max_leaves': 7.3152194725059445, 'min_child_weight': 11.382492410293944, 'learning_rate': 0.1493420585697614, 'subsample': 1.0, 'reg_alpha': 1.1533250998395328e-10, 'reg_lambda': 0.7163418064680527, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 41.513220480668345, 'min_child_weight': 1.6744589694989378, 'learning_rate': 0.5282300823482974, 'subsample': 0.6, 'reg_alpha': 1.7358553019422256e-10, 'reg_lambda': 0.19503558913338584, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.158762882083731, 'max_leaves': 12.524961787011733, 'min_child_weight': 3.379131775517827, 'learning_rate': 0.39792760024137047, 'subsample': 0.6, 'reg_alpha': 2.060812977301683e-10, 'reg_lambda': 0.08421388319070047, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.24584793077207, 'min_child_weight': 5.640359056062426, 'learning_rate': 0.1982445245027461, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.199655871109645, 'min_child_weight': 9.280999956754496, 'learning_rate': 0.7624800496542417, 'subsample': 0.6, 'reg_alpha': 3.07660465355359e-10, 'reg_lambda': 0.2424392645821093, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.832593405856908, 'max_leaves': 10.76886612427544, 'min_child_weight': 2.053605926137216, 'learning_rate': 0.10346102554701836, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5762768934569708, 'colsample_bylevel': 0.7183725576984297, 'colsample_bytree': 0.8744703779554681}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 23.11214313766519, 'min_child_weight': 1.8633191448867188, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.2820413423752896, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7927885745178497}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.639411801093817, 'max_leaves': 13.139340519734056, 'min_child_weight': 10.228798734759422, 'learning_rate': 0.05652358137600242, 'subsample': 0.6, 'reg_alpha': 5.739728854243442e-10, 'reg_lambda': 0.49536052079722015, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.735186934852846, 'min_child_weight': 16.672285056875616, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.0770030414212406, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.494788675975869, 'max_leaves': 34.764947915992536, 'min_child_weight': 1.1431856189269132, 'learning_rate': 0.07731873687762365, 'subsample': 0.6406711775947924, 'reg_alpha': 2.17786535346942e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7569946840931042, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.255802178378981, 'max_leaves': 14.16696021719157, 'min_child_weight': 1.0607223685437626, 'learning_rate': 0.10270669853795245, 'subsample': 1.0, 'reg_alpha': 1.0680893878581227e-10, 'reg_lambda': 0.09786021159524626, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.435672449909532, 'min_child_weight': 17.968430832505756, 'learning_rate': 0.7680800670193758, 'subsample': 0.6, 'reg_alpha': 1.8743800960649853e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8307731308243064, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.944564873038795, 'max_leaves': 38.94887337124944, 'min_child_weight': 4.8998441790646385, 'learning_rate': 0.35143664396721513, 'subsample': 0.6, 'reg_alpha': 1.326690779053522e-09, 'reg_lambda': 0.14742598533493123, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.7968447490648405, 'min_child_weight': 3.889820944328206, 'learning_rate': 0.22446995568205044, 'subsample': 0.71682653228837, 'reg_alpha': 1e-10, 'reg_lambda': 0.947676530212527, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7495286423359218}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.479295547527434, 'max_leaves': 57.27304009657904, 'min_child_weight': 20.0, 'learning_rate': 0.272341607479921, 'subsample': 0.6, 'reg_alpha': 7.289400277316984e-10, 'reg_lambda': 0.5452342250783129, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8230578145457236}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.302290891395454, 'min_child_weight': 0.9372668287836375, 'learning_rate': 0.28966182812218827, 'subsample': 0.9680971618792087, 'reg_alpha': 1e-10, 'reg_lambda': 0.2562424364048376, 'colsample_bylevel': 0.7400765378906067, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.211731037450869, 'max_leaves': 41.1771582362288, 'min_child_weight': 12.73596665797523, 'learning_rate': 0.5155305957838865, 'subsample': 0.6, 'reg_alpha': 8.591665232272287e-10, 'reg_lambda': 0.2712643538172769, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.374921724429082, 'min_child_weight': 1.4965111815627485, 'learning_rate': 0.1530209235717975, 'subsample': 0.9310634871065326, 'reg_alpha': 1e-10, 'reg_lambda': 0.5150405657039638, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.56016973261279, 'max_leaves': 112.0, 'min_child_weight': 6.479758070439916, 'learning_rate': 0.2919268100039037, 'subsample': 1.0, 'reg_alpha': 1.1918964936793464e-10, 'reg_lambda': 0.8152880736421626, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 2.9413932286481668, 'learning_rate': 0.2702285819357066, 'subsample': 0.6, 'reg_alpha': 1.6796806602219062e-10, 'reg_lambda': 0.17136537472114607, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.17105020928386, 'min_child_weight': 1.803880936687408, 'learning_rate': 0.7316708362518414, 'subsample': 0.9755249137224307, 'reg_alpha': 6.717520055202026e-10, 'reg_lambda': 0.8353035021057306, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8625156516187483}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.933453371218656, 'max_leaves': 24.950872242312933, 'min_child_weight': 10.565839531887615, 'learning_rate': 0.10781756493191208, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.16725914101062409, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.2768263462447, 'max_leaves': 21.79198414977868, 'min_child_weight': 3.1761457738178125, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.48276713883421263, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.93532212300649, 'min_child_weight': 6.000831784480794, 'learning_rate': 0.05589789315432749, 'subsample': 1.0, 'reg_alpha': 3.055016108773678e-10, 'reg_lambda': 0.2893986251482398, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8713427103122454}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.670684588641801, 'min_child_weight': 4.766993288461391, 'learning_rate': 0.47284231960292733, 'subsample': 1.0, 'reg_alpha': 2.559674243096934e-10, 'reg_lambda': 0.21577446510487375, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.975576717453707, 'max_leaves': 65.01794609833095, 'min_child_weight': 3.998226000821996, 'learning_rate': 0.16683567571239227, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.6474915656839454, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.809435855031122, 'max_leaves': 20.450552448749942, 'min_child_weight': 1.7656911457110958, 'learning_rate': 0.31363507827808756, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.696956529170889, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.849394391063516, 'min_child_weight': 10.794366023733131, 'learning_rate': 0.25152469656606286, 'subsample': 0.8399383417242369, 'reg_alpha': 5.387930547167932e-10, 'reg_lambda': 0.2004603449394102, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.712057710638703, 'max_leaves': 70.92374073379082, 'min_child_weight': 3.4470409472494032, 'learning_rate': 0.2973215915231851, 'subsample': 1.0, 'reg_alpha': 1.397902893159607e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.281758346143374, 'min_child_weight': 5.529239949087054, 'learning_rate': 0.2653253922536525, 'subsample': 0.6, 'reg_alpha': 1.432149185194453e-10, 'reg_lambda': 0.1086577868304352, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.200887650612292, 'max_leaves': 22.924568495589305, 'min_child_weight': 2.544857142522308, 'learning_rate': 0.5330465393081049, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.20964021196464475, 'colsample_bylevel': 0.8446597285837593, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.246849941147003, 'min_child_weight': 7.489424924174581, 'learning_rate': 0.1479926461932662, 'subsample': 0.6, 'reg_alpha': 1.097964068199254e-09, 'reg_lambda': 0.6664377265032178, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.49845063775849, 'max_leaves': 39.74807668687245, 'min_child_weight': 6.492931996377437, 'learning_rate': 0.059943668375098375, 'subsample': 0.6, 'reg_alpha': 3.5598138877226316e-10, 'reg_lambda': 0.44971385936617586, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.640075800872979, 'min_child_weight': 2.9354252473773084, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.31066898058752296, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.583491919766338, 'min_child_weight': 13.877461132565506, 'learning_rate': 0.0794467510127411, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.07772904199852367, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.08493311360137, 'max_leaves': 31.68764802736139, 'min_child_weight': 1.373415232772248, 'learning_rate': 0.9929539835268785, 'subsample': 0.6978673366615943, 'reg_alpha': 3.2051734156512367e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9075526742362261}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 6.39579064395531, 'learning_rate': 0.1311877533330066, 'subsample': 1.0, 'reg_alpha': 4.818551467252484e-10, 'reg_lambda': 0.4819176122250894, 'colsample_bylevel': 0.7779325755320362, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.861632759530586, 'max_leaves': 4.0, 'min_child_weight': 2.9800094425672783, 'learning_rate': 0.6013287512907007, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.28990877839118095, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.65575191466257, 'min_child_weight': 1.6862185479329501, 'learning_rate': 0.8993311728563919, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.28731359071384527, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7414796078822852}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 27.816571829646776, 'max_leaves': 16.27799941893204, 'min_child_weight': 11.303111648863295, 'learning_rate': 0.087717372951517, 'subsample': 1.0, 'reg_alpha': 2.548987071382902e-10, 'reg_lambda': 0.4862705794677118, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.179248012735354, 'min_child_weight': 6.408911197378018, 'learning_rate': 0.384642470499903, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.5632818987303473, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.218933635533318, 'max_leaves': 12.559460851167435, 'min_child_weight': 2.9739086600962445, 'learning_rate': 0.20509167329817576, 'subsample': 1.0, 'reg_alpha': 5.112642649137064e-10, 'reg_lambda': 0.24803237341779572, 'colsample_bylevel': 0.7831264856282976, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.425412601526702, 'max_leaves': 14.104398673415428, 'min_child_weight': 2.581389609453324, 'learning_rate': 0.9913742596065939, 'subsample': 0.6540832499890286, 'reg_alpha': 1.8442802580312927e-10, 'reg_lambda': 0.30687422485267557, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.530752629603665, 'min_child_weight': 7.383432722388088, 'learning_rate': 0.07957334692921517, 'subsample': 0.6, 'reg_alpha': 1.08552129249411e-10, 'reg_lambda': 0.455274946315363, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.255646418467204, 'min_child_weight': 9.99681704449733, 'learning_rate': 0.08050035895743911, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.4022127632000704, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7438692088606604}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 29.243169197195083, 'max_leaves': 21.30231838755648, 'min_child_weight': 1.9065585002539824, 'learning_rate': 0.9799579643871802, 'subsample': 0.6, 'reg_alpha': 2.0063908914020934e-10, 'reg_lambda': 0.34735880864097374, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.704031739893324, 'max_leaves': 31.76633046558437, 'min_child_weight': 3.2803810680518053, 'learning_rate': 0.39898968287654074, 'subsample': 0.8475752061539289, 'reg_alpha': 6.822575331550092e-10, 'reg_lambda': 0.20918527459440328, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.559754443643488, 'min_child_weight': 5.810153185340016, 'learning_rate': 0.19771681144141087, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.6678870992055408, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.562414481280781, 'min_child_weight': 6.320132420247407, 'learning_rate': 0.03437931006932605, 'subsample': 0.6, 'reg_alpha': 2.730404357810505e-10, 'reg_lambda': 0.6742489002979121, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.78831210011129, 'max_leaves': 20.85356924958977, 'min_child_weight': 3.0156830971785524, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.20721153002050094, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9563112296573466}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.495973777242098, 'min_child_weight': 5.0749220862742686, 'learning_rate': 0.6716498752694476, 'subsample': 1.0, 'reg_alpha': 1.1555874399434493e-10, 'reg_lambda': 0.12892646787378098, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.305895933365931, 'max_leaves': 67.54450401018548, 'min_child_weight': 3.7556274141073045, 'learning_rate': 0.11745251626038349, 'subsample': 0.6, 'reg_alpha': 1.732456948058791e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7082330905112156, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.118317900925266, 'max_leaves': 7.065852897153952, 'min_child_weight': 10.320183950136286, 'learning_rate': 0.15572162982769455, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.15112992628291205, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 42.978296215158394, 'min_child_weight': 1.8468194562964722, 'learning_rate': 0.5065896624872054, 'subsample': 0.8873957840552745, 'reg_alpha': 9.257096861326116e-10, 'reg_lambda': 0.9244505683396704, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.75312530148868, 'max_leaves': 4.035192079952116, 'min_child_weight': 1.3071901380397841, 'learning_rate': 0.46031950246433967, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.3960023308137265, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.75487694024895}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 75.25746304255762, 'min_child_weight': 14.58052348853492, 'learning_rate': 0.1713743768709443, 'subsample': 0.6, 'reg_alpha': 4.231345441633483e-10, 'reg_lambda': 0.35280637353391997, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.391569528816607, 'min_child_weight': 20.0, 'learning_rate': 0.3410321411887415, 'subsample': 0.7410551790606306, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.213344915871227, 'max_leaves': 14.89234648649633, 'min_child_weight': 0.4781629906766227, 'learning_rate': 0.23131827874461244, 'subsample': 0.6, 'reg_alpha': 2.0033107614201827e-10, 'reg_lambda': 0.12509302313231968, 'colsample_bylevel': 0.6428408033793812, 'colsample_bytree': 0.9442143725871751}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.0872071890821475, 'min_child_weight': 2.797216860793048, 'learning_rate': 0.061737826307191775, 'subsample': 1.0, 'reg_alpha': 6.293800185214521e-10, 'reg_lambda': 0.7888885389030017, 'colsample_bylevel': 0.8696260126822405, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.679093619772678, 'max_leaves': 49.88795508246983, 'min_child_weight': 6.81374289523861, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.17709998226067386, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9217455667424582}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.339406603459257, 'max_leaves': 77.35536629544043, 'min_child_weight': 17.303571086798677, 'learning_rate': 0.11576036099226461, 'subsample': 0.6, 'reg_alpha': 3.8289636609587083e-10, 'reg_lambda': 0.8052027177919773, 'colsample_bylevel': 0.6371914452353257, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.101478788168256, 'learning_rate': 0.681467880889217, 'subsample': 0.7588954968654352, 'reg_alpha': 1e-10, 'reg_lambda': 0.17351176686100667, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 104.06702455747447, 'min_child_weight': 8.405301098214448, 'learning_rate': 0.2506968482026849, 'subsample': 0.6928812593160504, 'reg_alpha': 1e-10, 'reg_lambda': 0.4455948354910128, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.61374761120031, 'max_leaves': 4.0, 'min_child_weight': 2.267559042675952, 'learning_rate': 0.31467076056971527, 'subsample': 0.6, 'reg_alpha': 5.446966918653525e-10, 'reg_lambda': 0.31354076644855633, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 44.72907235526297, 'min_child_weight': 13.237474908975882, 'learning_rate': 0.577428340564021, 'subsample': 0.7972040276250741, 'reg_alpha': 5.677330152447349e-10, 'reg_lambda': 0.3235874887405249, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.147154986711288, 'max_leaves': 6.789282737961496, 'min_child_weight': 1.439815119025961, 'learning_rate': 0.13661776250766292, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.43176003741418295, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 53.49757286102565, 'min_child_weight': 4.463967296569869, 'learning_rate': 0.21256258438324982, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.2968529056109025, 'colsample_bylevel': 0.9709239781669886, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.48598038306807, 'max_leaves': 5.676487784137494, 'min_child_weight': 4.269636232845095, 'learning_rate': 0.3711234887610151, 'subsample': 1.0, 'reg_alpha': 5.033918084681645e-10, 'reg_lambda': 0.47064436158323164, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.55323928190938, 'max_leaves': 56.01425405264335, 'min_child_weight': 2.610244630729594, 'learning_rate': 0.4448644210037115, 'subsample': 0.6, 'reg_alpha': 1.575104573494648e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8173527280133498, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.421447164880826, 'min_child_weight': 7.301812361680031, 'learning_rate': 0.1773281120535175, 'subsample': 1.0, 'reg_alpha': 1.271030205301034e-10, 'reg_lambda': 0.09898152550539005, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.739631390463767, 'max_leaves': 31.987345291873, 'min_child_weight': 2.65504676589298, 'learning_rate': 0.4262546545139115, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.1833530844375175, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.493701839138646, 'min_child_weight': 7.178599170647726, 'learning_rate': 0.18507004454022855, 'subsample': 0.64793760364967, 'reg_alpha': 4.27912328768785e-10, 'reg_lambda': 0.7619841611826345, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.7829994353420835, 'max_leaves': 57.531905660846604, 'min_child_weight': 0.7045269368111401, 'learning_rate': 0.19688956658158557, 'subsample': 0.6, 'reg_alpha': 2.769735125737612e-10, 'reg_lambda': 0.10763997170249635, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.278433163970201, 'min_child_weight': 20.0, 'learning_rate': 0.40066606507400054, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9148144605862347, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.02420334404602, 'max_leaves': 57.02865340866856, 'min_child_weight': 1.0323945478658025, 'learning_rate': 0.35722203647978945, 'subsample': 0.6, 'reg_alpha': 1.2240613955020176e-10, 'reg_lambda': 0.6252233501431096, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.325012965858623, 'min_child_weight': 18.46146567808857, 'learning_rate': 0.22083455061662333, 'subsample': 0.6656364029856635, 'reg_alpha': 1.6355433614491438e-10, 'reg_lambda': 0.2234595784264796, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 44.11574681620111, 'min_child_weight': 19.335991514975817, 'learning_rate': 0.07759805602439594, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.15771802100024485, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.094177980698202, 'max_leaves': 6.8836717213884855, 'min_child_weight': 0.9857015347213299, 'learning_rate': 1.0, 'subsample': 0.6096061751063847, 'reg_alpha': 3.611581321137428e-10, 'reg_lambda': 0.8858350197353391, 'colsample_bylevel': 0.865176769762826, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 100.91212346389281, 'min_child_weight': 2.5241861351616808, 'learning_rate': 0.14077627410161025, 'subsample': 0.6, 'reg_alpha': 2.0591173815362326e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9354129726789716}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.425343031322434, 'max_leaves': 4.0, 'min_child_weight': 7.550757151452885, 'learning_rate': 0.5603711875442154, 'subsample': 0.9977148399732916, 'reg_alpha': 1e-10, 'reg_lambda': 0.13257626732068375, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.519418727716814, 'learning_rate': 0.10270120421066933, 'subsample': 1.0, 'reg_alpha': 1.5430418366402716e-10, 'reg_lambda': 0.24743179291133013, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.913784281290117, 'max_leaves': 4.0, 'min_child_weight': 5.41552966163675, 'learning_rate': 0.7681211579033655, 'subsample': 0.6, 'reg_alpha': 1.2974408352909915e-10, 'reg_lambda': 0.5646491285597962, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 34.065468774411535, 'min_child_weight': 4.866066600931686, 'learning_rate': 0.059559329305567045, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.7330766244000015, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.697345052378603, 'max_leaves': 8.91454982867364, 'min_child_weight': 3.9168219580104044, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 3.606298012977041e-10, 'reg_lambda': 0.19058327819376344, 'colsample_bylevel': 0.6500745423628033, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.675455337018246, 'max_leaves': 22.44932322150282, 'min_child_weight': 4.91735681800718, 'learning_rate': 0.13388360045723924, 'subsample': 0.6, 'reg_alpha': 4.083269562219927e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8927585356042842, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.527281683741046, 'min_child_weight': 3.8759677642010906, 'learning_rate': 0.5892205440170012, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.11425532858222906, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.79770651051834}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.205730556573766, 'min_child_weight': 1.537008247992414, 'learning_rate': 0.5245655716425327, 'subsample': 0.6, 'reg_alpha': 1.0021312639627247e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7439174316529817, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.423150897022114, 'max_leaves': 15.811859795287726, 'min_child_weight': 12.40039963127403, 'learning_rate': 0.15038533247494018, 'subsample': 1.0, 'reg_alpha': 1.9977477616085694e-10, 'reg_lambda': 0.06340769953939952, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.534696204385912, 'min_child_weight': 5.592298480213103, 'learning_rate': 0.12580752131451078, 'subsample': 0.6, 'reg_alpha': 2.552398717097922e-10, 'reg_lambda': 0.911889361754856, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.493367195657842, 'max_leaves': 54.86810975929825, 'min_child_weight': 3.408172253163423, 'learning_rate': 0.6270449260275698, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.15321172952002202, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.143454397841108, 'max_leaves': 7.315903649650795, 'min_child_weight': 1.2117616984560948, 'learning_rate': 0.09110547532170687, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 41.50933819926851, 'min_child_weight': 15.728766254911344, 'learning_rate': 0.8658861349200782, 'subsample': 0.6, 'reg_alpha': 2.398237817114701e-10, 'reg_lambda': 0.09185843511863998, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.797749857164535, 'max_leaves': 34.485024842543204, 'min_child_weight': 6.415070651726664, 'learning_rate': 0.030419739168412258, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.14262776965409232, 'colsample_bylevel': 0.999683257000843, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.806092505752765, 'min_child_weight': 2.9710532504486555, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 2.6881821658376644e-10, 'reg_lambda': 0.9795578139110434, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7699038891958614}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.641782384131767, 'max_leaves': 4.799569827915253, 'min_child_weight': 3.4414826106950884, 'learning_rate': 0.8064028652781494, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.09004939216292075, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 63.271986806060035, 'min_child_weight': 5.538170221299116, 'learning_rate': 0.09782575347020767, 'subsample': 1.0, 'reg_alpha': 4.230568735605352e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.424497294311525, 'max_leaves': 38.93996179344805, 'min_child_weight': 1.050666972073584, 'learning_rate': 0.24680600688607762, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.05845894012836, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.798629090532747, 'min_child_weight': 18.140397498224047, 'learning_rate': 0.31963147449965634, 'subsample': 0.944148082163422, 'reg_alpha': 2.879958812356045e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9848183927490449, 'colsample_bytree': 0.7817084794286819}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.1278966390127945, 'min_child_weight': 1.9353165985545937, 'learning_rate': 1.0, 'subsample': 0.7612597691826374, 'reg_alpha': 5.016767713277261e-10, 'reg_lambda': 0.38720919831137407, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.215301964219271, 'max_leaves': 42.60419787297543, 'min_child_weight': 9.848267991865013, 'learning_rate': 0.04879750708614306, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.36081825239342863, 'colsample_bylevel': 0.8902772763978, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.24265502174285, 'max_leaves': 9.060469049949909, 'min_child_weight': 0.7415682537685587, 'learning_rate': 0.36320644784364586, 'subsample': 0.6, 'reg_alpha': 3.856492610065302e-10, 'reg_lambda': 0.3036715614109912, 'colsample_bylevel': 0.6182349841386418, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 33.516843019103575, 'min_child_weight': 20.0, 'learning_rate': 0.21719594562464598, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.4600764905222163, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.7732170104894145, 'max_leaves': 7.470676579809532, 'min_child_weight': 17.63938386442446, 'learning_rate': 0.16876196181379802, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.07466190825700154, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 40.64937299619521, 'min_child_weight': 1.0805091979493668, 'learning_rate': 0.4674451935052079, 'subsample': 1.0, 'reg_alpha': 2.1243173560980027e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.997328473787773, 'min_child_weight': 20.0, 'learning_rate': 0.13519715962734197, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.2621368710238163, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.3188133727609825, 'max_leaves': 33.7520542582539, 'min_child_weight': 0.5886258947068231, 'learning_rate': 0.5834957488294406, 'subsample': 0.6, 'reg_alpha': 4.029254820294885e-10, 'reg_lambda': 0.5329740364249524, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.074029023015133, 'max_leaves': 4.0, 'min_child_weight': 5.1667264238925865, 'learning_rate': 0.1099681376952942, 'subsample': 0.6532935562714214, 'reg_alpha': 1e-10, 'reg_lambda': 0.11911175023058009, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.6888960142215024, 'learning_rate': 0.7173620427669122, 'subsample': 0.6, 'reg_alpha': 2.5080530224872145e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7669418641633137, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.663927729337049, 'max_leaves': 4.407585357312129, 'min_child_weight': 9.513938289933852, 'learning_rate': 0.22569456283346823, 'subsample': 1.0, 'reg_alpha': 1.4042361391438817e-10, 'reg_lambda': 0.082942965318807, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 68.89902162026631, 'min_child_weight': 2.0033256397969335, 'learning_rate': 0.3495297667165209, 'subsample': 0.6, 'reg_alpha': 1.425690048569793e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8113894951796231, 'colsample_bytree': 0.948902275354042}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.862063128177173, 'min_child_weight': 6.885870923020122, 'learning_rate': 0.1535811047563336, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8290782223414637}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.004684741717867, 'max_leaves': 11.74223097830717, 'min_child_weight': 2.7679166113835354, 'learning_rate': 0.5136502177239095, 'subsample': 1.0, 'reg_alpha': 3.254548565976827e-10, 'reg_lambda': 0.0724983521695421, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.727839875293201, 'min_child_weight': 0.8341604061740822, 'learning_rate': 0.5591232247685922, 'subsample': 0.6, 'reg_alpha': 1.8366453784065447e-10, 'reg_lambda': 0.8301682404212181, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9330764957601264}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.826545576540469, 'max_leaves': 19.308329766483993, 'min_child_weight': 20.0, 'learning_rate': 0.14109048667942342, 'subsample': 0.7394459448337655, 'reg_alpha': 1.0900337718740346e-10, 'reg_lambda': 0.1682937740119788, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.028107902986687, 'max_leaves': 8.953408646659343, 'min_child_weight': 1.1978693084242433, 'learning_rate': 0.3371681587916466, 'subsample': 1.0, 'reg_alpha': 1.5608935627082725e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 33.9176207421209, 'min_child_weight': 15.91118194416587, 'learning_rate': 0.23396921043519303, 'subsample': 0.6, 'reg_alpha': 1.2826021820128873e-10, 'reg_lambda': 0.11755982385656884, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.846630525223232}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.269589480492204, 'min_child_weight': 10.723067615719943, 'learning_rate': 0.670500033150812, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.055855473159705134, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8888440018347388}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.268333700712718, 'max_leaves': 12.017540651424248, 'min_child_weight': 1.7774313465793277, 'learning_rate': 0.11765393586285729, 'subsample': 0.6, 'reg_alpha': 3.330208781217911e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6208051158194106, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.274956149314864, 'min_child_weight': 12.094923871072208, 'learning_rate': 0.1622267511550933, 'subsample': 0.677224459966777, 'reg_alpha': 3.0157228173705054e-10, 'reg_lambda': 0.33702442001794825, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7040324580254903}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 37.809827549284826, 'max_leaves': 18.659240371557118, 'min_child_weight': 1.5758277368951035, 'learning_rate': 0.4862759522376873, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.41454606238304675, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.083205507922976, 'min_child_weight': 20.0, 'learning_rate': 0.3789477200686705, 'subsample': 0.8487454258229713, 'reg_alpha': 6.322559273196789e-10, 'reg_lambda': 0.12846230672205733, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.15618999819496, 'max_leaves': 12.609547293308298, 'min_child_weight': 0.7863673005393665, 'learning_rate': 0.20817374988316048, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.757413408696628, 'min_child_weight': 3.0716903829254543, 'learning_rate': 0.4369108068917119, 'subsample': 0.6, 'reg_alpha': 3.1998639411720645e-10, 'reg_lambda': 0.24093721201369803, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 34.79839520657417, 'max_leaves': 15.370347957235506, 'min_child_weight': 6.204895069378101, 'learning_rate': 0.18055622944552482, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5798695231744753, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.184923013948665, 'min_child_weight': 15.991077069475363, 'learning_rate': 0.08482485589270697, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.23503514247125523, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.179366772326079, 'max_leaves': 42.266050483361155, 'min_child_weight': 1.1918844758776206, 'learning_rate': 0.9299982542399089, 'subsample': 1.0, 'reg_alpha': 3.8812796529604274e-10, 'reg_lambda': 0.5944308786183211, 'colsample_bylevel': 0.7437498201031866, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.64550277170271, 'max_leaves': 11.651961655182799, 'min_child_weight': 19.84450622138655, 'learning_rate': 0.30006699169805584, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.17576991443071235, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 26.062420029638645, 'min_child_weight': 0.9604429709180528, 'learning_rate': 0.26289785307592184, 'subsample': 0.6, 'reg_alpha': 5.833895246752029e-10, 'reg_lambda': 0.7948581342710068, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 23.98387053880683, 'min_child_weight': 6.0880512595138825, 'learning_rate': 0.12870011776938806, 'subsample': 0.6517789618729829, 'reg_alpha': 7.45017068000311e-10, 'reg_lambda': 0.09282143549506137, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.185719457462778, 'max_leaves': 12.661772766628905, 'min_child_weight': 3.1306432385709146, 'learning_rate': 0.6129517926139224, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 32.025193042836065, 'max_leaves': 5.239735305752998, 'min_child_weight': 5.687841037191218, 'learning_rate': 0.3149895595977075, 'subsample': 0.6, 'reg_alpha': 2.140549618232489e-10, 'reg_lambda': 0.6549719366404839, 'colsample_bylevel': 0.9109932556463807, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 57.95680527853999, 'min_child_weight': 3.3509228522818018, 'learning_rate': 0.25044311943900843, 'subsample': 0.6009254119922479, 'reg_alpha': 1e-10, 'reg_lambda': 0.21331012586888734, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 70.25576230772499, 'min_child_weight': 1.7650258751664085, 'learning_rate': 0.11821473503361803, 'subsample': 1.0, 'reg_alpha': 2.7607400212526573e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.782210897571378, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.421899237850592, 'max_leaves': 4.3224684901501185, 'min_child_weight': 10.798434617777675, 'learning_rate': 0.6673192464030425, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.13623775751112666, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7125807290465458}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.8106318462694535, 'max_leaves': 37.22898792885945, 'min_child_weight': 3.181421989065571, 'learning_rate': 0.24796483537046657, 'subsample': 0.883309839134479, 'reg_alpha': 1.3216726197395167e-10, 'reg_lambda': 0.16962658933987043, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.157039332009614, 'min_child_weight': 5.990879731509096, 'learning_rate': 0.3181377221431818, 'subsample': 0.6, 'reg_alpha': 1.5147514289991626e-10, 'reg_lambda': 0.8236453187503393, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 90.30154117158723, 'min_child_weight': 18.72410058448902, 'learning_rate': 0.5293137269067162, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.7406385894117, 'max_leaves': 4.0, 'min_child_weight': 1.0179135935351211, 'learning_rate': 0.1490363160566059, 'subsample': 1.0, 'reg_alpha': 2.1533188418334287e-10, 'reg_lambda': 0.1270734786224151, 'colsample_bylevel': 0.9907253485095098, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.24178466300288, 'max_leaves': 29.17209971505926, 'min_child_weight': 7.36978787875547, 'learning_rate': 0.17619957327296912, 'subsample': 1.0, 'reg_alpha': 5.65870709538979e-10, 'reg_lambda': 0.3635262254498707, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.409888962152849, 'min_child_weight': 2.5861689407116075, 'learning_rate': 0.4477137284217897, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.38432480647709544, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8087095952654524}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.642036234155075, 'min_child_weight': 10.612605590832205, 'learning_rate': 0.08257438612413506, 'subsample': 1.0, 'reg_alpha': 4.789422032306986e-10, 'reg_lambda': 0.2647550920121919, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.783604361464133}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.07961952917186, 'max_leaves': 9.597306462180867, 'min_child_weight': 1.795931861270244, 'learning_rate': 0.9553442853063128, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.5277033396545091, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.304233262317144, 'max_leaves': 31.19274351587325, 'min_child_weight': 14.444304934909852, 'learning_rate': 0.30659826481308966, 'subsample': 0.8128654091860534, 'reg_alpha': 1e-10, 'reg_lambda': 0.15489703873632457, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.73554373862892, 'min_child_weight': 1.3195177336367436, 'learning_rate': 0.2572975027906988, 'subsample': 0.6, 'reg_alpha': 2.813253711051815e-10, 'reg_lambda': 0.901967832213999, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.947202407464929}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.4798106507426, 'max_leaves': 33.16997809117137, 'min_child_weight': 10.770458583218074, 'learning_rate': 0.27536959045222853, 'subsample': 0.6, 'reg_alpha': 5.51916783662437e-10, 'reg_lambda': 0.23314531265442803, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.155216141292708, 'min_child_weight': 1.7696104919216484, 'learning_rate': 0.286476686720623, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5992492178148753, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.183859100215173, 'max_leaves': 18.671201172189942, 'min_child_weight': 2.6852451991479693, 'learning_rate': 0.05096541076937876, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.30408308331886114, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.89833618154233}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.26453038698631, 'min_child_weight': 7.097868201279302, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 5.352634647250069e-10, 'reg_lambda': 0.4594538595192701, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.481933908043065, 'max_leaves': 19.586385695551744, 'min_child_weight': 2.312631736077949, 'learning_rate': 0.5827751617224517, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.2734623385111073, 'colsample_bylevel': 0.945584534889016, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.504561359454181, 'min_child_weight': 8.24148359392222, 'learning_rate': 0.1353643275791144, 'subsample': 0.6, 'reg_alpha': 6.150270542692942e-10, 'reg_lambda': 0.5109008684927039, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.870535567382746, 'max_leaves': 11.774285974203673, 'min_child_weight': 4.137604106145786, 'learning_rate': 0.16540135353217347, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.9087532108430479, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.791654754432464, 'min_child_weight': 4.60641376572501, 'learning_rate': 0.47694269854342164, 'subsample': 0.6, 'reg_alpha': 9.108180248437756e-10, 'reg_lambda': 0.15374047054618928, 'colsample_bylevel': 0.7175493443388054, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.23859444898745, 'max_leaves': 11.104623716269531, 'min_child_weight': 0.673496548076985, 'learning_rate': 0.2584496407949843, 'subsample': 1.0, 'reg_alpha': 3.984418941697286e-10, 'reg_lambda': 0.3149831034122615, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8105010600426086}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.347015674353248, 'min_child_weight': 20.0, 'learning_rate': 0.3052314859239699, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4435544152427444, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.851718221853671, 'min_child_weight': 13.233079162929704, 'learning_rate': 0.4365952559080371, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.21235499053404006, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.916290012486887, 'max_leaves': 51.89558131704098, 'min_child_weight': 1.4402933948330319, 'learning_rate': 0.18068672718923406, 'subsample': 0.6, 'reg_alpha': 2.1498947044334706e-10, 'reg_lambda': 0.65791788501893, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.3934135087563035, 'min_child_weight': 5.323335713179955, 'learning_rate': 0.3170360315784826, 'subsample': 0.6, 'reg_alpha': 2.216192712408477e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.491128500006761, 'max_leaves': 41.07416938968174, 'min_child_weight': 3.580370943820272, 'learning_rate': 0.24882650562966302, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.13587130563525873, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.96045675904686, 'max_leaves': 30.452319181952664, 'min_child_weight': 7.7551185463608725, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1.7737485453708026e-10, 'reg_lambda': 0.5162180161601158, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.97225587358845, 'min_child_weight': 2.4576692667856186, 'learning_rate': 0.05149036667799473, 'subsample': 0.6, 'reg_alpha': 1.1286861909735801e-10, 'reg_lambda': 0.27064562233727985, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.2801414353392095, 'min_child_weight': 6.397013624974437, 'learning_rate': 0.1986438005351493, 'subsample': 0.6, 'reg_alpha': 2.214918454463683e-10, 'reg_lambda': 0.09038532827507449, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.446399021133969, 'max_leaves': 48.355331158272726, 'min_child_weight': 2.9794397243833357, 'learning_rate': 0.3971277617718081, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.8838614816099, 'max_leaves': 10.131609545179003, 'min_child_weight': 2.5313473357126113, 'learning_rate': 0.11440679763059246, 'subsample': 0.6, 'reg_alpha': 1.5240989774482414e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7971842507843034, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 29.973353934777233, 'min_child_weight': 7.529396002980661, 'learning_rate': 0.6895304259025506, 'subsample': 0.9599477388656416, 'reg_alpha': 1.3135665852695502e-10, 'reg_lambda': 0.0699259616581837, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.3819052220906, 'min_child_weight': 4.0069404776650615, 'learning_rate': 0.39084569037537614, 'subsample': 0.9365676344949317, 'reg_alpha': 6.714308843350435e-10, 'reg_lambda': 0.48253998616295257, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.624650958450976, 'max_leaves': 29.250731183757246, 'min_child_weight': 4.756625814111596, 'learning_rate': 0.20183660671966136, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.2895348577354791, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.643785366204704, 'max_leaves': 7.865597594281458, 'min_child_weight': 3.7198172550026256, 'learning_rate': 0.31645495323973255, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 38.60842296933694, 'min_child_weight': 5.123777649570805, 'learning_rate': 0.2492834038107407, 'subsample': 1.0, 'reg_alpha': 3.009385955146309e-10, 'reg_lambda': 0.06571151874749, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7596519190766116}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.674920466686733, 'max_leaves': 112.0, 'min_child_weight': 13.959031785921756, 'learning_rate': 0.3532185026748464, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.643100387502496, 'colsample_bylevel': 0.6998750967162803, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 1.3653895774413642, 'learning_rate': 0.2233375865051677, 'subsample': 0.6, 'reg_alpha': 2.9154486608523436e-10, 'reg_lambda': 0.21724780292536877, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.850393920872364, 'min_child_weight': 4.198894329346021, 'learning_rate': 0.2160911506690303, 'subsample': 0.6, 'reg_alpha': 3.6288319998879266e-10, 'reg_lambda': 0.1037352873364962, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.656052319100606, 'max_leaves': 23.63182955297312, 'min_child_weight': 4.539175081988502, 'learning_rate': 0.365063389463802, 'subsample': 0.7452068060042782, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.518347234687064, 'max_leaves': 58.13858570140909, 'min_child_weight': 3.924218871012285, 'learning_rate': 0.2881879059563325, 'subsample': 0.6, 'reg_alpha': 7.564048509016803e-10, 'reg_lambda': 0.8879786417023035, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.223352359932924, 'min_child_weight': 4.85689436245785, 'learning_rate': 0.2737344845703644, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.1573372823219427, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 54.511523232845626, 'min_child_weight': 2.49841130391206, 'learning_rate': 0.2198179401266968, 'subsample': 0.6, 'reg_alpha': 6.392247287780441e-10, 'reg_lambda': 0.3245602671930096, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.170811965671207, 'max_leaves': 5.5709013584055915, 'min_child_weight': 7.628654450060535, 'learning_rate': 0.35887411123451124, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.43046595769002877, 'colsample_bylevel': 0.6214634350267809, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.631342478454346, 'min_child_weight': 18.64512098377149, 'learning_rate': 0.32470197816024104, 'subsample': 0.9454555227138907, 'reg_alpha': 1e-10, 'reg_lambda': 0.7646062436704396, 'colsample_bylevel': 0.8699962284227323, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.935874931585946, 'max_leaves': 18.259399036489587, 'min_child_weight': 1.0222254137293865, 'learning_rate': 0.24295191653386988, 'subsample': 0.6, 'reg_alpha': 3.1797247961860705e-10, 'reg_lambda': 0.18272430731757036, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.293855344710111, 'max_leaves': 8.152738120751286, 'min_child_weight': 13.746144975275294, 'learning_rate': 0.1568741112418593, 'subsample': 0.6236729237442314, 'reg_alpha': 5.729822071988348e-10, 'reg_lambda': 0.45789154568149765, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 37.24862915118795, 'min_child_weight': 1.3865353919918608, 'learning_rate': 0.5028679829442733, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.3051206067529191, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 5.5943793186467206, 'learning_rate': 0.522531543666998, 'subsample': 0.7020667645383517, 'reg_alpha': 1e-10, 'reg_lambda': 0.6389202206540378, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.554627787815108, 'max_leaves': 4.0, 'min_child_weight': 3.406904577982884, 'learning_rate': 0.15097072866215877, 'subsample': 0.6, 'reg_alpha': 3.647024489801227e-10, 'reg_lambda': 0.21866915732038136, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.255866161984626, 'min_child_weight': 3.7696261108381734, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 3.0411548716660365e-10, 'reg_lambda': 0.17466353089469971, 'colsample_bylevel': 0.7626026995640384, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.686760386601925, 'max_leaves': 24.778201296663163, 'min_child_weight': 5.056076107089679, 'learning_rate': 0.033469558742673454, 'subsample': 0.6739895962036849, 'reg_alpha': 1e-10, 'reg_lambda': 0.7998930602725505, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.1309390532316, 'max_leaves': 5.091642031476895, 'min_child_weight': 2.641654720293527, 'learning_rate': 0.5198184923650327, 'subsample': 0.7664068762443964, 'reg_alpha': 1.7111739679701891e-10, 'reg_lambda': 0.6629739374129616, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 59.64251158059749, 'min_child_weight': 7.2149915601205, 'learning_rate': 0.15175867933719533, 'subsample': 0.6, 'reg_alpha': 1.169960230165433e-10, 'reg_lambda': 0.21073550310371375, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.945779805130623, 'min_child_weight': 0.8049612183595342, 'learning_rate': 0.46121922597852855, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4112933272191437, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.05127822456929, 'max_leaves': 17.920586855181128, 'min_child_weight': 20.0, 'learning_rate': 0.17104006826472104, 'subsample': 1.0, 'reg_alpha': 5.059606601146516e-10, 'reg_lambda': 0.3396897955772807, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.466690042478008, 'min_child_weight': 3.5855072791014804, 'learning_rate': 0.25450682052111384, 'subsample': 0.6, 'reg_alpha': 1.3095245734339218e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.062348458278295, 'max_leaves': 22.550331066410862, 'min_child_weight': 5.315709892087166, 'learning_rate': 0.3099601328359091, 'subsample': 0.7151416716417608, 'reg_alpha': 1.5288033000936427e-10, 'reg_lambda': 0.038126339613578676, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.171032330460612, 'max_leaves': 11.324807127045425, 'min_child_weight': 11.481074253123802, 'learning_rate': 0.6592060574149661, 'subsample': 0.6, 'reg_alpha': 2.4699555167106366e-10, 'reg_lambda': 0.3239073263657066, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7031368556344819}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 26.815319273860826, 'min_child_weight': 1.6600812860769116, 'learning_rate': 0.1196696647566005, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.43133370218254635, 'colsample_bylevel': 0.6324314138351267, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.512600996314089, 'max_leaves': 4.0, 'min_child_weight': 3.0978790960154763, 'learning_rate': 0.12236425762045838, 'subsample': 0.8534109729119432, 'reg_alpha': 2.2975991887080605e-10, 'reg_lambda': 0.984136121336603, 'colsample_bylevel': 0.6180869742841221, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 6.152440402269031, 'learning_rate': 0.6446896293937063, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.14196424988000714, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.415980876921312, 'max_leaves': 11.25497716575528, 'min_child_weight': 6.148430279283514, 'learning_rate': 0.05437980678031979, 'subsample': 0.6355120960908955, 'reg_alpha': 6.738673434818008e-10, 'reg_lambda': 0.3495573494776138, 'colsample_bylevel': 0.8961440113576239, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 26.98169124239524, 'min_child_weight': 3.099899591589955, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.39968304615582945, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.918197767549604, 'max_leaves': 6.998177279672095, 'min_child_weight': 20.0, 'learning_rate': 0.08125058383501241, 'subsample': 0.6490759796312201, 'reg_alpha': 3.3407779362884577e-10, 'reg_lambda': 0.5869852384221198, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 43.393916257126705, 'min_child_weight': 0.8004826661018687, 'learning_rate': 0.9709095513277463, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.2380164561223583, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.189266591666962, 'max_leaves': 4.554387338777286, 'min_child_weight': 5.774993471440606, 'learning_rate': 0.47352670062424557, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.48205665768327, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9702895128173865}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 66.67819318770239, 'min_child_weight': 3.3003529105143334, 'learning_rate': 0.16659455061852566, 'subsample': 0.7578320012504846, 'reg_alpha': 2.35460397762133e-10, 'reg_lambda': 0.28982515648018875, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.058890328986, 'max_leaves': 14.278578084447243, 'min_child_weight': 9.08039518936538, 'learning_rate': 0.2235182709741806, 'subsample': 0.6, 'reg_alpha': 1.2507869990505928e-10, 'reg_lambda': 0.1045851721079701, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.268106462042976, 'min_child_weight': 2.098974341336165, 'learning_rate': 0.3529329730073022, 'subsample': 1.0, 'reg_alpha': 1.6005966570959867e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9866907625997794, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.873305335724943, 'min_child_weight': 5.368052489528781, 'learning_rate': 0.11704160742464953, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.0877584581353913, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.364291235082032, 'max_leaves': 19.13138520325379, 'min_child_weight': 3.550545854171289, 'learning_rate': 0.6740078988333797, 'subsample': 0.9217180979293287, 'reg_alpha': 8.794925811197863e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7033992535694398}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 5.408463509359807, 'min_child_weight': 5.739347047093448, 'learning_rate': 0.3305913373126911, 'subsample': 0.7179521102257537, 'reg_alpha': 5.039276951067951e-10, 'reg_lambda': 0.4769582464089178, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 25.613778491335882, 'max_leaves': 56.148722886098135, 'min_child_weight': 3.3208510228219263, 'learning_rate': 0.238623820386902, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.29292322189055725, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.338809119521862, 'max_leaves': 65.94815451121099, 'min_child_weight': 1.5166359358463857, 'learning_rate': 0.17920971525963017, 'subsample': 0.6, 'reg_alpha': 1.517834010220219e-10, 'reg_lambda': 0.15843279941163244, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7533485532565463}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.604803895990649, 'min_child_weight': 12.566968816437662, 'learning_rate': 0.4401935898513191, 'subsample': 1.0, 'reg_alpha': 1.3189884242540022e-10, 'reg_lambda': 0.8818385256349424, 'colsample_bylevel': 0.7023666341046142, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.994290823565969, 'max_leaves': 41.83753468449609, 'min_child_weight': 1.011109739409785, 'learning_rate': 0.5340978130227825, 'subsample': 0.8995943632945095, 'reg_alpha': 3.989967296931542e-10, 'reg_lambda': 0.8505817627394476, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.258513703465251, 'min_child_weight': 18.850096847841552, 'learning_rate': 0.1477013497769262, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.1642548104904143, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.149692666821536, 'max_leaves': 62.50799388934298, 'min_child_weight': 3.0719489502138653, 'learning_rate': 0.18740899297101501, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.20517957968095082, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.8582317225572, 'min_child_weight': 6.204372800642855, 'learning_rate': 0.42093480491926083, 'subsample': 1.0, 'reg_alpha': 7.953495414785787e-10, 'reg_lambda': 0.6809261743425904, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9409189824821569}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 28.474205849869115, 'max_leaves': 42.34698032486659, 'min_child_weight': 2.248452861262013, 'learning_rate': 0.33662529944822267, 'subsample': 0.6, 'reg_alpha': 2.2752389013368952e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.917887906721118}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.171191818092743, 'min_child_weight': 8.476724969440783, 'learning_rate': 0.23434652126764213, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.13792175304249335, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.707246134203561, 'max_leaves': 65.55892254338879, 'min_child_weight': 2.9978053002904668, 'learning_rate': 0.6923144592449356, 'subsample': 0.7781474342430238, 'reg_alpha': 2.0115325500291198e-10, 'reg_lambda': 0.1897458578310845, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.632143223916387, 'min_child_weight': 6.357823341570428, 'learning_rate': 0.1139467287486765, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.7363119692960308, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.66906590342766, 'min_child_weight': 1.2806716628227544, 'learning_rate': 0.3393104022627677, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.31237669480692204, 'colsample_bylevel': 0.7737626510854884, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.701446969697741, 'max_leaves': 35.03010845799965, 'min_child_weight': 14.882437915164617, 'learning_rate': 0.23249204082837968, 'subsample': 0.832610176006812, 'reg_alpha': 1.1956055987350301e-09, 'reg_lambda': 0.44725534448632814, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.464858078204863, 'max_leaves': 16.70108177531307, 'min_child_weight': 4.1552700883304885, 'learning_rate': 0.9169418774635419, 'subsample': 0.6, 'reg_alpha': 1.064621580110501e-10, 'reg_lambda': 0.5994336314631764, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.18315261922158, 'min_child_weight': 4.58682976232913, 'learning_rate': 0.08603268084405481, 'subsample': 1.0, 'reg_alpha': 1.880485542301053e-10, 'reg_lambda': 0.23307358631904376, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 40.05913157455424, 'min_child_weight': 6.617078895357153, 'learning_rate': 0.07665858444941547, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.5859189592629014, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.388726453205454, 'max_leaves': 7.580751426461665, 'min_child_weight': 2.8803520122819317, 'learning_rate': 1.0, 'subsample': 0.984193158892021, 'reg_alpha': 5.024163182400939e-10, 'reg_lambda': 0.23844960815251892, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.947429350235492, 'min_child_weight': 1.3184498229840658, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1.0097840097378173e-10, 'reg_lambda': 0.6214596793222701, 'colsample_bylevel': 0.6959172406037367, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.233378584993574, 'max_leaves': 16.92043539497945, 'min_child_weight': 14.456004452662908, 'learning_rate': 0.04342976660559386, 'subsample': 0.936716988677879, 'reg_alpha': 1.98260763699289e-10, 'reg_lambda': 0.22481288954696615, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7823373785213622}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 56.47824776143411, 'min_child_weight': 20.0, 'learning_rate': 0.37176438439607, 'subsample': 0.6, 'reg_alpha': 1.5420323049802654e-10, 'reg_lambda': 0.8132651597839339, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.424262845506256, 'max_leaves': 5.376907585896864, 'min_child_weight': 0.889105237168808, 'learning_rate': 0.21219614144727963, 'subsample': 0.603452513057752, 'reg_alpha': 1.2982902387671582e-10, 'reg_lambda': 0.17179162855382724, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.673860270351834, 'max_leaves': 20.402869902043903, 'min_child_weight': 11.19131830352481, 'learning_rate': 0.1671259129252926, 'subsample': 0.6, 'reg_alpha': 3.4084646256958117e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6839569326487296, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.884098182491275, 'min_child_weight': 1.7030626772243005, 'learning_rate': 0.4720211636578033, 'subsample': 0.8881019408840416, 'reg_alpha': 1e-10, 'reg_lambda': 0.04347293297165379, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 88.76532709767861, 'min_child_weight': 5.4083256472176915, 'learning_rate': 0.06291475468001022, 'subsample': 0.9791016845094065, 'reg_alpha': 3.2081216778183505e-10, 'reg_lambda': 0.22443286302901233, 'colsample_bylevel': 0.7896928822116991, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.144499751880722, 'max_leaves': 4.0, 'min_child_weight': 3.5241066745815184, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.6225119813550211, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 65.37422452734528, 'min_child_weight': 2.1225135423346977, 'learning_rate': 0.6448360785072987, 'subsample': 0.6, 'reg_alpha': 1.9880128757992844e-10, 'reg_lambda': 0.6022227017954073, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.279766320974568, 'max_leaves': 4.645230150295589, 'min_child_weight': 8.979691357212925, 'learning_rate': 0.12233646739956162, 'subsample': 0.6989617470788169, 'reg_alpha': 1.0070384924517099e-10, 'reg_lambda': 0.23199415403777796, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 10.855511792356175, 'learning_rate': 0.5215560160457106, 'subsample': 0.6, 'reg_alpha': 1.2060882149657014e-10, 'reg_lambda': 0.6452568449113315, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.351563836362912, 'max_leaves': 4.0, 'min_child_weight': 1.7557455490114144, 'learning_rate': 0.15125310699024794, 'subsample': 0.6939085034106324, 'reg_alpha': 1.6599163017909369e-10, 'reg_lambda': 0.21652175772667576, 'colsample_bylevel': 0.6703408742325426, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.43061977674337, 'max_leaves': 37.55187044748791, 'min_child_weight': 3.9961912720888213, 'learning_rate': 0.15095589585547997, 'subsample': 0.6, 'reg_alpha': 6.109664963647966e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.086902601863144, 'min_child_weight': 4.7694204841470995, 'learning_rate': 0.5225828872023192, 'subsample': 0.7262297614635388, 'reg_alpha': 1e-10, 'reg_lambda': 0.06596199629034002, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 23.801355564500017, 'min_child_weight': 5.723102905105279, 'learning_rate': 0.6000546684028745, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.10314819669051213, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.906974066038948, 'max_leaves': 12.758866527734966, 'min_child_weight': 3.330276744572999, 'learning_rate': 0.13146630140606608, 'subsample': 0.6, 'reg_alpha': 6.884867478866671e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 47.34923885817526, 'min_child_weight': 2.9295449079305707, 'learning_rate': 0.09480963249732349, 'subsample': 0.9313749611530951, 'reg_alpha': 2.221518217748062e-10, 'reg_lambda': 0.2931744721689389, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.924921035737988, 'max_leaves': 6.413583959316062, 'min_child_weight': 6.505964957244473, 'learning_rate': 0.8320564674543627, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4765494935891375, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.182903943280365, 'max_leaves': 24.74716695144963, 'min_child_weight': 1.3398383837295018, 'learning_rate': 0.16022245985761627, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.46069952414399984, 'colsample_bylevel': 0.7970431788149551, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.271235710430641, 'min_child_weight': 14.225235478489008, 'learning_rate': 0.49235898616506846, 'subsample': 0.6, 'reg_alpha': 2.9456709193703687e-10, 'reg_lambda': 0.3032608868111203, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8361952297911268}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 37.5456404344449, 'min_child_weight': 1.509720909410331, 'learning_rate': 0.44206386771989276, 'subsample': 0.7379609935083896, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8709202916680231}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.638237442599292, 'max_leaves': 8.088244475596131, 'min_child_weight': 12.62452973451535, 'learning_rate': 0.17845151720555202, 'subsample': 0.6, 'reg_alpha': 5.23634152561993e-10, 'reg_lambda': 0.05435166099685485, 'colsample_bylevel': 0.9302527058980332, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.010425486547756, 'max_leaves': 4.0, 'min_child_weight': 2.932552202005086, 'learning_rate': 0.28026253090306014, 'subsample': 0.6582771054182072, 'reg_alpha': 1.3128398709509296e-10, 'reg_lambda': 0.32820983430028017, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 101.29191750629431, 'min_child_weight': 6.499293174947964, 'learning_rate': 0.2814752569392, 'subsample': 0.6, 'reg_alpha': 1.5249426329270351e-10, 'reg_lambda': 0.4256793418248018, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7126585416993656}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.635779223077212, 'max_leaves': 4.111071007429367, 'min_child_weight': 1.112710207109109, 'learning_rate': 0.7519541683475697, 'subsample': 1.0, 'reg_alpha': 2.0536069053478527e-10, 'reg_lambda': 0.21486007418612194, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 73.86841975675489, 'min_child_weight': 17.128913161665064, 'learning_rate': 0.10490927667802494, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.6502471283908487, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.712349088577143}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.612346608196654, 'max_leaves': 31.276366131257685, 'min_child_weight': 4.058418848655824, 'learning_rate': 0.263156990162153, 'subsample': 1.0, 'reg_alpha': 1.0027598719932255e-10, 'reg_lambda': 0.6956289127417757, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.709514128085383, 'min_child_weight': 4.696291147470627, 'learning_rate': 0.29977150843593575, 'subsample': 0.6, 'reg_alpha': 1.9964954176317748e-10, 'reg_lambda': 0.20084292600016332, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 17.317873742198824, 'learning_rate': 0.3896869416052127, 'subsample': 0.6, 'reg_alpha': 1.591774694486411e-10, 'reg_lambda': 0.3249822921601776, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8296140710494917}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.500281228115037, 'max_leaves': 104.22000545468647, 'min_child_weight': 1.1005690880646368, 'learning_rate': 0.20243677545728175, 'subsample': 0.6723068899132835, 'reg_alpha': 1.2577191334640802e-10, 'reg_lambda': 0.4299069506732049, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.583999256130627, 'max_leaves': 42.889474813010956, 'min_child_weight': 20.0, 'learning_rate': 0.14151244651176376, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.3668846883011666, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.080485833659445, 'min_child_weight': 0.5034822803680105, 'learning_rate': 0.5574560389627039, 'subsample': 0.8760871516582517, 'reg_alpha': 2.3972145826614074e-10, 'reg_lambda': 0.3808066967643094, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 30.198618142776702, 'min_child_weight': 20.0, 'learning_rate': 0.4000800310644601, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4285408842305231, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.111331678870854, 'max_leaves': 10.056033603618893, 'min_child_weight': 0.7615389327031764, 'learning_rate': 0.1971779688340886, 'subsample': 0.7859938564045599, 'reg_alpha': 2.5380744715751303e-10, 'reg_lambda': 0.3260182432680467, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.421785546430407, 'max_leaves': 27.864417877346977, 'min_child_weight': 3.480909168969113, 'learning_rate': 0.7099752166562174, 'subsample': 0.6, 'reg_alpha': 2.4722396287628774e-10, 'reg_lambda': 0.08086977201776206, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.898426809536902, 'min_child_weight': 5.475442071737493, 'learning_rate': 0.11111228398634061, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7133198451730149, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.64695324841847, 'min_child_weight': 8.90718274446665, 'learning_rate': 0.7089601020545283, 'subsample': 0.6, 'reg_alpha': 8.40905133313909e-10, 'reg_lambda': 0.2397536238794509, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9196128486536016}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.825059347991882, 'max_leaves': 14.708141931298217, 'min_child_weight': 2.139791790340273, 'learning_rate': 0.11127137855537869, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.582732156389087, 'colsample_bylevel': 0.7586640842555767, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.984597847624666, 'min_child_weight': 8.017659412427033, 'learning_rate': 0.6416844753056276, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.825714180582239, 'max_leaves': 14.471486231554932, 'min_child_weight': 2.3771920870234067, 'learning_rate': 0.12293731722089161, 'subsample': 0.8208640792019648, 'reg_alpha': 4.269813709265446e-10, 'reg_lambda': 0.0853226441030717, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.4297178538599145, 'max_leaves': 16.0273052867997, 'min_child_weight': 2.642820160270501, 'learning_rate': 0.3085866616198018, 'subsample': 0.714987972913081, 'reg_alpha': 1.7806661843938282e-10, 'reg_lambda': 0.038850177737153484, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.947559392702846, 'min_child_weight': 7.211809868182435, 'learning_rate': 0.25563959077908244, 'subsample': 0.6, 'reg_alpha': 1.1243014030173316e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 33.82540340330125, 'min_child_weight': 1.7043513281803144, 'learning_rate': 0.5917775631493458, 'subsample': 0.7743328363376661, 'reg_alpha': 1e-10, 'reg_lambda': 0.3576480176406516, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 25.72446666549055, 'max_leaves': 8.97781809741786, 'min_child_weight': 11.182856607398877, 'learning_rate': 0.13330510112033558, 'subsample': 0.6, 'reg_alpha': 5.210557299596142e-10, 'reg_lambda': 0.3906414669009767, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.906550826210186, 'min_child_weight': 0.7354360580825252, 'learning_rate': 0.1380538696997601, 'subsample': 0.6, 'reg_alpha': 1.3329083697013022e-10, 'reg_lambda': 0.8870131857753971, 'colsample_bylevel': 0.9556005156945657, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.188260859900621, 'max_leaves': 9.228506519277516, 'min_child_weight': 20.0, 'learning_rate': 0.5714216346700958, 'subsample': 1.0, 'reg_alpha': 1.5019828331246348e-10, 'reg_lambda': 0.15750853367894285, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.2999668054349245, 'max_leaves': 38.995889822556094, 'min_child_weight': 8.700763596045519, 'learning_rate': 0.10615639951274071, 'subsample': 0.6, 'reg_alpha': 1.0547947804041451e-10, 'reg_lambda': 0.6391796487892013, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.787444271907941, 'min_child_weight': 2.1905567599070035, 'learning_rate': 0.7431202288176837, 'subsample': 1.0, 'reg_alpha': 1.8980047366677624e-10, 'reg_lambda': 0.2185804046014722, 'colsample_bylevel': 0.7008072862567095, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 22.03942601373001, 'min_child_weight': 10.843492328078938, 'learning_rate': 0.04366609454146982, 'subsample': 1.0, 'reg_alpha': 1.45112398197948e-10, 'reg_lambda': 0.14519376786289603, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.149389721991652, 'max_leaves': 13.778866955856003, 'min_child_weight': 1.757691704389015, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1.379624011649619e-10, 'reg_lambda': 0.9622461645688422, 'colsample_bylevel': 0.8857083014082205, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.012117397221294, 'max_leaves': 30.4307930605011, 'min_child_weight': 0.8120190387140854, 'learning_rate': 0.6901043001112409, 'subsample': 0.6, 'reg_alpha': 1.4993767386710042e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7561601260606037, 'colsample_bytree': 0.7947303021278912}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.979310043706663, 'min_child_weight': 20.0, 'learning_rate': 0.11431165967760698, 'subsample': 0.8099039859436422, 'reg_alpha': 1.3352251224025313e-10, 'reg_lambda': 0.05762958566042758, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.537230246683679, 'min_child_weight': 16.126922940756344, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1.1886860441289844e-10, 'reg_lambda': 0.14937388471581878, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.962794818966087, 'max_leaves': 35.571058768689376, 'min_child_weight': 1.1818445826080444, 'learning_rate': 0.04941258149890887, 'subsample': 1.0, 'reg_alpha': 1.684217207148654e-10, 'reg_lambda': 0.9353184227026728, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.312533601381492, 'max_leaves': 26.38747044876179, 'min_child_weight': 13.45084260327961, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1.6967937450886356e-10, 'reg_lambda': 0.7922606680287433, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.508428570911676, 'min_child_weight': 1.4169756552666188, 'learning_rate': 0.07295374720226334, 'subsample': 0.6, 'reg_alpha': 1.179875571332284e-10, 'reg_lambda': 0.17634618489012477, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9350411314253373}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.251950929211622, 'min_child_weight': 4.070583434543851, 'learning_rate': 0.25567668250694675, 'subsample': 1.0, 'reg_alpha': 3.465544450141624e-10, 'reg_lambda': 0.2811642640640313, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.5076426416626765, 'max_leaves': 21.307842016504633, 'min_child_weight': 4.682256688298562, 'learning_rate': 0.3085418940940223, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.4969057739626292, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.89809608895292, 'max_leaves': 48.342304329676054, 'min_child_weight': 1.2656450444611929, 'learning_rate': 0.37976660741371426, 'subsample': 0.8141156502809638, 'reg_alpha': 1.6782175876263267e-10, 'reg_lambda': 0.25126776817809837, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.281833748669643, 'min_child_weight': 15.059132570446913, 'learning_rate': 0.2077248666848441, 'subsample': 0.6, 'reg_alpha': 1.1929355908199836e-10, 'reg_lambda': 0.5560289218883923, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.056471084138731, 'max_leaves': 45.887473990404054, 'min_child_weight': 0.7630547992500248, 'learning_rate': 0.16962952282699037, 'subsample': 1.0, 'reg_alpha': 4.985967154332667e-10, 'reg_lambda': 0.6986158744779711, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.617891385569023, 'min_child_weight': 20.0, 'learning_rate': 0.46505447036379527, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.19998421357053767, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.088117019677334, 'min_child_weight': 8.32550192343048, 'learning_rate': 0.24730543574781993, 'subsample': 0.6, 'reg_alpha': 1.4056498305086509e-10, 'reg_lambda': 0.1830595780445939, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 34.2148579105306, 'max_leaves': 9.768308535200228, 'min_child_weight': 2.289293388790295, 'learning_rate': 0.3189859845086917, 'subsample': 0.6189183047625462, 'reg_alpha': 1.424256202339562e-10, 'reg_lambda': 0.7632058794068464, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.2634700616931545, 'max_leaves': 15.070752085314954, 'min_child_weight': 1.2874506380278212, 'learning_rate': 0.5298913529096605, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.7964451248896285, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.150176786633228, 'min_child_weight': 14.80407554954228, 'learning_rate': 0.14887385397628577, 'subsample': 0.6, 'reg_alpha': 2.1607880578563735e-10, 'reg_lambda': 0.1754196766095239, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.446181946954054, 'max_leaves': 49.04090003547503, 'min_child_weight': 12.054011982181573, 'learning_rate': 0.08872808780939645, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.19234799130815, 'min_child_weight': 1.5811761710411731, 'learning_rate': 0.8890867575759371, 'subsample': 1.0, 'reg_alpha': 2.9213891249862445e-10, 'reg_lambda': 0.12470205698302865, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.260639587696354, 'max_leaves': 46.381150549630604, 'min_child_weight': 1.7319440522560545, 'learning_rate': 0.34438147001777314, 'subsample': 0.6, 'reg_alpha': 6.794832250339914e-10, 'reg_lambda': 0.6007106007768208, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7514892311409753}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 6.547451178505452, 'min_child_weight': 11.004695265325163, 'learning_rate': 0.2290685613610339, 'subsample': 0.7925152268613272, 'reg_alpha': 1e-10, 'reg_lambda': 0.23257812674638836, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.203649071776831, 'max_leaves': 18.384691572136013, 'min_child_weight': 3.129490271731057, 'learning_rate': 1.0, 'subsample': 0.7067085184071326, 'reg_alpha': 6.478740615798566e-10, 'reg_lambda': 0.4698889890224138, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.517999099145886, 'min_child_weight': 6.090294219424952, 'learning_rate': 0.033179506188520606, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.2973301130891284, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7531173082297316}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.35343853215829, 'max_leaves': 10.74749332970605, 'min_child_weight': 6.8541847784784595, 'learning_rate': 1.0, 'subsample': 0.8229007948912648, 'reg_alpha': 1e-10, 'reg_lambda': 0.5532039967106394, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.255734570893047, 'min_child_weight': 2.7807123863242635, 'learning_rate': 0.05483717074569014, 'subsample': 0.6, 'reg_alpha': 2.3016803370969665e-10, 'reg_lambda': 0.25255086202576515, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7695703040969756}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.991836283161144, 'max_leaves': 66.10842863811712, 'min_child_weight': 1.0550472086854092, 'learning_rate': 0.19642322056124162, 'subsample': 0.9053247615271666, 'reg_alpha': 1.6088162560936872e-10, 'reg_lambda': 0.8181751151456941, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.59363995004294, 'min_child_weight': 18.065084059526086, 'learning_rate': 0.40161732238665554, 'subsample': 0.6, 'reg_alpha': 1.2443966064095488e-10, 'reg_lambda': 0.17076068882942214, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.382630884272075, 'min_child_weight': 3.466267195422278, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.07161866638675483, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.14135354076061, 'max_leaves': 11.090180491058774, 'min_child_weight': 5.498571067124084, 'learning_rate': 0.06100934341984711, 'subsample': 0.6, 'reg_alpha': 3.982266634684171e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 59.39540376641252, 'min_child_weight': 20.0, 'learning_rate': 0.052303985413111674, 'subsample': 1.0, 'reg_alpha': 7.552429491928049e-10, 'reg_lambda': 0.8221579448075783, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.255302954130746, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.08467344141565838, 'subsample': 0.6, 'reg_alpha': 3.542016367686654e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.09632527206603, 'min_child_weight': 9.87882498796911, 'learning_rate': 0.03230891344861641, 'subsample': 1.0, 'reg_alpha': 1.610359335177148e-09, 'reg_lambda': 0.1567794833153187, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.994445229121498, 'max_leaves': 5.067443241579048, 'min_child_weight': 20.0, 'learning_rate': 0.020262309608390684, 'subsample': 1.0, 'reg_alpha': 2.663576703671555e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6581167864961748, 'colsample_bytree': 0.7941631985131842}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.5843421219520777, 'learning_rate': 0.05151761612594836, 'subsample': 0.6, 'reg_alpha': 9.735995906622706e-10, 'reg_lambda': 0.01789741302728136, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.3457880057913245, 'max_leaves': 43.63705596555515, 'min_child_weight': 5.729751073631661, 'learning_rate': 0.010355562176445352, 'subsample': 0.6, 'reg_alpha': 1.2933640504930702e-09, 'reg_lambda': 0.6684106676034274, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 22.1596398755548, 'min_child_weight': 17.03236002555817, 'learning_rate': 0.1008024354877181, 'subsample': 1.0, 'reg_alpha': 2.0050481435629488e-09, 'reg_lambda': 0.03677351002901957, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.565398723205391, 'max_leaves': 15.389120234883022, 'min_child_weight': 20.0, 'learning_rate': 0.31777743485257626, 'subsample': 1.0, 'reg_alpha': 4.3346458464415435e-09, 'reg_lambda': 0.15197601394399268, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 62.83539478977128, 'min_child_weight': 4.777158590021346, 'learning_rate': 0.01, 'subsample': 0.7490800196529525, 'reg_alpha': 5.982627601563062e-10, 'reg_lambda': 0.1617347747893732, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.886596712504698, 'max_leaves': 26.363653743561375, 'min_child_weight': 20.0, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 2.4178493655793737e-09, 'reg_lambda': 0.6035303388457527, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 36.678582370711496, 'min_child_weight': 2.826351508477863, 'learning_rate': 0.17357438030771627, 'subsample': 1.0, 'reg_alpha': 1.0725470433807527e-09, 'reg_lambda': 0.040726712157713556, 'colsample_bylevel': 0.700405734572067, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.4181791618334088, 'learning_rate': 0.01718883565833452, 'subsample': 0.6159789857259503, 'reg_alpha': 5.115740713544464e-10, 'reg_lambda': 0.23476862890010575, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 27.262973845257985, 'max_leaves': 6.390056881228598, 'min_child_weight': 20.0, 'learning_rate': 0.060729295979046534, 'subsample': 1.0, 'reg_alpha': 5.0691724495071916e-09, 'reg_lambda': 0.10469800204471538, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.692340468157994, 'min_child_weight': 7.677049013637279, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 3.740787191662462e-10, 'reg_lambda': 0.9868539647680132, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.339219658813449, 'max_leaves': 112.0, 'min_child_weight': 1.5219322895603675, 'learning_rate': 0.18815702552184785, 'subsample': 1.0, 'reg_alpha': 6.996068396124326e-10, 'reg_lambda': 0.055850522046179504, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 9.043514625797558, 'learning_rate': 0.050699968027564386, 'subsample': 1.0, 'reg_alpha': 4.0767198153433233e-10, 'reg_lambda': 0.09391210776601171, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.600722404298752, 'max_leaves': 98.4279637882851, 'min_child_weight': 1.2919699105768543, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 6.419573636068593e-10, 'reg_lambda': 0.5868924724058109, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.897724296658795, 'max_leaves': 81.75004268621936, 'min_child_weight': 1.5736245785790557, 'learning_rate': 0.01915406975652735, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9729016522241255}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 7.424864190252076, 'learning_rate': 0.015425237301777412, 'subsample': 0.6, 'reg_alpha': 3.754597042363035e-09, 'reg_lambda': 0.053441560030784444, 'colsample_bylevel': 0.6084768010023497, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.961178047951436, 'learning_rate': 0.08630863016517983, 'subsample': 0.8419807971036917, 'reg_alpha': 1.1963897050206444e-09, 'reg_lambda': 0.17889350723723038, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8253062254276609}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.384837546885036, 'max_leaves': 18.274676932938267, 'min_child_weight': 3.9457096443340127, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 2.1874814651439033e-10, 'reg_lambda': 0.3080956372695289, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.832712815850496, 'min_child_weight': 18.52569504781917, 'learning_rate': 0.36558054409573554, 'subsample': 1.0, 'reg_alpha': 3.338279313291225e-10, 'reg_lambda': 0.2640118746644785, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.186436578144585, 'max_leaves': 112.0, 'min_child_weight': 0.4733196465253112, 'learning_rate': 0.020376302189208006, 'subsample': 0.642470308523451, 'reg_alpha': 4.287682940671048e-09, 'reg_lambda': 0.12121760421688647, 'colsample_bylevel': 0.6619188733925654, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.580480986011426, 'max_leaves': 112.0, 'min_child_weight': 1.86096786666351, 'learning_rate': 0.11338851456068984, 'subsample': 1.0, 'reg_alpha': 1.237466267056738e-09, 'reg_lambda': 0.04628652220658877, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 102.76618561241571, 'min_child_weight': 4.7118360229349205, 'learning_rate': 0.06569606868782733, 'subsample': 0.6, 'reg_alpha': 1.1566766419288238e-09, 'reg_lambda': 0.6914083280830606, 'colsample_bylevel': 0.6015602790440545, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 8.04336632243173, 'learning_rate': 0.04679419621701018, 'subsample': 0.6032481548851162, 'reg_alpha': 1.4399056236352094e-09, 'reg_lambda': 0.07641482564257976, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.155859396978206, 'max_leaves': 79.09809986752583, 'min_child_weight': 2.76021230627167, 'learning_rate': 0.09223309277544178, 'subsample': 0.6, 'reg_alpha': 9.291587115314225e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.308735132476855, 'max_leaves': 23.06780595625627, 'min_child_weight': 3.94394876488459, 'learning_rate': 0.3245162856822508, 'subsample': 0.6, 'reg_alpha': 2.1038430064484783e-10, 'reg_lambda': 0.3668664838119117, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 5.629231014535464, 'learning_rate': 0.013299712931084447, 'subsample': 1.0, 'reg_alpha': 6.35931887447375e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8946926078985835}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 19.976292735820355, 'learning_rate': 0.29356709685145177, 'subsample': 1.0, 'reg_alpha': 1.0747462776403902e-09, 'reg_lambda': 0.09798801698389346, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.032488520405981, 'max_leaves': 44.861223343878166, 'min_child_weight': 1.1113873330068336, 'learning_rate': 0.014701829623704924, 'subsample': 0.6, 'reg_alpha': 1.244852745078687e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7021842953440784}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 96.99949022129374, 'min_child_weight': 9.463045229575567, 'learning_rate': 0.07728671061899532, 'subsample': 0.6, 'reg_alpha': 1.846243614802902e-09, 'reg_lambda': 0.15355932104239178, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 32.483964002831335, 'max_leaves': 108.8757155448133, 'min_child_weight': 2.346115670845519, 'learning_rate': 0.05584366841943146, 'subsample': 1.0, 'reg_alpha': 7.246610594921784e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 82.85121833251483, 'min_child_weight': 2.777848385106809, 'learning_rate': 0.3243318105951077, 'subsample': 0.6, 'reg_alpha': 2.6113310812105707e-10, 'reg_lambda': 0.4182236606190898, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.6482360064449395, 'max_leaves': 112.0, 'min_child_weight': 7.9923003811359985, 'learning_rate': 0.013307277609052481, 'subsample': 1.0, 'reg_alpha': 5.123443992262794e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6222067533960455, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.07914915449583318, 'subsample': 0.6, 'reg_alpha': 2.914943022458863e-09, 'reg_lambda': 0.28023756331678684, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.413343583166206, 'max_leaves': 63.190405531751026, 'min_child_weight': 0.8193010111895667, 'learning_rate': 0.05452962155474373, 'subsample': 1.0, 'reg_alpha': 4.589801048169961e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8720449984799896}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 5.854153107121697, 'learning_rate': 0.3508181252706309, 'subsample': 0.6, 'reg_alpha': 1.486790473592105e-09, 'reg_lambda': 0.8137408900900949, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.09238727796151, 'max_leaves': 18.513052127193514, 'min_child_weight': 3.7924185276293367, 'learning_rate': 0.012302595362500909, 'subsample': 1.0, 'reg_alpha': 8.998583712682492e-10, 'reg_lambda': 0.5874664551878246, 'colsample_bylevel': 0.989194000154116, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.789868487081467, 'min_child_weight': 3.1288773088393538, 'learning_rate': 0.12695733537329604, 'subsample': 0.6, 'reg_alpha': 1.0743293189323197e-09, 'reg_lambda': 0.07471432211736952, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.530874335516828, 'max_leaves': 112.0, 'min_child_weight': 7.095643745539738, 'learning_rate': 0.03399546334479497, 'subsample': 0.7000784941974351, 'reg_alpha': 1.2453358857536915e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.71503556286785, 'max_leaves': 112.0, 'min_child_weight': 1.292749023307736, 'learning_rate': 0.04196415142102945, 'subsample': 0.7222738110096344, 'reg_alpha': 5.536704271340618e-09, 'reg_lambda': 0.22493735445403443, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 40.65237901399316, 'min_child_weight': 17.173788807220145, 'learning_rate': 0.1028490579431297, 'subsample': 0.6, 'reg_alpha': 2.4164210122419825e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.105102807101428, 'max_leaves': 51.37767059710913, 'min_child_weight': 9.099295140564347, 'learning_rate': 0.17831407002959482, 'subsample': 0.6, 'reg_alpha': 2.340239695441808e-10, 'reg_lambda': 0.12650605965248254, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.4399031314034523, 'learning_rate': 0.02420433474666023, 'subsample': 1.0, 'reg_alpha': 5.716939408341937e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7020096388981755}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.282465379096653, 'max_leaves': 8.036286915078437, 'min_child_weight': 12.564417419337436, 'learning_rate': 0.09824324001908707, 'subsample': 0.6, 'reg_alpha': 1.490996555244706e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.7670058201710017, 'learning_rate': 0.04393150551831559, 'subsample': 1.0, 'reg_alpha': 8.973198826500043e-10, 'reg_lambda': 0.355057257416873, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.4272325856932015, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.1056982026683194, 'subsample': 0.6, 'reg_alpha': 6.331292963475544e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7031390917482223, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 42.82057720775229, 'min_child_weight': 0.34233666217504366, 'learning_rate': 0.04083298799866292, 'subsample': 0.7373273829007477, 'reg_alpha': 2.113155814621006e-09, 'reg_lambda': 0.10818248167234056, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.049266602362547, 'min_child_weight': 10.203808319901663, 'learning_rate': 0.01, 'subsample': 1.0, 'reg_alpha': 5.198140274692248e-10, 'reg_lambda': 0.39379993120359963, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9910751603984955}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.913690071940037, 'max_leaves': 112.0, 'min_child_weight': 2.175795351204827, 'learning_rate': 0.6050576539737942, 'subsample': 0.6, 'reg_alpha': 2.573806752575468e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 7.35794365294817, 'learning_rate': 0.12190912860030698, 'subsample': 0.6, 'reg_alpha': 5.982976893363551e-10, 'reg_lambda': 0.0897480093972461, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.196588333642476, 'max_leaves': 17.740456851355994, 'min_child_weight': 3.0173374184690243, 'learning_rate': 0.03540320147136921, 'subsample': 0.9594947812294312, 'reg_alpha': 2.2361792094964786e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9443929965240094}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.8296688335800875, 'max_leaves': 112.0, 'min_child_weight': 9.822137468476164, 'learning_rate': 0.07136543250697563, 'subsample': 0.6, 'reg_alpha': 7.249119670157215e-10, 'reg_lambda': 0.9220163638274982, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9113459658554482}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.297913156582219, 'min_child_weight': 2.260342901764697, 'learning_rate': 0.06047708658689711, 'subsample': 1.0, 'reg_alpha': 1.8456045904325988e-09, 'reg_lambda': 0.5184782991899825, 'colsample_bylevel': 0.6886732572115724, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 40.30098573334023, 'max_leaves': 36.044042211560686, 'min_child_weight': 3.0468841490585463, 'learning_rate': 0.08110442605534923, 'subsample': 0.6, 'reg_alpha': 1.2823225008870688e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 7.286591029031135, 'learning_rate': 0.05321501736650373, 'subsample': 1.0, 'reg_alpha': 1.0433419463966547e-09, 'reg_lambda': 0.1583044044175969, 'colsample_bylevel': 0.9685144733663815, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 47.24412388777923, 'max_leaves': 22.870419427369164, 'min_child_weight': 6.091001513882927, 'learning_rate': 0.03405286646077919, 'subsample': 0.6, 'reg_alpha': 2.172810106113458e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.644950449679677, 'learning_rate': 0.12674332265116958, 'subsample': 0.6480956424796723, 'reg_alpha': 6.157467926991863e-10, 'reg_lambda': 0.17146818991387136, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.701013684462194, 'max_leaves': 60.16035678362763, 'min_child_weight': 0.3422154668509844, 'learning_rate': 0.1058711388142038, 'subsample': 0.8131354785966937, 'reg_alpha': 5.349549672720509e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.04076628899411339, 'subsample': 0.6, 'reg_alpha': 2.500959773878223e-10, 'reg_lambda': 0.38557163506080283, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 41.84032269994987, 'min_child_weight': 17.06878618482018, 'learning_rate': 0.06469420036475053, 'subsample': 0.9598369427447635, 'reg_alpha': 4.717919471241845e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 34.36325366442944, 'max_leaves': 112.0, 'min_child_weight': 1.3007016706771797, 'learning_rate': 0.06671345215957475, 'subsample': 0.6, 'reg_alpha': 2.835785693543387e-09, 'reg_lambda': 0.33129732570167175, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8140035197706568}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.445718215050364, 'max_leaves': 112.0, 'min_child_weight': 0.9947799641828534, 'learning_rate': 0.4340052656608127, 'subsample': 0.6, 'reg_alpha': 4.940683163854819e-10, 'reg_lambda': 0.8341100599442395, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 32.22259476239703, 'min_child_weight': 20.0, 'learning_rate': 0.01, 'subsample': 0.9359762228749143, 'reg_alpha': 2.7079268384817528e-09, 'reg_lambda': 0.5731203819488411, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.609405451505755, 'max_leaves': 97.80462850222175, 'min_child_weight': 1.315684045655306, 'learning_rate': 0.06271917603549373, 'subsample': 0.6, 'reg_alpha': 1.1530314336249296e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7065966510360145}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 107.97943887783977, 'min_child_weight': 16.874415084944854, 'learning_rate': 0.06881425608323126, 'subsample': 1.0, 'reg_alpha': 1.1603333742408162e-08, 'reg_lambda': 0.22185266574164478, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.1286832101936062, 'learning_rate': 0.14149291473446274, 'subsample': 1.0, 'reg_alpha': 7.277229897754519e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.244431564062454, 'max_leaves': 67.9800382647111, 'min_child_weight': 19.6701771644312, 'learning_rate': 0.0305031064568529, 'subsample': 0.6, 'reg_alpha': 1.8384754539588845e-10, 'reg_lambda': 0.1290190705667023, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 66.99401038506318, 'min_child_weight': 8.745600756396763, 'learning_rate': 0.045568097068618266, 'subsample': 0.860920770418284, 'reg_alpha': 1.47372794909537e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6932125214648581, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.110014244026855, 'max_leaves': 112.0, 'min_child_weight': 2.538579032525407, 'learning_rate': 0.09471480528441996, 'subsample': 0.6, 'reg_alpha': 9.078343494842415e-09, 'reg_lambda': 0.08327616950965737, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 35.67165180470026, 'min_child_weight': 0.853150518172249, 'learning_rate': 0.018734832792359137, 'subsample': 1.0, 'reg_alpha': 8.642415272765934e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.42370240375157, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.23037160186430727, 'subsample': 0.6, 'reg_alpha': 1.5480636046265298e-09, 'reg_lambda': 0.20136349442827978, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.876045812326558, 'max_leaves': 8.407004131875677, 'min_child_weight': 7.078078761636715, 'learning_rate': 0.04273313703266009, 'subsample': 1.0, 'reg_alpha': 1.1651009363823488e-09, 'reg_lambda': 0.40879900573033384, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.136641941222674, 'learning_rate': 0.1009982823806526, 'subsample': 0.6, 'reg_alpha': 1.1483132595686836e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 45.606813592316506, 'max_leaves': 112.0, 'min_child_weight': 1.9380385986076119, 'learning_rate': 0.04902207645832751, 'subsample': 1.0, 'reg_alpha': 5.652569079359625e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8532078877923497, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 73.92423550369426, 'min_child_weight': 11.455601928144164, 'learning_rate': 0.08804142445301419, 'subsample': 0.6, 'reg_alpha': 2.3668898782132355e-09, 'reg_lambda': 0.39936168951036954, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 9.74271778701216, 'learning_rate': 0.028376662414411762, 'subsample': 0.6, 'reg_alpha': 1.2368873174207186e-09, 'reg_lambda': 0.15885926044735632, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.36783545855775, 'max_leaves': 40.81655517191274, 'min_child_weight': 2.27876853177698, 'learning_rate': 0.1520958799877662, 'subsample': 1.0, 'reg_alpha': 1.0816675336065904e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.4558175552622075, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.41103536683700975, 'subsample': 0.6, 'reg_alpha': 1.6061770693859037e-09, 'reg_lambda': 0.2570476388456416, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 37.0655971260762, 'min_child_weight': 0.6558199984308316, 'learning_rate': 0.010500248370956275, 'subsample': 0.8349844016431471, 'reg_alpha': 8.329722043007784e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.687479285041175, 'max_leaves': 46.44462631813268, 'min_child_weight': 9.50431295519536, 'learning_rate': 0.4460961401283705, 'subsample': 1.0, 'reg_alpha': 2.194125157820281e-09, 'reg_lambda': 0.252577410214159, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.3359288369067412, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 6.097650579390178e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.509418701828242, 'max_leaves': 89.05991839675819, 'min_child_weight': 7.80035758427359, 'learning_rate': 0.16927112171219347, 'subsample': 0.6, 'reg_alpha': 2.6341338848202066e-09, 'reg_lambda': 0.19990694330255168, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.8462026858599043, 'learning_rate': 0.02549739965907501, 'subsample': 1.0, 'reg_alpha': 5.079092075363736e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.930077254191815, 'max_leaves': 80.73802395971701, 'min_child_weight': 6.312852605840514, 'learning_rate': 0.05796660498624099, 'subsample': 1.0, 'reg_alpha': 5.484551684161068e-10, 'reg_lambda': 0.6678705400160545, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.5168568146968804, 'learning_rate': 0.07445620529372336, 'subsample': 0.6, 'reg_alpha': 2.439398753133255e-09, 'reg_lambda': 0.7157756593532659, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.524754750261164, 'max_leaves': 55.83544782140174, 'min_child_weight': 0.21462957787896808, 'learning_rate': 0.10865892477936406, 'subsample': 0.6, 'reg_alpha': 5.023169245357983e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.03972037685629109, 'subsample': 0.7328807700321288, 'reg_alpha': 2.663459637996715e-09, 'reg_lambda': 0.4319904213407077, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8721581702329714}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.932434755011976, 'max_leaves': 94.60031474470549, 'min_child_weight': 14.135834647653049, 'learning_rate': 0.1632133212757947, 'subsample': 0.6, 'reg_alpha': 7.851969655919002e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 111.63693201048827, 'min_child_weight': 1.5705757219445995, 'learning_rate': 0.026443757208657492, 'subsample': 1.0, 'reg_alpha': 1.7039047686273199e-09, 'reg_lambda': 0.07241897224912136, 'colsample_bylevel': 0.9369146767282838, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 10.489562903995525, 'learning_rate': 0.030368212732510922, 'subsample': 1.0, 'reg_alpha': 1.1667940785469e-10, 'reg_lambda': 0.4220463522923578, 'colsample_bylevel': 0.9671661363787997, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.42849088539731, 'max_leaves': 30.856793703709098, 'min_child_weight': 2.116522767461602, 'learning_rate': 0.14212141751810203, 'subsample': 0.6, 'reg_alpha': 1.1466469350358146e-08, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 26.526219459838018, 'max_leaves': 112.0, 'min_child_weight': 8.44669140219903, 'learning_rate': 0.07716625369128369, 'subsample': 0.6, 'reg_alpha': 5.541262609818487e-10, 'reg_lambda': 0.3855500845764343, 'colsample_bylevel': 0.833864622445544, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.095234729448975, 'min_child_weight': 2.628413617815753, 'learning_rate': 0.055930840679430806, 'subsample': 1.0, 'reg_alpha': 2.4144332225170707e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8981045028894024}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 37.662251500607034, 'min_child_weight': 0.7415031303072135, 'learning_rate': 0.06537357257699782, 'subsample': 0.6, 'reg_alpha': 6.903665681520153e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8560291233202203}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.437793751056024, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.06602015571280459, 'subsample': 0.6220106097787773, 'reg_alpha': 1.9379571892727303e-09, 'reg_lambda': 0.09044096209587893, 'colsample_bylevel': 0.6738530349652129, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.442316397870606, 'max_leaves': 61.432716834790675, 'min_child_weight': 5.403296507260853, 'learning_rate': 0.06914751899994089, 'subsample': 1.0, 'reg_alpha': 1.41188250153787e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 4.108861817446688, 'learning_rate': 0.06241689511722635, 'subsample': 0.6, 'reg_alpha': 9.476007051057392e-10, 'reg_lambda': 0.11088376197096865, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.311763235696594, 'learning_rate': 0.5918567813251393, 'subsample': 0.6, 'reg_alpha': 3.828244704604817e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.460688368363286, 'max_leaves': 56.91486881740151, 'min_child_weight': 6.703800098909348, 'learning_rate': 0.01, 'subsample': 1.0, 'reg_alpha': 3.4948153977054857e-09, 'reg_lambda': 0.28450496848027845, 'colsample_bylevel': 0.8455799669194881, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.5391850179062821, 'learning_rate': 0.06232735370335022, 'subsample': 0.8016050872943489, 'reg_alpha': 2.0577869891084145e-09, 'reg_lambda': 0.5063992398967473, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.724852392173375, 'max_leaves': 49.88295103956744, 'min_child_weight': 20.0, 'learning_rate': 0.06924685847529789, 'subsample': 0.6, 'reg_alpha': 6.501648912472801e-10, 'reg_lambda': 0.9440090712618066, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.637052352955642, 'max_leaves': 95.98597330279334, 'min_child_weight': 20.0, 'learning_rate': 0.12247354413275287, 'subsample': 1.0, 'reg_alpha': 1.804037522133406e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 110.02533538947964, 'min_child_weight': 0.9075887429151368, 'learning_rate': 0.03524004691460149, 'subsample': 0.6, 'reg_alpha': 7.416147599865746e-09, 'reg_lambda': 0.18403106897503532, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.261187563596547, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.16130111285108842, 'subsample': 1.0, 'reg_alpha': 3.717693358276943e-10, 'reg_lambda': 0.7829806438040068, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 30.43504076137147, 'min_child_weight': 0.6394118499473933, 'learning_rate': 0.02675724528336138, 'subsample': 0.6, 'reg_alpha': 3.5987391240998526e-09, 'reg_lambda': 0.6105457139018062, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.268279655810126, 'max_leaves': 112.0, 'min_child_weight': 3.6179564982967682, 'learning_rate': 0.018643733788073966, 'subsample': 0.6, 'reg_alpha': 6.310397168056488e-10, 'reg_lambda': 0.3591005128912515, 'colsample_bylevel': 0.6207471228371708, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 26.61210698460561, 'min_child_weight': 6.136447112473287, 'learning_rate': 0.23149726820260494, 'subsample': 1.0, 'reg_alpha': 2.1201531668343383e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.284674183253639, 'max_leaves': 8.536533261590206, 'min_child_weight': 5.442212542894708, 'learning_rate': 0.11826107735261186, 'subsample': 0.6, 'reg_alpha': 6.267404762088068e-09, 'reg_lambda': 0.18884962573369, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 4.0794802724147665, 'learning_rate': 0.036495299532635334, 'subsample': 0.8757052365985523, 'reg_alpha': 2.1346967441400756e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7164212861945009, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.99816285245626, 'max_leaves': 112.0, 'min_child_weight': 1.584731730101233, 'learning_rate': 0.09889686647141446, 'subsample': 1.0, 'reg_alpha': 5.577598600590054e-09, 'reg_lambda': 0.9120820616310075, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 30.602150225894853, 'min_child_weight': 14.009562808216721, 'learning_rate': 0.043641154619223785, 'subsample': 0.6, 'reg_alpha': 2.398704083585728e-10, 'reg_lambda': 0.5241255104697055, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 7.870205053545161, 'learning_rate': 0.03927806399100835, 'subsample': 1.0, 'reg_alpha': 2.705656986496904e-09, 'reg_lambda': 0.8957117208640335, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.106690514432675, 'max_leaves': 17.973419857647684, 'min_child_weight': 2.820942854217816, 'learning_rate': 0.10988254008710188, 'subsample': 0.6, 'reg_alpha': 4.944828042360097e-10, 'reg_lambda': 0.5337046116595131, 'colsample_bylevel': 0.7520503211121419, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.69771094039513, 'max_leaves': 90.96706938638074, 'min_child_weight': 2.6829107830306658, 'learning_rate': 0.46823229806519284, 'subsample': 0.6693836884177854, 'reg_alpha': 1.1913512437236478e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 8.275116283198974, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 1.1230112538448713e-08, 'reg_lambda': 0.3726620193259882, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.0669404686404986, 'learning_rate': 0.03764140333402713, 'subsample': 0.6, 'reg_alpha': 3.2371866443972565e-10, 'reg_lambda': 0.41127921684757, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.25862812578917, 'max_leaves': 53.07751831818987, 'min_child_weight': 20.0, 'learning_rate': 0.11466026924490798, 'subsample': 0.9922632773787328, 'reg_alpha': 4.132912312298413e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.748492334438102, 'max_leaves': 112.0, 'min_child_weight': 7.823932812083319, 'learning_rate': 0.28154267227079693, 'subsample': 0.6, 'reg_alpha': 2.23621153145742e-09, 'reg_lambda': 0.09563570001681175, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 74.71410413221406, 'min_child_weight': 2.8376264521008188, 'learning_rate': 0.015329731035885329, 'subsample': 1.0, 'reg_alpha': 5.982890416059083e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.440092879796579, 'max_leaves': 39.565017803636806, 'min_child_weight': 4.16051535829305, 'learning_rate': 0.05952464419181227, 'subsample': 1.0, 'reg_alpha': 1.8047717073221347e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 5.336213616607299, 'learning_rate': 0.07250733708088922, 'subsample': 0.6, 'reg_alpha': 7.4131306943462505e-09, 'reg_lambda': 0.3726546337291228, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8429831229576885}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 30.45555660023067, 'min_child_weight': 2.4274491014151334, 'learning_rate': 0.025861053990230913, 'subsample': 0.6, 'reg_alpha': 6.007578190903932e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 55.608026081539066, 'max_leaves': 112.0, 'min_child_weight': 9.145979083180112, 'learning_rate': 0.1668908561370352, 'subsample': 1.0, 'reg_alpha': 2.2270219570499386e-09, 'reg_lambda': 0.3648872511892053, 'colsample_bylevel': 0.882831990121785, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.7497903659462959, 'learning_rate': 0.2810513883109576, 'subsample': 1.0, 'reg_alpha': 2.88155842386335e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.198282663471533, 'max_leaves': 43.41394329804158, 'min_child_weight': 20.0, 'learning_rate': 0.01535652774025972, 'subsample': 0.6, 'reg_alpha': 4.642976671595629e-10, 'reg_lambda': 0.26172997630745404, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 14.363237044396403, 'learning_rate': 0.017707415873584507, 'subsample': 1.0, 'reg_alpha': 1.997106664161874e-09, 'reg_lambda': 0.3261570114315332, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.406114745887695, 'max_leaves': 69.8154535570029, 'min_child_weight': 1.5457099704198438, 'learning_rate': 0.24373818697476862, 'subsample': 0.6, 'reg_alpha': 6.699195781539378e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 38.24307205907109, 'min_child_weight': 15.672084696004852, 'learning_rate': 0.05968430681541502, 'subsample': 0.6, 'reg_alpha': 6.483979592084776e-09, 'reg_lambda': 0.7141602753063059, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.482586895022832, 'max_leaves': 112.0, 'min_child_weight': 1.4166206434991242, 'learning_rate': 0.0723133713252914, 'subsample': 0.8101190624293804, 'reg_alpha': 2.0633946097192588e-10, 'reg_lambda': 0.6693812196955058, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8603425995979082}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.919985073197129, 'max_leaves': 112.0, 'min_child_weight': 0.3602204942778492, 'learning_rate': 0.16084841324479182, 'subsample': 1.0, 'reg_alpha': 3.025830260389833e-10, 'reg_lambda': 0.3894172493943887, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 55.91676568622944, 'min_child_weight': 20.0, 'learning_rate': 0.026832552177355563, 'subsample': 0.6, 'reg_alpha': 4.4215991607254664e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6142905932525504, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.732668914691646, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.032049513211895274, 'subsample': 0.6, 'reg_alpha': 3.646739500439702e-09, 'reg_lambda': 0.3188848067263174, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 41.40812366955057, 'min_child_weight': 1.0408427883759763, 'learning_rate': 0.1346658032682331, 'subsample': 1.0, 'reg_alpha': 3.6687590485210816e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.561654538991647, 'max_leaves': 36.84779132787233, 'min_child_weight': 1.006618258356824, 'learning_rate': 0.26323148492070736, 'subsample': 1.0, 'reg_alpha': 1.1214594881438511e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.016396114022362553, 'subsample': 0.6, 'reg_alpha': 1.1929997187844257e-09, 'reg_lambda': 0.19356482870734493, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.876023335859791, 'max_leaves': 112.0, 'min_child_weight': 15.364682959176315, 'learning_rate': 0.14974715550589696, 'subsample': 0.6, 'reg_alpha': 4.903488838167942e-10, 'reg_lambda': 0.15382416772239046, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.934522689272548, 'min_child_weight': 1.4449630211059925, 'learning_rate': 0.02882173906045091, 'subsample': 0.9427228784499893, 'reg_alpha': 2.7284672161782897e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.455948650920037, 'learning_rate': 0.12594385054717624, 'subsample': 0.6, 'reg_alpha': 2.9936171503968256e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.102199830056314, 'max_leaves': 53.37186122436672, 'min_child_weight': 6.424111278712648, 'learning_rate': 0.03426902879564606, 'subsample': 1.0, 'reg_alpha': 4.4691782107354374e-10, 'reg_lambda': 0.043158609332001864, 'colsample_bylevel': 0.780067758136111, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.097911923418633, 'max_leaves': 56.418968774200316, 'min_child_weight': 2.815240822187126, 'learning_rate': 0.6160100347606617, 'subsample': 0.6, 'reg_alpha': 7.811682825527637e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 7.886145487823374, 'learning_rate': 0.01, 'subsample': 1.0, 'reg_alpha': 1.7126922378512884e-09, 'reg_lambda': 0.0806994532836731, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.05431059110178, 'max_leaves': 19.511703363844934, 'min_child_weight': 20.0, 'learning_rate': 0.13967631041836465, 'subsample': 1.0, 'reg_alpha': 8.159133095218993e-10, 'reg_lambda': 0.2819544310685633, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.593929225183442, 'learning_rate': 0.03089982423009552, 'subsample': 0.6, 'reg_alpha': 1.639758585097368e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.04528722821666, 'max_leaves': 112.0, 'min_child_weight': 5.901605982403813, 'learning_rate': 0.015869944101137946, 'subsample': 0.6, 'reg_alpha': 3.314627898498568e-10, 'reg_lambda': 0.6547374986424329, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 77.63090272683093, 'min_child_weight': 3.761924935894179, 'learning_rate': 0.27195895672538967, 'subsample': 0.9711541188012501, 'reg_alpha': 4.036353083825099e-09, 'reg_lambda': 0.7301330336719949, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.201311753706414, 'max_leaves': 112.0, 'min_child_weight': 1.9292307170891618, 'learning_rate': 0.3720809465167784, 'subsample': 0.6, 'reg_alpha': 2.643491282079192e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.154735121778115, 'min_child_weight': 11.507902352148326, 'learning_rate': 0.011599555100683192, 'subsample': 1.0, 'reg_alpha': 5.061113168988542e-10, 'reg_lambda': 0.4173770991369228, 'colsample_bylevel': 0.6196033934639715, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.837047137961244, 'max_leaves': 112.0, 'min_child_weight': 3.6324825786142436, 'learning_rate': 0.0608617644251465, 'subsample': 0.6, 'reg_alpha': 1.5192818543946417e-10, 'reg_lambda': 0.09671981792055809, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 42.49067127624059, 'min_child_weight': 6.1119078279232335, 'learning_rate': 0.07091436605233348, 'subsample': 1.0, 'reg_alpha': 8.806139888485849e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9903285768319596}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.837571338541625, 'learning_rate': 0.0163562292928103, 'subsample': 1.0, 'reg_alpha': 6.700326743956668e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.598967672282288, 'max_leaves': 79.28812199397615, 'min_child_weight': 5.785273223211082, 'learning_rate': 0.26387337593346755, 'subsample': 0.6, 'reg_alpha': 1.996769568275838e-10, 'reg_lambda': 0.3951056937456385, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.8509301710822124, 'learning_rate': 0.03449228182424533, 'subsample': 0.6, 'reg_alpha': 1.3839235804789772e-09, 'reg_lambda': 0.37833460034488897, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.60283086331514, 'max_leaves': 58.36748924352285, 'min_child_weight': 11.994725167857805, 'learning_rate': 0.12512867264124988, 'subsample': 1.0, 'reg_alpha': 9.667447486664632e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.9440373375085787, 'learning_rate': 0.04848125309125425, 'subsample': 0.6, 'reg_alpha': 3.94513988158345e-09, 'reg_lambda': 0.19097202893877782, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 42.29400841906746, 'max_leaves': 41.981222220321285, 'min_child_weight': 5.629104596928497, 'learning_rate': 0.08902355376235738, 'subsample': 1.0, 'reg_alpha': 3.391263413064966e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 13.399661380278408, 'learning_rate': 0.0564393290431613, 'subsample': 0.8365466082090341, 'reg_alpha': 1.2858438351329443e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.767712710925531, 'max_leaves': 30.142951414542456, 'min_child_weight': 1.6568626681643719, 'learning_rate': 0.07647102675042679, 'subsample': 0.6, 'reg_alpha': 1.040484713173131e-08, 'reg_lambda': 0.2333666704783955, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 42.286056316101366, 'min_child_weight': 0.9069852351381393, 'learning_rate': 0.4244921487207705, 'subsample': 0.6, 'reg_alpha': 3.748036623026805e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.129910564958053, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.01016738107887776, 'subsample': 0.6379529352275999, 'reg_alpha': 3.569604538451097e-10, 'reg_lambda': 0.19843952245985694, 'colsample_bylevel': 0.9141313406898157, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.760783568021022, 'max_leaves': 112.0, 'min_child_weight': 7.733746134545885, 'learning_rate': 0.13310715880433968, 'subsample': 0.8703395068612694, 'reg_alpha': 3.031093079848506e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.634631449522775, 'min_child_weight': 2.870717285101421, 'learning_rate': 0.032424803292360665, 'subsample': 0.6, 'reg_alpha': 4.413922036503771e-10, 'reg_lambda': 0.13639102302860465, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 84.88863656374673, 'min_child_weight': 16.63628104738833, 'learning_rate': 0.010326507698093686, 'subsample': 0.6, 'reg_alpha': 9.415622116033479e-10, 'reg_lambda': 0.29743206608323003, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.709649266113648, 'max_leaves': 112.0, 'min_child_weight': 1.3345169298226351, 'learning_rate': 0.41795092467054207, 'subsample': 1.0, 'reg_alpha': 1.4209372864544805e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 84.72254945897217, 'min_child_weight': 1.23429054521484, 'learning_rate': 0.05455407395535892, 'subsample': 0.6, 'reg_alpha': 2.553328003287492e-10, 'reg_lambda': 0.9107102880750766, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.74578052449379, 'max_leaves': 112.0, 'min_child_weight': 17.98717392197378, 'learning_rate': 0.07911367800995847, 'subsample': 1.0, 'reg_alpha': 5.239831515031167e-09, 'reg_lambda': 0.5249149838342492, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.438134623399177, 'max_leaves': 112.0, 'min_child_weight': 8.50496604936744, 'learning_rate': 0.39242727741809813, 'subsample': 0.6, 'reg_alpha': 1.26635823224946e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 51.525724589784765, 'min_child_weight': 2.6104041542503755, 'learning_rate': 0.010998148419834286, 'subsample': 1.0, 'reg_alpha': 1.0564947736843767e-09, 'reg_lambda': 0.1916723700686434, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.992381031747558, 'max_leaves': 112.0, 'min_child_weight': 7.257946053422786, 'learning_rate': 0.07608522696509272, 'subsample': 1.0, 'reg_alpha': 6.825300852337046e-09, 'reg_lambda': 0.12965262168532266, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 67.66688638261664, 'min_child_weight': 3.0589093034877513, 'learning_rate': 0.05672551181342813, 'subsample': 0.6, 'reg_alpha': 1.960207883767689e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6473221083572036, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.130225997214287, 'max_leaves': 89.95230442638407, 'min_child_weight': 13.998519102663002, 'learning_rate': 0.10301053588361847, 'subsample': 1.0, 'reg_alpha': 1.5374304282573813e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.5859819559630204, 'learning_rate': 0.0418983689776347, 'subsample': 0.6, 'reg_alpha': 8.702187945507232e-09, 'reg_lambda': 0.09191843202839757, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.00124134888146, 'max_leaves': 81.79360708369701, 'min_child_weight': 5.089317221872476, 'learning_rate': 0.13695016964708018, 'subsample': 0.6, 'reg_alpha': 7.870402446661999e-10, 'reg_lambda': 0.1862417773936674, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 4.362353089646623, 'learning_rate': 0.03151491854415344, 'subsample': 1.0, 'reg_alpha': 1.6999141569325617e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 16.899558806726752, 'min_child_weight': 3.4476678996091383, 'learning_rate': 0.1297831719736655, 'subsample': 0.6, 'reg_alpha': 5.376108428645089e-10, 'reg_lambda': 0.7896386193842483, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.195066654236214, 'max_leaves': 112.0, 'min_child_weight': 6.439540974797526, 'learning_rate': 0.03325526241500313, 'subsample': 1.0, 'reg_alpha': 2.4886046696065695e-09, 'reg_lambda': 0.6053977913534522, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7601117275368409}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.153764191103859, 'max_leaves': 112.0, 'min_child_weight': 6.3255542048899915, 'learning_rate': 0.08917480659940899, 'subsample': 1.0, 'reg_alpha': 8.894430348743854e-10, 'reg_lambda': 0.10483867062203606, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 26.934898011005334, 'min_child_weight': 3.509795029479678, 'learning_rate': 0.048399022163557244, 'subsample': 0.6, 'reg_alpha': 1.5042007205921736e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7785454924979669, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 4.061601202064408, 'learning_rate': 0.017831027968374207, 'subsample': 0.6, 'reg_alpha': 1.8218255481795085e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.973459653402388, 'max_leaves': 31.15487338415686, 'min_child_weight': 5.4661690310074675, 'learning_rate': 0.24204849258779151, 'subsample': 1.0, 'reg_alpha': 7.343737468829887e-09, 'reg_lambda': 0.1832775971455614, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.929877124509984, 'max_leaves': 112.0, 'min_child_weight': 0.36202964864122544, 'learning_rate': 0.13289977703417605, 'subsample': 0.6, 'reg_alpha': 6.461981212056846e-10, 'reg_lambda': 0.8723310909534371, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.346719714614245, 'min_child_weight': 20.0, 'learning_rate': 0.032475400165087154, 'subsample': 0.9837593045815798, 'reg_alpha': 2.070418978451172e-09, 'reg_lambda': 0.5480092147353374, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 46.45006025723824, 'min_child_weight': 0.441218982579182, 'learning_rate': 0.10129869338816026, 'subsample': 0.6, 'reg_alpha': 1.9613298649022353e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.604267038992304, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.042606407809206506, 'subsample': 0.6749985042697061, 'reg_alpha': 6.821396430683675e-09, 'reg_lambda': 0.18755708203593455, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.0093681170255584, 'learning_rate': 0.3033387468729676, 'subsample': 0.8021860352755209, 'reg_alpha': 2.602894028873379e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.594269453711284, 'max_leaves': 90.02427528941405, 'min_child_weight': 7.3774286972146506, 'learning_rate': 0.014228229942689035, 'subsample': 0.6, 'reg_alpha': 5.140051185882621e-10, 'reg_lambda': 0.09237247626656196, 'colsample_bylevel': 0.6551265503086589, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 49.4686158287232, 'min_child_weight': 2.9062888348973464, 'learning_rate': 0.10290396250747708, 'subsample': 1.0, 'reg_alpha': 1.658314796564406e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.037382390001445, 'max_leaves': 112.0, 'min_child_weight': 7.639088875284259, 'learning_rate': 0.0419417613847681, 'subsample': 0.6, 'reg_alpha': 8.067834024972343e-10, 'reg_lambda': 0.26201958285923393, 'colsample_bylevel': 0.8688183532397198, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.1059517983139, 'max_leaves': 112.0, 'min_child_weight': 1.8236268347568763, 'learning_rate': 0.36372288373170375, 'subsample': 0.7735183073220071, 'reg_alpha': 9.55866789412792e-10, 'reg_lambda': 0.43272679805374864, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.053512595638892, 'min_child_weight': 12.174310162521289, 'learning_rate': 0.011866103657693855, 'subsample': 0.6, 'reg_alpha': 1.3996729134251433e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.07874046596326156, 'subsample': 1.0, 'reg_alpha': 1.911514913194314e-09, 'reg_lambda': 0.8643352971808991, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.125270522790329, 'max_leaves': 44.42887986860721, 'min_child_weight': 1.0800728619198305, 'learning_rate': 0.054812647959810876, 'subsample': 0.6, 'reg_alpha': 6.999165137288869e-10, 'reg_lambda': 0.5530787388896392, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.718591277299721, 'max_leaves': 11.099699341804882, 'min_child_weight': 20.0, 'learning_rate': 0.12252322253010031, 'subsample': 1.0, 'reg_alpha': 1.0888101416972711e-09, 'reg_lambda': 0.2548434534148835, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.8616647459705757, 'learning_rate': 0.035225758447345934, 'subsample': 0.6, 'reg_alpha': 1.2287733212129884e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7505521848594334, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.612664612994124, 'max_leaves': 41.467387554502174, 'min_child_weight': 4.021573660845396, 'learning_rate': 0.357350681317598, 'subsample': 0.6, 'reg_alpha': 5.8904125446000815e-09, 'reg_lambda': 0.20912972853893702, 'colsample_bylevel': 0.8518418363485651, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 5.520574923986372, 'learning_rate': 0.012077697529838692, 'subsample': 1.0, 'reg_alpha': 2.2713194429993438e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 63.52572365435138, 'min_child_weight': 20.0, 'learning_rate': 0.02851360153769892, 'subsample': 1.0, 'reg_alpha': 1.0452961181535401e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.257992586313065, 'max_leaves': 112.0, 'min_child_weight': 1.1004054574099131, 'learning_rate': 0.15136542591189028, 'subsample': 0.6, 'reg_alpha': 1.2799252104246506e-09, 'reg_lambda': 0.36045235232012435, 'colsample_bylevel': 0.678427563104816, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.38940007814015, 'min_child_weight': 0.6260467797943589, 'learning_rate': 0.016519779236786103, 'subsample': 0.6, 'reg_alpha': 1.1449908006501096e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.953104154331844, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.58212284296928, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.26126096354998224, 'subsample': 0.8414386009236058, 'reg_alpha': 1.1684817495687296e-09, 'reg_lambda': 0.4309668427519771, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.594947232816413, 'max_leaves': 91.88176843535226, 'min_child_weight': 1.2725705213184113, 'learning_rate': 0.10719552196328196, 'subsample': 1.0, 'reg_alpha': 4.687790540495907e-09, 'reg_lambda': 0.9930681086860247, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 17.44610482099336, 'learning_rate': 0.04026262815823679, 'subsample': 0.6, 'reg_alpha': 2.854011591230797e-10, 'reg_lambda': 0.4813823663868712, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 6.676422249197798, 'learning_rate': 0.032249785848125635, 'subsample': 0.8675627712811654, 'reg_alpha': 8.585898773738405e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.9605252043471735, 'max_leaves': 9.03799988484812, 'min_child_weight': 3.325343706308385, 'learning_rate': 0.1338295225078703, 'subsample': 0.6, 'reg_alpha': 1.5582537009124344e-09, 'reg_lambda': 0.23182593673537966, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 25.324010344035376, 'max_leaves': 84.99793466986668, 'min_child_weight': 1.8809766821280791, 'learning_rate': 0.034638207992465135, 'subsample': 1.0, 'reg_alpha': 3.3284900406541077e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7428228434289407}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 11.803122770192552, 'learning_rate': 0.12460152216808047, 'subsample': 0.6, 'reg_alpha': 4.0195429087743915e-10, 'reg_lambda': 0.1895792494275265, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 36.96217662031802, 'max_leaves': 31.204320457691228, 'min_child_weight': 12.640902161004494, 'learning_rate': 0.06818813973143747, 'subsample': 1.0, 'reg_alpha': 9.747443517672534e-10, 'reg_lambda': 0.6589098612007248, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.7563144168234717, 'learning_rate': 0.06329507533178662, 'subsample': 0.6, 'reg_alpha': 1.3725658954145965e-09, 'reg_lambda': 0.725509670277928, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 4.382637599975338, 'learning_rate': 0.18365899507755196, 'subsample': 0.6, 'reg_alpha': 9.345082675606502e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8353324967963822, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.71405977447821, 'max_leaves': 32.73762860450527, 'min_child_weight': 5.065761930019517, 'learning_rate': 0.023499929525440673, 'subsample': 0.8353704452540276, 'reg_alpha': 1.4316629402071178e-10, 'reg_lambda': 0.08801360163782507, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8124107929889912}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.795743262291673, 'max_leaves': 112.0, 'min_child_weight': 4.867652701229537, 'learning_rate': 0.11450436665445692, 'subsample': 1.0, 'reg_alpha': 2.0655054891238803e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8101299594909037}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 63.89365098109528, 'min_child_weight': 4.5610071362361655, 'learning_rate': 0.03769265371389864, 'subsample': 0.6, 'reg_alpha': 6.47735317591063e-10, 'reg_lambda': 0.14581337231397487, 'colsample_bylevel': 0.8102371385994988, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.660450914746843, 'max_leaves': 17.496638306909706, 'min_child_weight': 1.72271498372796, 'learning_rate': 0.032596350830641115, 'subsample': 0.6, 'reg_alpha': 3.534321974618744e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8496078089422626, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 12.887447382029082, 'learning_rate': 0.13240664464129645, 'subsample': 0.7829662483804873, 'reg_alpha': 3.785452665579691e-09, 'reg_lambda': 0.2658377535521052, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.078244155464223, 'max_leaves': 112.0, 'min_child_weight': 3.0511657955047338, 'learning_rate': 0.7672656887583497, 'subsample': 1.0, 'reg_alpha': 3.2623834212063286e-10, 'reg_lambda': 0.5406910330159301, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 61.567233216917714, 'min_child_weight': 7.276365886028341, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 4.100992070052348e-09, 'reg_lambda': 0.8841379770552414, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7338955034311866}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.888565082696823, 'max_leaves': 79.26751764445739, 'min_child_weight': 10.840575856570513, 'learning_rate': 0.01753754562262593, 'subsample': 1.0, 'reg_alpha': 1.3305797749184955e-09, 'reg_lambda': 0.09470541412838993, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7851040118271794}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.0479907156934676, 'learning_rate': 0.24609905706916632, 'subsample': 0.6, 'reg_alpha': 1.0055021722133821e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 14.843880712184664, 'learning_rate': 0.01, 'subsample': 0.8271052161357534, 'reg_alpha': 8.351416773237959e-10, 'reg_lambda': 0.5414527314185962, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.716823591667943, 'max_leaves': 34.67421410258885, 'min_child_weight': 1.49566000545956, 'learning_rate': 0.7233738582075504, 'subsample': 0.6, 'reg_alpha': 1.6020046541935638e-09, 'reg_lambda': 0.8828941999981103, 'colsample_bylevel': 0.6214798823774758, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 29.12556890089568, 'min_child_weight': 1.357224418494588, 'learning_rate': 0.03567278406187937, 'subsample': 0.6, 'reg_alpha': 6.745249030374172e-09, 'reg_lambda': 0.48668887433440594, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9889351130404933}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.178333348470647, 'max_leaves': 112.0, 'min_child_weight': 16.357942286105203, 'learning_rate': 0.12098784982829139, 'subsample': 1.0, 'reg_alpha': 1.983471400328009e-10, 'reg_lambda': 0.982240403165958, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 20.040607733511177, 'min_child_weight': 2.592215830829758, 'learning_rate': 0.3215142885633782, 'subsample': 1.0, 'reg_alpha': 3.0144758415052054e-10, 'reg_lambda': 0.34200041015598276, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.045906418058902, 'max_leaves': 112.0, 'min_child_weight': 8.56464127831539, 'learning_rate': 0.013423893103851725, 'subsample': 0.6, 'reg_alpha': 4.438253694266438e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 51.1403125649263, 'min_child_weight': 8.878647830879238, 'learning_rate': 0.7838367292720563, 'subsample': 1.0, 'reg_alpha': 5.170928262498901e-09, 'reg_lambda': 0.18020613799390703, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.5529135696058365, 'max_leaves': 112.0, 'min_child_weight': 2.5005382722594818, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 2.5873514117118827e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6417609414664166, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.859873490836002, 'max_leaves': 112.0, 'min_child_weight': 6.152677281653494, 'learning_rate': 0.1364500722214391, 'subsample': 1.0, 'reg_alpha': 1.3522869405247809e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9531578564824473}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 49.51291390454079, 'min_child_weight': 3.6084126780432535, 'learning_rate': 0.03163042254775443, 'subsample': 0.6, 'reg_alpha': 9.893616612643929e-10, 'reg_lambda': 0.029411592901066305, 'colsample_bylevel': 0.8790673369452044, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.112586954760329, 'max_leaves': 56.82635998429054, 'min_child_weight': 4.2174491555344, 'learning_rate': 0.14305640367483335, 'subsample': 1.0, 'reg_alpha': 6.525073288346828e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 5.26417696770407, 'learning_rate': 0.03016973256818281, 'subsample': 0.6, 'reg_alpha': 2.0503997347786217e-09, 'reg_lambda': 0.1351126149545022, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 4.566419374287954, 'learning_rate': 0.01752344553161769, 'subsample': 0.6, 'reg_alpha': 1.4675893787768294e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.527965836089703, 'max_leaves': 35.962961876952825, 'min_child_weight': 4.861883433667117, 'learning_rate': 0.24629707857672067, 'subsample': 0.9818818344272028, 'reg_alpha': 9.116316003178092e-10, 'reg_lambda': 0.12557727330632265, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.379519265394896, 'max_leaves': 103.54662216895998, 'min_child_weight': 1.3112016194483047, 'learning_rate': 0.35728266574468676, 'subsample': 1.0, 'reg_alpha': 5.95513747586715e-09, 'reg_lambda': 0.6918369538234981, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 101.99163124889746, 'min_child_weight': 16.93210134713571, 'learning_rate': 0.012079996750023999, 'subsample': 0.6, 'reg_alpha': 2.246633028045962e-10, 'reg_lambda': 0.6909799678965579, 'colsample_bylevel': 0.8560140400980558, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.126155274116405, 'max_leaves': 84.23379267879798, 'min_child_weight': 10.876751894087619, 'learning_rate': 0.05594459501032004, 'subsample': 0.6, 'reg_alpha': 3.4428395158284876e-10, 'reg_lambda': 0.28943593187743893, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.041179105969623, 'learning_rate': 0.07714728188200422, 'subsample': 0.8572855357168049, 'reg_alpha': 3.886038974029223e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.327918169778998, 'learning_rate': 0.026716335939728515, 'subsample': 1.0, 'reg_alpha': 1.7850706628668375e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.97299355363433, 'max_leaves': 86.30993395783302, 'min_child_weight': 16.718950920539093, 'learning_rate': 0.16154810490377391, 'subsample': 0.6, 'reg_alpha': 7.494946176724798e-09, 'reg_lambda': 0.35542802603265317, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 7.1665275736708125, 'learning_rate': 0.04896207710297904, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 0.5618695481428664, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.000972062286564, 'max_leaves': 65.21270315624126, 'min_child_weight': 3.0979297126537464, 'learning_rate': 0.08814931261919699, 'subsample': 1.0, 'reg_alpha': 1.4078697951577531e-08, 'reg_lambda': 0.8508122173958086, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.034636118831342155, 'subsample': 0.6, 'reg_alpha': 6.559029601911118e-10, 'reg_lambda': 0.4850534501175286, 'colsample_bylevel': 0.6452570273211388, 'colsample_bytree': 0.9678830346506638}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.635272891220412, 'max_leaves': 46.77974021539796, 'min_child_weight': 0.4316928521488908, 'learning_rate': 0.12460903780969278, 'subsample': 1.0, 'reg_alpha': 2.0397847474173825e-09, 'reg_lambda': 0.9855521613685723, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.3744961968022755, 'max_leaves': 30.49714028691539, 'min_child_weight': 20.0, 'learning_rate': 0.13998880329254437, 'subsample': 1.0, 'reg_alpha': 2.668890103670681e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.978210117429461, 'learning_rate': 0.030830847464395676, 'subsample': 0.6, 'reg_alpha': 5.012948461773106e-10, 'reg_lambda': 0.14211893841123122, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.01744601473845103, 'subsample': 0.6, 'reg_alpha': 2.1831306188365444e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.585022368090708, 'max_leaves': 51.35871618557977, 'min_child_weight': 0.3692069734193658, 'learning_rate': 0.2473902209610839, 'subsample': 1.0, 'reg_alpha': 6.128359166602445e-10, 'reg_lambda': 0.4460690816371829, 'colsample_bylevel': 0.6417236016268384, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.2043951975397424, 'learning_rate': 0.02418970816409645, 'subsample': 0.6, 'reg_alpha': 5.410268461563685e-09, 'reg_lambda': 0.20026783679337734, 'colsample_bylevel': 0.9105153344087149, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.31671772511387, 'max_leaves': 60.27610021121454, 'min_child_weight': 18.433649314094485, 'learning_rate': 0.17842188966304712, 'subsample': 1.0, 'reg_alpha': 2.4728918047017913e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.039905745805797, 'max_leaves': 26.61307480415465, 'min_child_weight': 3.9563478231539517, 'learning_rate': 0.018338949870278842, 'subsample': 1.0, 'reg_alpha': 1.855183415031864e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6022697850573143, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 5.611589197768888, 'learning_rate': 0.23534463377482925, 'subsample': 0.6, 'reg_alpha': 7.211690462211043e-10, 'reg_lambda': 0.16008984759235795, 'colsample_bylevel': 0.6008516088668193, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 36.64465408762926, 'min_child_weight': 16.501410089687496, 'learning_rate': 0.022624558985577095, 'subsample': 0.6, 'reg_alpha': 4.894949260272477e-09, 'reg_lambda': 0.20242888587721816, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.25691156505191, 'max_leaves': 112.0, 'min_child_weight': 1.3454243356391622, 'learning_rate': 0.1907649755200582, 'subsample': 0.635467674336303, 'reg_alpha': 2.733227216147418e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.97888153499021, 'max_leaves': 112.0, 'min_child_weight': 2.2471611635955004, 'learning_rate': 0.04299590451532645, 'subsample': 0.6, 'reg_alpha': 3.672706316016724e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 29.19076487344335, 'min_child_weight': 9.879753649491034, 'learning_rate': 0.10038103604721799, 'subsample': 1.0, 'reg_alpha': 3.642820140965631e-10, 'reg_lambda': 0.15076768500064994, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.49237562162304, 'max_leaves': 27.75474543773407, 'min_child_weight': 2.247701622233959, 'learning_rate': 0.7604107763296096, 'subsample': 1.0, 'reg_alpha': 9.167491409596844e-10, 'reg_lambda': 0.6571231048420828, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 9.877378068073604, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 1.4593968995522374e-09, 'reg_lambda': 0.7274823737288847, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 59.342507069328754, 'min_child_weight': 0.9177873743045903, 'learning_rate': 0.3577370467660765, 'subsample': 0.6717095422785867, 'reg_alpha': 2.575956546585747e-10, 'reg_lambda': 0.8366624266569264, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.006902205517844, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.012064653297867507, 'subsample': 0.6, 'reg_alpha': 5.193802107248416e-09, 'reg_lambda': 0.5713719905562771, 'colsample_bylevel': 0.6512731459395641, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 90.13623694106194, 'min_child_weight': 2.8091452052243073, 'learning_rate': 0.03130927381217928, 'subsample': 1.0, 'reg_alpha': 1.5625603777453156e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7546691816206668, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.686030518618655, 'max_leaves': 112.0, 'min_child_weight': 7.903257783092921, 'learning_rate': 0.1378496820758844, 'subsample': 0.6, 'reg_alpha': 8.562234605706912e-10, 'reg_lambda': 0.05928009096806937, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.399481681693286, 'max_leaves': 112.0, 'min_child_weight': 0.4269522752391553, 'learning_rate': 0.30840076392397064, 'subsample': 0.6, 'reg_alpha': 1.0895826822777763e-09, 'reg_lambda': 0.4424333486867137, 'colsample_bylevel': 0.6321683839248241, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 54.49331940611337, 'min_child_weight': 20.0, 'learning_rate': 0.013994691148364775, 'subsample': 0.7080234883490558, 'reg_alpha': 1.2279020910894565e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.39629613444444695, 'learning_rate': 0.06022687646840467, 'subsample': 0.6, 'reg_alpha': 9.166778310652016e-10, 'reg_lambda': 0.2295531566194555, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.596589215945149, 'max_leaves': 41.29791452367139, 'min_child_weight': 20.0, 'learning_rate': 0.07166191730530652, 'subsample': 1.0, 'reg_alpha': 1.4595104284665284e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.839184860960064, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.05546144689865737, 'subsample': 0.7565097816128419, 'reg_alpha': 3.860140524241537e-09, 'reg_lambda': 0.9654476635520092, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 35.12079596371531, 'min_child_weight': 1.0380820977575755, 'learning_rate': 0.07781934447044168, 'subsample': 0.6, 'reg_alpha': 3.465938210232953e-10, 'reg_lambda': 0.4951542110359674, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.905827165094594, 'max_leaves': 78.28563697250618, 'min_child_weight': 5.482851990028568, 'learning_rate': 0.16877396672094422, 'subsample': 0.815340985787443, 'reg_alpha': 2.1691396394995745e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 4.049242756763071, 'learning_rate': 0.02557250697420582, 'subsample': 0.6, 'reg_alpha': 6.167887164204869e-09, 'reg_lambda': 0.06310797603443477, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8052272569488}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.721105503259025, 'min_child_weight': 0.8096960590098041, 'learning_rate': 0.1645418377254743, 'subsample': 0.6, 'reg_alpha': 8.953993736543289e-10, 'reg_lambda': 0.5731791463350533, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.301149834256861, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.026230249404632304, 'subsample': 0.8181100839064143, 'reg_alpha': 1.494194538604e-09, 'reg_lambda': 0.8340245439829218, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.180840349076812, 'max_leaves': 72.00963644733494, 'min_child_weight': 2.5482921935021303, 'learning_rate': 0.3104212532704286, 'subsample': 1.0, 'reg_alpha': 6.774512278361607e-09, 'reg_lambda': 0.33918036549879393, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 8.71226571412742, 'learning_rate': 0.01390360162380955, 'subsample': 0.6, 'reg_alpha': 1.974903578309415e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.307401590962238, 'max_leaves': 112.0, 'min_child_weight': 7.791700297298566, 'learning_rate': 0.02843042636155266, 'subsample': 0.6, 'reg_alpha': 1.928122124022224e-10, 'reg_lambda': 0.13334892957161784, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 65.7608694000018, 'min_child_weight': 2.849365075646524, 'learning_rate': 0.1518082559209295, 'subsample': 0.7310389675907057, 'reg_alpha': 6.938880257194328e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 52.66634296573339, 'min_child_weight': 0.9430365235629244, 'learning_rate': 0.08723134248239724, 'subsample': 0.6, 'reg_alpha': 1.3605838622080022e-09, 'reg_lambda': 0.10785165417424732, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.5089552614293, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.04947732452824127, 'subsample': 1.0, 'reg_alpha': 9.833284747421222e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 103.10396410330733, 'min_child_weight': 20.0, 'learning_rate': 0.09307661375194956, 'subsample': 0.6561701257511299, 'reg_alpha': 7.363857748941902e-09, 'reg_lambda': 0.3101959056111966, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.746617895619243, 'max_leaves': 102.4295137163083, 'min_child_weight': 0.7095222107464106, 'learning_rate': 0.046370116692661965, 'subsample': 0.6, 'reg_alpha': 1.8168477713681813e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 80.86994062223243, 'min_child_weight': 0.8664979901094777, 'learning_rate': 0.3607870940494746, 'subsample': 0.6, 'reg_alpha': 1.9218418200205653e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.882349150013303, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 37.61307090649088, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.011962660284194862, 'subsample': 0.7857772894779438, 'reg_alpha': 6.961555524738367e-10, 'reg_lambda': 0.3385577169218781, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 112.0, 'criterion': 1.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 40.81805371709706, 'criterion': 1.8176081573410847, 'max_features': 0.1}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 80.33524228710137, 'min_child_weight': 9.142774176475307, 'learning_rate': 0.03041723136301108, 'subsample': 0.8274660425306849, 'reg_alpha': 5.89382638115282e-10, 'reg_lambda': 0.25499010137076733, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 44.300536690728656, 'max_leaves': 112.0, 'min_child_weight': 2.4283000190633803, 'learning_rate': 0.1418923829564637, 'subsample': 0.6, 'reg_alpha': 2.2700038437882353e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9298569925147757}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.84134593606701, 'max_leaves': 20.875995145338944, 'min_child_weight': 6.164099590345913, 'learning_rate': 0.039663042412502174, 'subsample': 1.0, 'reg_alpha': 5.419493792624969e-10, 'reg_lambda': 0.09972494256549148, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.601726153451276, 'learning_rate': 0.10881599540824156, 'subsample': 0.6, 'reg_alpha': 2.4686823256526307e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8785556050023691}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.029402566964007525, 'subsample': 0.6, 'reg_alpha': 3.685284235864583e-10, 'reg_lambda': 0.4234681925933966, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.12553440869474, 'max_leaves': 72.44893976121158, 'min_child_weight': 0.3143535888700556, 'learning_rate': 0.14678900132491923, 'subsample': 1.0, 'reg_alpha': 3.6303871515893083e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 9.352688790170538, 'learning_rate': 0.19604858242534956, 'subsample': 0.8019233395693103, 'reg_alpha': 9.980275637073927e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.176267222688607, 'max_leaves': 6.090792226384844, 'min_child_weight': 2.373798509190248, 'learning_rate': 0.022014815856570363, 'subsample': 0.6, 'reg_alpha': 1.3405449935809525e-09, 'reg_lambda': 0.2164464224426796, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 41.531996490570194, 'min_child_weight': 1.092805619571455, 'learning_rate': 0.02491510012764757, 'subsample': 1.0, 'reg_alpha': 9.52558336482375e-10, 'reg_lambda': 0.2222004117738752, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 26.96938785086925, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.1732272163837871, 'subsample': 0.6, 'reg_alpha': 1.4045342975259293e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.341928210528954, 'min_child_weight': 1.9816569497391214, 'learning_rate': 0.09482458439718276, 'subsample': 0.6, 'reg_alpha': 2.248333675748137e-09, 'reg_lambda': 0.9434372626260378, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 27.471976936718182, 'max_leaves': 112.0, 'min_child_weight': 11.203452095959348, 'learning_rate': 0.04551534255038564, 'subsample': 1.0, 'reg_alpha': 5.950632988399961e-10, 'reg_lambda': 0.506706163812084, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.5236533012705, 'learning_rate': 0.07425158261533242, 'subsample': 1.0, 'reg_alpha': 8.764401056355557e-10, 'reg_lambda': 0.5015195336452011, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 50.919590011692925, 'max_leaves': 61.27520595075919, 'min_child_weight': 8.797325169764868, 'learning_rate': 0.058126349486650665, 'subsample': 0.6, 'reg_alpha': 1.5265171520346548e-09, 'reg_lambda': 0.9531941311797547, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 11.608240405006365, 'min_child_weight': 4.251737132108895, 'learning_rate': 0.01858054254226994, 'subsample': 1.0, 'reg_alpha': 1.0640214048886823e-09, 'reg_lambda': 0.9860611525728229, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.603224218460104, 'max_leaves': 112.0, 'min_child_weight': 5.221724207586441, 'learning_rate': 0.23228457571769348, 'subsample': 0.6, 'reg_alpha': 1.257400319050641e-09, 'reg_lambda': 0.48480307219821084, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 4.665878218451904, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 7.347328746890021e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7918970055679959}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.340983353184617, 'max_leaves': 63.68681397727469, 'min_child_weight': 4.7582465009970605, 'learning_rate': 1.0, 'subsample': 1.0, 'reg_alpha': 1.820935063712846e-09, 'reg_lambda': 0.4609834790106049, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 32.340209052454924, 'max_leaves': 30.50202225123819, 'min_child_weight': 2.04298818841337, 'learning_rate': 0.06651944626451453, 'subsample': 0.6, 'reg_alpha': 2.0989835027668968e-10, 'reg_lambda': 0.8712210961725072, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 10.867120442957269, 'learning_rate': 0.06488288287718545, 'subsample': 1.0, 'reg_alpha': 6.374041778890157e-09, 'reg_lambda': 0.5487074156523377, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8558658539142681}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.586807173834979, 'max_leaves': 7.345108914919106, 'min_child_weight': 1.9255954435604634, 'learning_rate': 0.15453268652962626, 'subsample': 1.0, 'reg_alpha': 5.804293952625819e-10, 'reg_lambda': 0.22209149898477454, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 11.529627773721957, 'learning_rate': 0.02792919438573463, 'subsample': 0.6, 'reg_alpha': 2.3050191201610043e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7426553953428673, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.93357094458624, 'max_leaves': 27.56956532710476, 'min_child_weight': 9.711751327936271, 'learning_rate': 0.038633745149851816, 'subsample': 0.6, 'reg_alpha': 2.526014735914844e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.2860345119385306, 'learning_rate': 0.11171511910882607, 'subsample': 1.0, 'reg_alpha': 5.29648871386807e-10, 'reg_lambda': 0.254612502261182, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.02357494582619, 'max_leaves': 112.0, 'min_child_weight': 6.014004753640749, 'learning_rate': 0.3498362355950414, 'subsample': 0.6, 'reg_alpha': 1.4233499939911696e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 73.61662582986081, 'min_child_weight': 3.6916164214181775, 'learning_rate': 0.01233712520858403, 'subsample': 0.6410647101847556, 'reg_alpha': 9.399661781233271e-10, 'reg_lambda': 0.09657902979454681, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9120344305821851}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 22.571976165922745, 'min_child_weight': 2.382157818705579, 'learning_rate': 0.16590014110565268, 'subsample': 0.6, 'reg_alpha': 2.528969517470396e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.608052436645497, 'max_leaves': 112.0, 'min_child_weight': 9.319868957754865, 'learning_rate': 0.02601548987403887, 'subsample': 1.0, 'reg_alpha': 5.290300435578112e-09, 'reg_lambda': 0.12499890613245743, 'colsample_bylevel': 0.8285638631787731, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.79366109194481, 'max_leaves': 112.0, 'min_child_weight': 2.39385628421405, 'learning_rate': 0.10274217681695486, 'subsample': 0.6, 'reg_alpha': 9.424279919925207e-10, 'reg_lambda': 0.5664743058709205, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 44.774471849150416, 'min_child_weight': 9.274323965657915, 'learning_rate': 0.042007806090434044, 'subsample': 1.0, 'reg_alpha': 1.4196319138983707e-09, 'reg_lambda': 0.8438961329546038, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.431600068696908, 'max_leaves': 27.28629320604168, 'min_child_weight': 3.3486927553488792, 'learning_rate': 0.03855300654752448, 'subsample': 1.0, 'reg_alpha': 7.902611855399598e-09, 'reg_lambda': 0.16520557058439284, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 6.629870319265567, 'learning_rate': 0.11194907550764961, 'subsample': 0.6, 'reg_alpha': 1.692985659000317e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7741495384451978, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.721922367592398, 'max_leaves': 65.1040614723922, 'min_child_weight': 3.2247241462793435, 'learning_rate': 0.19750583743363564, 'subsample': 0.627812005414925, 'reg_alpha': 1.57593823579037e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 6.884743531518172, 'learning_rate': 0.021852384198446522, 'subsample': 0.6, 'reg_alpha': 8.489551326310399e-10, 'reg_lambda': 0.20680628598277645, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 79.65926827716044, 'min_child_weight': 10.49392224560808, 'learning_rate': 0.24228734009312067, 'subsample': 0.9410672321689235, 'reg_alpha': 7.03917929961458e-10, 'reg_lambda': 0.24856611916090074, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.892796529075408, 'max_leaves': 112.0, 'min_child_weight': 2.115643530360529, 'learning_rate': 0.01781345009350025, 'subsample': 0.6, 'reg_alpha': 1.9006489209004736e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 84.53179117398089, 'min_child_weight': 6.316723023850946, 'learning_rate': 0.027107260583172674, 'subsample': 0.6, 'reg_alpha': 1.1471740870899196e-08, 'reg_lambda': 0.3560156548297025, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.032712286285633, 'max_leaves': 112.0, 'min_child_weight': 3.514701946436183, 'learning_rate': 0.15921835508951968, 'subsample': 0.9228967477992482, 'reg_alpha': 1.1662579106695523e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.810570477861773, 'max_leaves': 49.449159196231875, 'min_child_weight': 1.7093425368454507, 'learning_rate': 0.14058389550820483, 'subsample': 0.6, 'reg_alpha': 1.762737346634963e-09, 'reg_lambda': 0.5532377501761697, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 12.988267844781596, 'learning_rate': 0.03070034035857141, 'subsample': 1.0, 'reg_alpha': 7.589904738432934e-10, 'reg_lambda': 0.8640868704103929, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.679814117756685, 'max_leaves': 90.26771778503942, 'min_child_weight': 1.5649562927034915, 'learning_rate': 0.7337103647745613, 'subsample': 1.0, 'reg_alpha': 1.427788332652387e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 14.186593459855569, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 9.370442546608687e-10, 'reg_lambda': 0.3975829992743735, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7441722747792449}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.4185092060214114, 'learning_rate': 0.07515320579432319, 'subsample': 1.0, 'reg_alpha': 4.76528230842753e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.156266978019692, 'max_leaves': 55.55898504653663, 'min_child_weight': 20.0, 'learning_rate': 0.05742899980670871, 'subsample': 0.6, 'reg_alpha': 2.807600405158844e-09, 'reg_lambda': 0.4152598754128927, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.711241166826296}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 6.590211652593038, 'learning_rate': 0.012756122325111344, 'subsample': 1.0, 'reg_alpha': 2.0775226938264025e-09, 'reg_lambda': 0.07146392077676376, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.5433361782376664, 'max_leaves': 40.9261957851462, 'min_child_weight': 3.3688445648466576, 'learning_rate': 0.3383452534426879, 'subsample': 0.6, 'reg_alpha': 6.43988562897275e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 57.31481808405926, 'min_child_weight': 2.3202754702996904, 'learning_rate': 0.027888190401500694, 'subsample': 0.6, 'reg_alpha': 7.475081476081473e-10, 'reg_lambda': 0.469979794491322, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 39.95599565498655, 'max_leaves': 112.0, 'min_child_weight': 9.5684322793619, 'learning_rate': 0.15475989581609711, 'subsample': 1.0, 'reg_alpha': 1.789814409735483e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.1039318110071763, 'learning_rate': 0.03601029802394033, 'subsample': 1.0, 'reg_alpha': 4.216606386684245e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.266136157804396, 'max_leaves': 8.34642031376604, 'min_child_weight': 7.152669600632486, 'learning_rate': 0.11985386619589723, 'subsample': 0.6, 'reg_alpha': 3.172932759881833e-09, 'reg_lambda': 0.4430035355704175, 'colsample_bylevel': 0.736454195032442, 'colsample_bytree': 0.9151054012554876}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.809615436500422, 'max_leaves': 74.84409677046817, 'min_child_weight': 2.8687207249142794, 'learning_rate': 0.01, 'subsample': 0.729347630292569, 'reg_alpha': 8.804332103860449e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 7.739128634660167, 'learning_rate': 0.7120931748026222, 'subsample': 0.6, 'reg_alpha': 1.5195938070045188e-09, 'reg_lambda': 0.21648689971172863, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 53.70278824630392, 'min_child_weight': 14.88058230198647, 'learning_rate': 0.04968807696239112, 'subsample': 0.6, 'reg_alpha': 1.391024933455248e-09, 'reg_lambda': 0.4651582309504354, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 32.711266817106456, 'max_leaves': 112.0, 'min_child_weight': 1.49197109739875, 'learning_rate': 0.08686134994321645, 'subsample': 1.0, 'reg_alpha': 9.618093980964457e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 91.23798015597637, 'min_child_weight': 20.0, 'learning_rate': 0.017513547566613264, 'subsample': 0.6, 'reg_alpha': 3.1871527840505193e-10, 'reg_lambda': 0.5529129718670801, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7044453187952022}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.126210204543527, 'max_leaves': 112.0, 'min_child_weight': 0.2631945786223663, 'learning_rate': 0.2464362759526476, 'subsample': 0.886906415380613, 'reg_alpha': 4.197793280193541e-09, 'reg_lambda': 0.8645944307082292, 'colsample_bylevel': 0.6167170908702535, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.808261193165865, 'max_leaves': 41.01259293278394, 'min_child_weight': 1.4078756820068226, 'learning_rate': 0.11892673508491815, 'subsample': 0.9309123982547876, 'reg_alpha': 1.0468851888757367e-08, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7750200618800014, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 15.769431201042353, 'learning_rate': 0.03629102773193899, 'subsample': 0.6, 'reg_alpha': 1.2779824074314483e-10, 'reg_lambda': 0.16743939143720699, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7524335780030927}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.038664262997324, 'max_leaves': 112.0, 'min_child_weight': 2.2002208994294747, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 7.588551556505133e-10, 'reg_lambda': 0.48435220343602614, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.614171858035743, 'min_child_weight': 10.09053168833369, 'learning_rate': 0.448873067217141, 'subsample': 0.8069536493930913, 'reg_alpha': 1.7630516759642386e-09, 'reg_lambda': 0.986979046964848, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.905010219596999}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.75867385717969, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.12475409485069473, 'subsample': 0.6, 'reg_alpha': 5.163273168047167e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 23.60800897304457, 'min_child_weight': 0.5058245711812454, 'learning_rate': 0.03459584590149982, 'subsample': 1.0, 'reg_alpha': 2.591187431769674e-09, 'reg_lambda': 0.31443041800409277, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7165953087457297}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.027861628835356984, 'subsample': 0.6, 'reg_alpha': 1.9876053302095128e-10, 'reg_lambda': 0.5496217455398896, 'colsample_bylevel': 0.8894400208992489, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.180670851329364, 'max_leaves': 69.6847365617517, 'min_child_weight': 0.7471861827054211, 'learning_rate': 0.1549074343980445, 'subsample': 0.9812837082349724, 'reg_alpha': 6.731219893854444e-09, 'reg_lambda': 0.869771765804194, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.238703052613827, 'max_leaves': 8.394407750803774, 'min_child_weight': 20.0, 'learning_rate': 0.14733314411410678, 'subsample': 0.6, 'reg_alpha': 2.258158921587822e-09, 'reg_lambda': 0.46036406212054803, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.8519086585456307, 'learning_rate': 0.029293975004653982, 'subsample': 0.7822859459542549, 'reg_alpha': 5.924741793828208e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8787038351936988}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.78587720891412, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.01972571665984365, 'subsample': 0.9831658292140564, 'reg_alpha': 1.341367032525639e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.781572559798356, 'min_child_weight': 0.8088062722545192, 'learning_rate': 0.218799322501773, 'subsample': 0.6, 'reg_alpha': 9.974159357894968e-10, 'reg_lambda': 0.23823517036539607, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 10.21550044352848, 'learning_rate': 0.12513854015564527, 'subsample': 0.6, 'reg_alpha': 2.0981465332637154e-09, 'reg_lambda': 0.07274591654601423, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 24.0302737539269, 'max_leaves': 90.92357524174388, 'min_child_weight': 2.1733050504727607, 'learning_rate': 0.034489562013969396, 'subsample': 0.7193937892363281, 'reg_alpha': 6.37658444142414e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9711958157114042, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 26.70381561616599, 'max_leaves': 68.5429315250681, 'min_child_weight': 4.994398235214296, 'learning_rate': 0.048978066999989016, 'subsample': 0.6, 'reg_alpha': 2.040003019533574e-10, 'reg_lambda': 0.9537865046737253, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 4.4452600015934784, 'learning_rate': 0.08812053446365482, 'subsample': 0.8455772132379571, 'reg_alpha': 6.5583278121305815e-09, 'reg_lambda': 0.5012080521165947, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.723832057231345, 'max_leaves': 59.84769040158403, 'min_child_weight': 0.9969488360013238, 'learning_rate': 0.1430697639843423, 'subsample': 0.7475291132999184, 'reg_alpha': 1.3956636218563464e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.03016691522261875, 'subsample': 0.6, 'reg_alpha': 9.586126864897597e-10, 'reg_lambda': 0.09412935117580414, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 38.58644153067763, 'min_child_weight': 0.7406406959173055, 'learning_rate': 0.06243250824839465, 'subsample': 0.6, 'reg_alpha': 8.918684994718385e-09, 'reg_lambda': 0.8491177655407779, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.290438410461144, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.06913022657786147, 'subsample': 1.0, 'reg_alpha': 1.5001099991490234e-10, 'reg_lambda': 0.5629907835436233, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.894769432783219, 'max_leaves': 112.0, 'min_child_weight': 8.261803942043029, 'learning_rate': 0.04868215145342207, 'subsample': 1.0, 'reg_alpha': 3.554868649928356e-09, 'reg_lambda': 0.3434633368601294, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.528471850065339, 'min_child_weight': 2.6872337885008046, 'learning_rate': 0.08865617710353553, 'subsample': 0.6, 'reg_alpha': 3.7635732448530957e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7246620225344506}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 37.97877913416802, 'min_child_weight': 0.9176891145710854, 'learning_rate': 0.44708973162015847, 'subsample': 0.6, 'reg_alpha': 1.5989965366421354e-09, 'reg_lambda': 0.35497114594594414, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.208364535709888, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.01, 'subsample': 1.0, 'reg_alpha': 8.367127903812155e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9325935442883814, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.83479004838885, 'max_leaves': 41.78502687649501, 'min_child_weight': 20.0, 'learning_rate': 0.15356839102429767, 'subsample': 0.6, 'reg_alpha': 4.42723632412886e-09, 'reg_lambda': 0.10992467506457877, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.5747230250889607, 'learning_rate': 0.02810456899527489, 'subsample': 0.6610265994795321, 'reg_alpha': 3.021977495739392e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.487018922433554, 'max_leaves': 54.14287042287088, 'min_child_weight': 1.9406559722593435, 'learning_rate': 0.09876227212947607, 'subsample': 1.0, 'reg_alpha': 3.4680942063658177e-09, 'reg_lambda': 0.809291290999514, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7554837251009351}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 11.44015169323388, 'learning_rate': 0.04370062927853201, 'subsample': 0.6, 'reg_alpha': 3.8577408062559926e-10, 'reg_lambda': 0.5906964296529175, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.014900665264461, 'max_leaves': 112.0, 'min_child_weight': 5.176712118476878, 'learning_rate': 0.1247009005144945, 'subsample': 1.0, 'reg_alpha': 6.626932246600723e-09, 'reg_lambda': 0.46423102022499363, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 62.106377936608574, 'min_child_weight': 4.288706460570844, 'learning_rate': 0.034610603638215616, 'subsample': 0.6, 'reg_alpha': 2.018884159665304e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 29.286052668222496, 'max_leaves': 112.0, 'min_child_weight': 6.817384884187954, 'learning_rate': 0.534128287478465, 'subsample': 1.0, 'reg_alpha': 8.086827573659551e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.680154333682804, 'min_child_weight': 3.256585785338372, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 1.6544199091638314e-09, 'reg_lambda': 0.4334313185057245, 'colsample_bylevel': 0.6452257937429008, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.7795829213813175, 'learning_rate': 0.05890958584674666, 'subsample': 0.6, 'reg_alpha': 2.222349953306572e-09, 'reg_lambda': 0.1233045217545447, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 28.02607032367751, 'max_leaves': 24.123632022910602, 'min_child_weight': 7.9873129656423965, 'learning_rate': 0.07326436570550225, 'subsample': 1.0, 'reg_alpha': 6.020207807474765e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7877433665813083, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.10563231832621976, 'subsample': 0.8291138249112173, 'reg_alpha': 9.346224360817403e-09, 'reg_lambda': 0.5578511409712483, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.396781867407531, 'max_leaves': 30.70301662057065, 'min_child_weight': 0.7610314753634287, 'learning_rate': 0.040858456099646424, 'subsample': 0.6, 'reg_alpha': 1.43148805585353e-10, 'reg_lambda': 0.8569409310704478, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 10.331880072484932, 'learning_rate': 0.01635260971280833, 'subsample': 0.6, 'reg_alpha': 1.69037194294359e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.2400234167435675, 'max_leaves': 31.68702241382359, 'min_child_weight': 2.1488246622366654, 'learning_rate': 0.2639317831731287, 'subsample': 1.0, 'reg_alpha': 7.914831168186207e-10, 'reg_lambda': 0.12740866760985833, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 105.35725254789743, 'min_child_weight': 1.7718067024396147, 'learning_rate': 0.07572897909564912, 'subsample': 1.0, 'reg_alpha': 7.02596122199566e-10, 'reg_lambda': 0.04319089975191869, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.05815431426419, 'max_leaves': 100.23884118014843, 'min_child_weight': 12.530372910576467, 'learning_rate': 0.05699236266719584, 'subsample': 0.6, 'reg_alpha': 1.904224648714645e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6132459985953241, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.502626378739428, 'max_leaves': 112.0, 'min_child_weight': 4.268220268864374, 'learning_rate': 0.6393583304860404, 'subsample': 0.6, 'reg_alpha': 6.934715873171902e-09, 'reg_lambda': 0.25120383550910286, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 62.74424920065174, 'min_child_weight': 5.201558801681572, 'learning_rate': 0.01, 'subsample': 1.0, 'reg_alpha': 1.9292799855861892e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6158656998902304, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.382821300966734, 'max_leaves': 42.27235717178328, 'min_child_weight': 20.0, 'learning_rate': 0.5301992805475253, 'subsample': 0.6, 'reg_alpha': 1.0292669740194745e-09, 'reg_lambda': 0.44026460368601816, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.8357146182202481, 'learning_rate': 0.01, 'subsample': 1.0, 'reg_alpha': 1.2998579452705012e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.273323268109328, 'max_leaves': 112.0, 'min_child_weight': 6.800315701824755, 'learning_rate': 0.2027951379676469, 'subsample': 0.6, 'reg_alpha': 3.0151793218632593e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.166143139930494, 'min_child_weight': 3.2647600024025034, 'learning_rate': 0.021282430556714232, 'subsample': 1.0, 'reg_alpha': 4.437218192239961e-10, 'reg_lambda': 0.13089585276695592, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 45.52709196347504, 'min_child_weight': 0.9633404027195719, 'learning_rate': 0.24819574852868845, 'subsample': 0.6, 'reg_alpha': 1.1908012359524332e-09, 'reg_lambda': 0.2068906554029401, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.783197637235476, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.017389393116606314, 'subsample': 1.0, 'reg_alpha': 1.1235299507508936e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 26.69426059351822, 'min_child_weight': 1.13299631847411, 'learning_rate': 0.015323590381196114, 'subsample': 0.6, 'reg_alpha': 3.291961254263807e-10, 'reg_lambda': 0.15926890544214628, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.256520189997214, 'max_leaves': 112.0, 'min_child_weight': 19.595296423317098, 'learning_rate': 0.28165549545959834, 'subsample': 0.8322275889027293, 'reg_alpha': 4.064145202957256e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6672160821084033, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 18.289357564314795, 'learning_rate': 0.026779459580743046, 'subsample': 0.6, 'reg_alpha': 1.3072470469164238e-09, 'reg_lambda': 0.9596604699253435, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.204963738300858, 'max_leaves': 20.21314690700704, 'min_child_weight': 1.2138971327426689, 'learning_rate': 0.1611673091468701, 'subsample': 0.9366991022020372, 'reg_alpha': 1.0234491308583358e-09, 'reg_lambda': 0.4981402184668528, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.810259997111254}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.841042642665824, 'max_leaves': 112.0, 'min_child_weight': 2.5527312629142487, 'learning_rate': 0.559031954120946, 'subsample': 0.6, 'reg_alpha': 1.0312981706254836e-09, 'reg_lambda': 0.1906019297692205, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 18.43656259778861, 'min_child_weight': 8.697115528597244, 'learning_rate': 0.01, 'subsample': 0.616757674691727, 'reg_alpha': 1.2972978059025373e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8297277210102015}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.122515678194505, 'learning_rate': 0.23042664658124973, 'subsample': 0.6, 'reg_alpha': 2.2067919425181662e-10, 'reg_lambda': 0.12454723612064693, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.454380004203998, 'max_leaves': 46.75453739631525, 'min_child_weight': 7.110099994714653, 'learning_rate': 0.018730357383011646, 'subsample': 0.9630532245061072, 'reg_alpha': 6.0626506205975365e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.135340099504027, 'max_leaves': 112.0, 'min_child_weight': 4.084885612122421, 'learning_rate': 0.19678000664773582, 'subsample': 0.6, 'reg_alpha': 2.285255546009507e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 25.948783791000896, 'min_child_weight': 5.435011115401046, 'learning_rate': 0.021932987576130807, 'subsample': 1.0, 'reg_alpha': 5.854491224493345e-10, 'reg_lambda': 0.05919791967469718, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.014901673925220493, 'subsample': 0.716012936970415, 'reg_alpha': 2.178221477573543e-09, 'reg_lambda': 0.41154223600081663, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.98199485090529, 'max_leaves': 39.83465313703934, 'min_child_weight': 0.8728369044344946, 'learning_rate': 0.2896301088518058, 'subsample': 0.6, 'reg_alpha': 6.142170884634338e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9133656777499994, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.076334484701128, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 2.197722264611121e-09, 'reg_lambda': 0.16325902916593626, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.026771129650262, 'max_leaves': 76.22298398523702, 'min_child_weight': 7.216835106012238, 'learning_rate': 0.9236635876315572, 'subsample': 0.7613298733748538, 'reg_alpha': 6.087670291771272e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.44682824597508825, 'subsample': 0.6, 'reg_alpha': 2.3104524759175433e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9108334240675594, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.172862021238567, 'max_leaves': 36.29643743023491, 'min_child_weight': 0.7854302858245795, 'learning_rate': 0.01, 'subsample': 0.830558607971411, 'reg_alpha': 5.7906443345147094e-09, 'reg_lambda': 0.33074507108586637, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9847905807637554}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 8.86196048504843, 'learning_rate': 0.010784221457518601, 'subsample': 0.9262262807115506, 'reg_alpha': 2.1389950638703633e-09, 'reg_lambda': 0.1419125274713625, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.605629926154563, 'max_leaves': 17.374830744038384, 'min_child_weight': 2.5052468632064584, 'learning_rate': 0.40021187046624435, 'subsample': 0.6, 'reg_alpha': 6.254810385410153e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.845351185312369, 'max_leaves': 58.62457547000538, 'min_child_weight': 0.657400712186853, 'learning_rate': 0.021237222954593238, 'subsample': 0.6, 'reg_alpha': 5.856599627539224e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7679603403599937}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.2032268272675575, 'subsample': 1.0, 'reg_alpha': 2.2844328434072727e-09, 'reg_lambda': 0.31047745279239936, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.4077730015051406, 'learning_rate': 0.18826007725026453, 'subsample': 1.0, 'reg_alpha': 4.663620282633244e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.545990999577237, 'max_leaves': 26.332953616371768, 'min_child_weight': 15.770581395786273, 'learning_rate': 0.022925590513267792, 'subsample': 0.6, 'reg_alpha': 2.868803146272266e-10, 'reg_lambda': 0.1754947248908966, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.594428323873064, 'max_leaves': 89.97864116472115, 'min_child_weight': 20.0, 'learning_rate': 0.04160608392479453, 'subsample': 0.6, 'reg_alpha': 1.058312877456558e-09, 'reg_lambda': 0.090035166503448, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.6593497469144158, 'learning_rate': 0.10373419062551298, 'subsample': 0.8815751969728572, 'reg_alpha': 1.2641827218422549e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.03166672477305138, 'subsample': 0.6, 'reg_alpha': 1.2281400643412611e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.84319047720216, 'max_leaves': 10.95304166190924, 'min_child_weight': 0.662586653141029, 'learning_rate': 0.13629364804751304, 'subsample': 0.9502885384577847, 'reg_alpha': 1.0893715569008424e-09, 'reg_lambda': 0.3801463453709694, 'colsample_bylevel': 0.9114351185383941, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.008914299845381, 'learning_rate': 0.010536891194557606, 'subsample': 0.6, 'reg_alpha': 6.130873965081953e-10, 'reg_lambda': 0.18152910096173872, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.6585271652245615, 'max_leaves': 18.34188364386785, 'min_child_weight': 7.3785413922118135, 'learning_rate': 0.40960596074722344, 'subsample': 1.0, 'reg_alpha': 2.182235129287732e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.432960502480434, 'min_child_weight': 7.240472971473405, 'learning_rate': 0.06523010466128072, 'subsample': 1.0, 'reg_alpha': 2.3743395004389357e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.751303112074656, 'max_leaves': 112.0, 'min_child_weight': 3.0662912208219013, 'learning_rate': 0.06616536127677873, 'subsample': 0.6, 'reg_alpha': 5.634833829519357e-10, 'reg_lambda': 0.26138920892212864, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.97635477364484, 'max_leaves': 103.5814605218558, 'min_child_weight': 20.0, 'learning_rate': 0.3123620008963612, 'subsample': 0.6, 'reg_alpha': 1.6582892294079326e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7551223623650402, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 101.95732761556415, 'min_child_weight': 0.7426399761270109, 'learning_rate': 0.013817216654556284, 'subsample': 0.812297128558292, 'reg_alpha': 8.067958413149786e-10, 'reg_lambda': 0.14786292528452571, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.50314535089083, 'max_leaves': 112.0, 'min_child_weight': 2.0760976420948043, 'learning_rate': 0.04352233158113393, 'subsample': 1.0, 'reg_alpha': 2.0975553828755193e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7891804868605183, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 9.899763858345812, 'min_child_weight': 10.693812399221128, 'learning_rate': 0.09916687098874585, 'subsample': 0.6, 'reg_alpha': 6.378381543135345e-10, 'reg_lambda': 0.3371372270746067, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.34358788810784413, 'learning_rate': 0.1354140207169999, 'subsample': 1.0, 'reg_alpha': 1.3177725698321907e-09, 'reg_lambda': 0.4072413937243155, 'colsample_bylevel': 0.6656981220566831, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.945635697680645, 'max_leaves': 24.22218351297165, 'min_child_weight': 20.0, 'learning_rate': 0.03187242663782672, 'subsample': 0.6, 'reg_alpha': 1.0152744749832764e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7646046493270446}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.3478072065470648, 'learning_rate': 0.6164778099949018, 'subsample': 0.6, 'reg_alpha': 5.266629105843264e-09, 'reg_lambda': 0.14533960663971718, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.261848655654868, 'max_leaves': 86.66755139811183, 'min_child_weight': 9.45622734486743, 'learning_rate': 0.01, 'subsample': 0.6055659577828277, 'reg_alpha': 2.5403361943588453e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9122886532753395, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.33505004804855, 'max_leaves': 112.0, 'min_child_weight': 5.293919633716934, 'learning_rate': 0.08403954715080791, 'subsample': 1.0, 'reg_alpha': 2.1513935763614746e-09, 'reg_lambda': 0.5827853208100409, 'colsample_bylevel': 0.6086973439971854, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 39.80612307951443, 'min_child_weight': 4.193754390532608, 'learning_rate': 0.051356457612637615, 'subsample': 0.6, 'reg_alpha': 6.218763822128973e-10, 'reg_lambda': 0.8202771399220474, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.220152172535247, 'min_child_weight': 9.946947708606992, 'learning_rate': 0.1209765526852956, 'subsample': 0.6, 'reg_alpha': 4.799283256011054e-09, 'reg_lambda': 0.12228312042810835, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.834287986769805, 'max_leaves': 112.0, 'min_child_weight': 2.2319810415627828, 'learning_rate': 0.03567611529039977, 'subsample': 0.9242540150385289, 'reg_alpha': 2.7877097112533067e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8290899835327578}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.19473678399423, 'max_leaves': 54.26482984724147, 'min_child_weight': 1.8015517113941644, 'learning_rate': 0.025024416917918155, 'subsample': 0.6, 'reg_alpha': 8.633134752920448e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 12.32348678453765, 'learning_rate': 0.17247048972978762, 'subsample': 0.7299456607136187, 'reg_alpha': 1.5497277550673592e-09, 'reg_lambda': 0.09931175331277989, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 17.52462021077106, 'max_leaves': 112.0, 'min_child_weight': 0.5956570905658699, 'learning_rate': 0.08011450247387, 'subsample': 1.0, 'reg_alpha': 9.970338173096948e-10, 'reg_lambda': 0.11545800799312789, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8270258261872289}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 31.58721246412069, 'min_child_weight': 20.0, 'learning_rate': 0.053872561243745065, 'subsample': 0.6, 'reg_alpha': 1.3418811185299716e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9428534314367261, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.12915584559958, 'max_leaves': 112.0, 'min_child_weight': 1.8484609237097145, 'learning_rate': 0.06658103891803963, 'subsample': 0.6, 'reg_alpha': 1.830358492990344e-10, 'reg_lambda': 0.2591051893005269, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 27.776051352530445, 'min_child_weight': 12.010748197192465, 'learning_rate': 0.06482286115043402, 'subsample': 1.0, 'reg_alpha': 7.3095017129565036e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.010954929037720992, 'subsample': 0.6310792018807689, 'reg_alpha': 2.9353690035885432e-09, 'reg_lambda': 0.8433791329285973, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.21294499364403, 'max_leaves': 32.53895188198029, 'min_child_weight': 0.9244046002033739, 'learning_rate': 0.39397548137231936, 'subsample': 0.6, 'reg_alpha': 4.5578625799622866e-10, 'reg_lambda': 0.5668215604085686, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 65.92007643571294, 'max_leaves': 97.96125288007217, 'min_child_weight': 3.1231909469317434, 'learning_rate': 0.08904049308614387, 'subsample': 0.9880611682008645, 'reg_alpha': 1.0799751639106431e-09, 'reg_lambda': 0.23625647836019925, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 107.80679702264031, 'min_child_weight': 7.10856271174776, 'learning_rate': 0.048472029875892074, 'subsample': 0.6, 'reg_alpha': 1.2388255755244736e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 7.3045811157592615, 'learning_rate': 0.053154863560543324, 'subsample': 1.0, 'reg_alpha': 9.074649706865411e-10, 'reg_lambda': 0.7692003197955818, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.797372025977705, 'max_leaves': 68.58930395586478, 'min_child_weight': 3.0393801307961086, 'learning_rate': 0.08119620956452722, 'subsample': 0.6, 'reg_alpha': 1.4743278222315886e-09, 'reg_lambda': 0.6214837199621235, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.067845369701647, 'max_leaves': 99.07220824091688, 'min_child_weight': 0.7752541918045666, 'learning_rate': 0.030236801352152065, 'subsample': 0.6, 'reg_alpha': 7.149387198642713e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 106.59789554346305, 'min_child_weight': 20.0, 'learning_rate': 0.14273908773516955, 'subsample': 0.82145558241666, 'reg_alpha': 1.871350392433265e-09, 'reg_lambda': 0.20716525276801323, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.5197543541427128, 'learning_rate': 0.6628231857596228, 'subsample': 0.6, 'reg_alpha': 3.296082093487228e-10, 'reg_lambda': 0.48816239182980264, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.725481678277426, 'max_leaves': 87.20614720949577, 'min_child_weight': 8.810937729118706, 'learning_rate': 0.01, 'subsample': 0.8992224928392423, 'reg_alpha': 4.059064113200688e-09, 'reg_lambda': 0.9792755118859777, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.811855653782265, 'min_child_weight': 9.67037334860556, 'learning_rate': 0.05131799571951826, 'subsample': 0.8736934893018493, 'reg_alpha': 1.5560041943513576e-09, 'reg_lambda': 0.9985739518600253, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 21.057944031675188, 'max_leaves': 112.0, 'min_child_weight': 2.2958160876207065, 'learning_rate': 0.08410253324437983, 'subsample': 0.6, 'reg_alpha': 8.59831135957486e-10, 'reg_lambda': 0.47872816555265313, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 62.96136249690308, 'min_child_weight': 1.793962373963315, 'learning_rate': 0.06906160311184002, 'subsample': 0.6, 'reg_alpha': 3.651199886124955e-10, 'reg_lambda': 0.11522462124933994, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7035804453621362}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 23.811419775525184, 'max_leaves': 112.0, 'min_child_weight': 12.375621155296967, 'learning_rate': 0.06249454467551725, 'subsample': 0.6994000118455573, 'reg_alpha': 3.6642772121787733e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.0263687973044662, 'learning_rate': 0.09580118664516657, 'subsample': 0.6, 'reg_alpha': 6.724648591543135e-10, 'reg_lambda': 0.18769806637259814, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.2211421242148415, 'max_leaves': 13.668279481293455, 'min_child_weight': 20.0, 'learning_rate': 0.0450513567960432, 'subsample': 1.0, 'reg_alpha': 1.989547610958101e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 66.4170327566188, 'max_leaves': 23.379023553790162, 'min_child_weight': 2.390389299283554, 'learning_rate': 0.1081062944527434, 'subsample': 0.6266392741861492, 'reg_alpha': 1.28525006876831e-09, 'reg_lambda': 0.6975891733988183, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 9.287775306591843, 'learning_rate': 0.03992342409740417, 'subsample': 0.6, 'reg_alpha': 1.0409654015937046e-09, 'reg_lambda': 0.6852822468752824, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8115667544954351}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 22.135952445343644, 'max_leaves': 112.0, 'min_child_weight': 2.9384634614150142, 'learning_rate': 0.051420524344477365, 'subsample': 0.6, 'reg_alpha': 9.853638592299398e-10, 'reg_lambda': 0.29837734563652935, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.222349740666222, 'min_child_weight': 7.555444877417705, 'learning_rate': 0.0839348391728189, 'subsample': 0.8307679867365465, 'reg_alpha': 1.3577734168465525e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.5492040782650196, 'learning_rate': 0.13640635553558866, 'subsample': 0.8129404217238306, 'reg_alpha': 4.03432100389514e-09, 'reg_lambda': 0.29613853519588207, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 19.042037181675433, 'max_leaves': 60.18261261011103, 'min_child_weight': 20.0, 'learning_rate': 0.03164055973850634, 'subsample': 0.6, 'reg_alpha': 3.316297470359935e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 9.274907405316863, 'learning_rate': 0.062174679274487256, 'subsample': 0.6, 'reg_alpha': 1.6644427021119926e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.65238635879092, 'max_leaves': 27.75525460445597, 'min_child_weight': 2.3937056982693066, 'learning_rate': 0.06941689915249377, 'subsample': 0.6369344711623607, 'reg_alpha': 8.03813103500705e-09, 'reg_lambda': 0.2358051669072037, 'colsample_bylevel': 0.9394046538418775, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 8.41803486347065, 'min_child_weight': 2.444290583626073, 'learning_rate': 0.09021170321981922, 'subsample': 0.6, 'reg_alpha': 8.833234313804302e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6130929792790942, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 35.391805448478124, 'max_leaves': 112.0, 'min_child_weight': 9.082962089593982, 'learning_rate': 0.04784272203041082, 'subsample': 0.7962537876366352, 'reg_alpha': 1.5146217189018874e-09, 'reg_lambda': 0.43719551302933374, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9651416146740887}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.3550604551733723, 'learning_rate': 0.025924231566493622, 'subsample': 1.0, 'reg_alpha': 7.729634748916548e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.225758754117116, 'max_leaves': 81.16855577389912, 'min_child_weight': 6.61728723033693, 'learning_rate': 0.16648414167901535, 'subsample': 0.6, 'reg_alpha': 1.7308720236376915e-09, 'reg_lambda': 0.24056918473577138, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.135832291161827, 'learning_rate': 0.28272538106431216, 'subsample': 0.6, 'reg_alpha': 1.143601957203915e-09, 'reg_lambda': 0.2904972515043685, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 25.928607565517783, 'max_leaves': 70.30555773543618, 'min_child_weight': 7.07990627228395, 'learning_rate': 0.015265603055475105, 'subsample': 1.0, 'reg_alpha': 1.1699008081928107e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.124655979029278, 'max_leaves': 112.0, 'min_child_weight': 7.237014050340644, 'learning_rate': 0.013955990327623728, 'subsample': 0.6, 'reg_alpha': 2.69451059144159e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 88.5985037955733, 'min_child_weight': 3.067756750587234, 'learning_rate': 0.30925597823702444, 'subsample': 0.675574545424088, 'reg_alpha': 4.965283336548141e-10, 'reg_lambda': 0.47272853336029386, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 15.652486778518087, 'criterion': 1.0, 'max_features': 0.4275073544232413}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 112.0, 'criterion': 2.0, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.2358426514215433, 'learning_rate': 0.20587856442409305, 'subsample': 0.8849150903055429, 'reg_alpha': 5.614629651285017e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.975649221398865, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.148575552048524, 'max_leaves': 20.18047471115953, 'min_child_weight': 17.96458366402044, 'learning_rate': 0.02096368533124786, 'subsample': 0.6, 'reg_alpha': 2.3828835329816202e-09, 'reg_lambda': 0.1526097178182327, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 39.19885219363987, 'max_leaves': 24.694880682908373, 'min_child_weight': 1.0072111887341937, 'learning_rate': 0.0628942169974111, 'subsample': 0.7342310954872796, 'reg_alpha': 1.0054548594294278e-09, 'reg_lambda': 0.5943423396998565, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.06862273905426605, 'subsample': 0.6, 'reg_alpha': 1.3306423868128381e-09, 'reg_lambda': 0.8043268066414831, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 7.680498062372853, 'min_child_weight': 5.336264656974323, 'learning_rate': 0.021476946234491118, 'subsample': 1.0, 'reg_alpha': 1.4017131746114117e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6866022453025287, 'colsample_bytree': 0.8496514110703641}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.601647019749488, 'max_leaves': 112.0, 'min_child_weight': 4.160475563746763, 'learning_rate': 0.20095843207468883, 'subsample': 0.6, 'reg_alpha': 9.544754791611619e-10, 'reg_lambda': 0.28794333533133853, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 71.11008282905428, 'min_child_weight': 4.9450094745228, 'learning_rate': 0.39580171193182406, 'subsample': 0.6, 'reg_alpha': 3.0119102809304163e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.458991405955462, 'max_leaves': 112.0, 'min_child_weight': 4.489657466059684, 'learning_rate': 0.010904382954713302, 'subsample': 0.7161147650623633, 'reg_alpha': 4.442034221452461e-10, 'reg_lambda': 0.22530874082482794, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.4624367338277064, 'learning_rate': 0.2666817216727572, 'subsample': 0.6, 'reg_alpha': 5.188962706619608e-09, 'reg_lambda': 0.16304273639510303, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.0550273396937495, 'max_leaves': 36.959025525871056, 'min_child_weight': 6.412073465522542, 'learning_rate': 0.01618398671631429, 'subsample': 1.0, 'reg_alpha': 2.5783589700441824e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 10.95425426648456, 'learning_rate': 0.023042343120401425, 'subsample': 0.6, 'reg_alpha': 4.6468555160090556e-10, 'reg_lambda': 0.36187049891415485, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.59697277002473, 'max_leaves': 89.6111941708017, 'min_child_weight': 2.026737573086483, 'learning_rate': 0.18730618750375322, 'subsample': 0.7899715781298383, 'reg_alpha': 2.879153116283664e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 29.012145758822932, 'min_child_weight': 4.313189176050549, 'learning_rate': 0.03498436797059406, 'subsample': 0.6, 'reg_alpha': 1.0280108720552981e-08, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.931609170421173, 'max_leaves': 112.0, 'min_child_weight': 5.147327835816441, 'learning_rate': 0.12336862694399676, 'subsample': 0.8708110120002869, 'reg_alpha': 1.3014462106892707e-10, 'reg_lambda': 0.37222937813459334, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.3959424091607, 'max_leaves': 112.0, 'min_child_weight': 7.281717562133662, 'learning_rate': 0.01, 'subsample': 0.9022956929959282, 'reg_alpha': 3.7816488092244446e-10, 'reg_lambda': 0.30508183926732646, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 73.32801220724838, 'min_child_weight': 3.0489233505126223, 'learning_rate': 0.8493402401396456, 'subsample': 0.6, 'reg_alpha': 3.537877051724754e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6779598469937931, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 15.517879377970859, 'learning_rate': 0.2454492107555502, 'subsample': 1.0, 'reg_alpha': 1.5182411002757866e-09, 'reg_lambda': 0.5158669169655083, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.842540733604803, 'max_leaves': 73.62641081029058, 'min_child_weight': 1.4306979817451226, 'learning_rate': 0.017583977669963367, 'subsample': 0.6, 'reg_alpha': 8.812176496478144e-10, 'reg_lambda': 0.9266837248541294, 'colsample_bylevel': 0.7344487634642939, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.018562864118749543, 'subsample': 0.6, 'reg_alpha': 4.355594596095208e-09, 'reg_lambda': 0.12858666221739498, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.038032802447587, 'max_leaves': 90.82062822812561, 'min_child_weight': 0.9149173201488626, 'learning_rate': 0.23250579293291007, 'subsample': 1.0, 'reg_alpha': 3.071683611654696e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.0334393563453852, 'learning_rate': 0.19648682757988425, 'subsample': 1.0, 'reg_alpha': 3.871199474387683e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9354492109416, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 31.93069866020116, 'max_leaves': 83.42962809149762, 'min_child_weight': 20.0, 'learning_rate': 0.021965713906602784, 'subsample': 0.6, 'reg_alpha': 3.456036979844237e-10, 'reg_lambda': 0.22312225231034447, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.429804080801121, 'max_leaves': 48.26256059122824, 'min_child_weight': 5.435016284985699, 'learning_rate': 0.020814569519856895, 'subsample': 0.6, 'reg_alpha': 6.408210708678061e-10, 'reg_lambda': 0.8964832224503775, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 4.084881726731678, 'learning_rate': 0.20735348078749985, 'subsample': 1.0, 'reg_alpha': 2.087791607994322e-09, 'reg_lambda': 0.5332453125402178, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 26.955436787065143, 'max_leaves': 95.4197713803573, 'min_child_weight': 20.0, 'learning_rate': 0.07689865830023504, 'subsample': 0.6, 'reg_alpha': 6.307985671060419e-10, 'reg_lambda': 0.622867486801773, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.874584051079015}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 110.6782038203405, 'min_child_weight': 0.4271967589763376, 'learning_rate': 0.056125471320772516, 'subsample': 1.0, 'reg_alpha': 2.120963685954013e-09, 'reg_lambda': 0.7674914588931672, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 15.634727338878559, 'min_child_weight': 1.5719807341740928, 'learning_rate': 0.023282194928853667, 'subsample': 1.0, 'reg_alpha': 1.3756694701931663e-09, 'reg_lambda': 0.2188544706180338, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.6982055902817015, 'max_leaves': 112.0, 'min_child_weight': 14.123200255817144, 'learning_rate': 0.18537657013114917, 'subsample': 0.6, 'reg_alpha': 9.725452828402725e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.18225177160044, 'max_leaves': 112.0, 'min_child_weight': 5.3058591330755025, 'learning_rate': 0.3396468549696018, 'subsample': 1.0, 'reg_alpha': 2.025303602153645e-10, 'reg_lambda': 0.5601954010412263, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 65.38574620970954, 'min_child_weight': 4.184317402742333, 'learning_rate': 0.012707238055897806, 'subsample': 0.6, 'reg_alpha': 6.6059273906443356e-09, 'reg_lambda': 0.8533548744850058, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 39.73183761238484, 'min_child_weight': 3.6667872328214446, 'learning_rate': 0.035874621019346915, 'subsample': 0.6, 'reg_alpha': 2.1445908052693963e-10, 'reg_lambda': 0.4053009984737761, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.788193001673631}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 40.113412426551875, 'max_leaves': 112.0, 'min_child_weight': 6.054727830483934, 'learning_rate': 0.12030715080469156, 'subsample': 0.7250708634201702, 'reg_alpha': 6.238490115207212e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 4.134981287764908, 'learning_rate': 0.13345898349818697, 'subsample': 1.0, 'reg_alpha': 1.6546161235572736e-09, 'reg_lambda': 0.3769542885449957, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.23132945146875, 'max_leaves': 48.09225549094066, 'min_child_weight': 5.369165459761426, 'learning_rate': 0.03233932499639006, 'subsample': 0.6, 'reg_alpha': 8.085868588705492e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8898020739923019}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 42.95062502757917, 'min_child_weight': 4.7783125775450035, 'learning_rate': 0.1669581210713663, 'subsample': 1.0, 'reg_alpha': 5.7125536747212e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.905110980277777, 'max_leaves': 112.0, 'min_child_weight': 4.646284299474142, 'learning_rate': 0.025850634957678177, 'subsample': 0.6, 'reg_alpha': 2.342036381914672e-10, 'reg_lambda': 0.09053090647344823, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 11.287680273884831, 'max_leaves': 72.11373486328914, 'min_child_weight': 3.459956092687804, 'learning_rate': 0.19283215020628855, 'subsample': 1.0, 'reg_alpha': 5.8703601876646654e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 6.416670649071856, 'learning_rate': 0.022382022066437426, 'subsample': 0.6, 'reg_alpha': 2.2790779632143516e-10, 'reg_lambda': 0.10004691906558838, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.683588210161895, 'max_leaves': 77.68925468339872, 'min_child_weight': 20.0, 'learning_rate': 0.22339869472138554, 'subsample': 0.6, 'reg_alpha': 3.909633605903624e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.4493429707357348, 'learning_rate': 0.01931960008279568, 'subsample': 1.0, 'reg_alpha': 3.4220619854594137e-10, 'reg_lambda': 0.23347397757499708, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 4.034641013908263, 'learning_rate': 0.06403170081766414, 'subsample': 1.0, 'reg_alpha': 6.863804772513662e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.10483829161172, 'max_leaves': 33.76563433645412, 'min_child_weight': 5.502694943737062, 'learning_rate': 0.06740369826073866, 'subsample': 0.6, 'reg_alpha': 1.9492116957367577e-09, 'reg_lambda': 0.050668381973569654, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 29.430716854826322, 'max_leaves': 38.49231076410101, 'min_child_weight': 4.105369380242138, 'learning_rate': 0.08249577920593276, 'subsample': 0.6, 'reg_alpha': 5.753480128251457e-10, 'reg_lambda': 0.5616280131096911, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 5.4078930909056755, 'learning_rate': 0.05231750621158252, 'subsample': 1.0, 'reg_alpha': 2.325376683607913e-09, 'reg_lambda': 0.851178119652031, 'colsample_bylevel': 0.7380890596571219, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 21.340664326297436, 'min_child_weight': 3.6403282163397668, 'learning_rate': 0.08014586310896034, 'subsample': 1.0, 'reg_alpha': 2.527515039229863e-09, 'reg_lambda': 0.06639539948037608, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9187830701402706}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.863785536122805, 'max_leaves': 112.0, 'min_child_weight': 6.098735440220817, 'learning_rate': 0.053851481207059314, 'subsample': 0.6, 'reg_alpha': 5.293344780220974e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 104.33744738429169, 'min_child_weight': 2.7707153959336197, 'learning_rate': 0.010959479039172727, 'subsample': 1.0, 'reg_alpha': 4.029102890007452e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9121971829940018}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.2090431595737225, 'max_leaves': 101.2185861364618, 'min_child_weight': 8.01287593074719, 'learning_rate': 0.3938119162059657, 'subsample': 0.6, 'reg_alpha': 3.3205924259265216e-10, 'reg_lambda': 0.07946052518973694, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.331235509867902, 'min_child_weight': 6.207526554862201, 'learning_rate': 0.0646420334482128, 'subsample': 0.6, 'reg_alpha': 2.331544420615099e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.514694391435598, 'max_leaves': 112.0, 'min_child_weight': 3.5765289944087897, 'learning_rate': 0.06676729073650535, 'subsample': 1.0, 'reg_alpha': 5.738260194205438e-10, 'reg_lambda': 0.4067479848123988, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.319113206462717, 'max_leaves': 90.06887110207262, 'min_child_weight': 2.3531657121458567, 'learning_rate': 0.045894184498186205, 'subsample': 0.6, 'reg_alpha': 1.3355700509054122e-09, 'reg_lambda': 0.7618893340970494, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 9.434694119685124, 'learning_rate': 0.09404183750571489, 'subsample': 1.0, 'reg_alpha': 1.0017451747115384e-09, 'reg_lambda': 0.6274473926179412, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.195402093922397, 'max_leaves': 37.6781886736398, 'min_child_weight': 12.560530013926167, 'learning_rate': 0.0738681247585096, 'subsample': 1.0, 'reg_alpha': 2.196198840917546e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8221384866546629, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.7675526974110118, 'learning_rate': 0.05842808999342477, 'subsample': 0.6, 'reg_alpha': 6.091893088445403e-09, 'reg_lambda': 0.08606281927294032, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.1400756571569284, 'learning_rate': 0.033161640418626404, 'subsample': 1.0, 'reg_alpha': 2.2748096808584267e-09, 'reg_lambda': 0.6014807330926675, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.910716560773255}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.568119633018516, 'max_leaves': 21.27658273901311, 'min_child_weight': 10.374118612480052, 'learning_rate': 0.13014957603278, 'subsample': 0.6, 'reg_alpha': 5.881374891454073e-10, 'reg_lambda': 0.7947810292852103, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 14.392160929332297, 'max_leaves': 112.0, 'min_child_weight': 0.5535571151671234, 'learning_rate': 0.07736020867474429, 'subsample': 1.0, 'reg_alpha': 2.025028526713783e-10, 'reg_lambda': 0.7386794291866433, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 66.2933687959294, 'min_child_weight': 20.0, 'learning_rate': 0.05579061270609989, 'subsample': 0.6, 'reg_alpha': 6.606824725352815e-09, 'reg_lambda': 0.6471622970047874, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 14.876234544095222, 'min_child_weight': 11.722196741381827, 'learning_rate': 0.032036510882580166, 'subsample': 0.6, 'reg_alpha': 4.948054577501219e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6944898462665059, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.261266467287838, 'max_leaves': 112.0, 'min_child_weight': 1.8939623004834536, 'learning_rate': 0.13472045869335086, 'subsample': 0.6196130435023096, 'reg_alpha': 2.7038926774720097e-09, 'reg_lambda': 0.38582734226680726, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.6397302412893175, 'max_leaves': 13.015399474744807, 'min_child_weight': 2.8293297478948167, 'learning_rate': 0.07370207938916382, 'subsample': 0.8015005818899608, 'reg_alpha': 3.182035888864687e-10, 'reg_lambda': 0.3168318096118878, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 7.846875650866173, 'learning_rate': 0.05855972418697172, 'subsample': 0.6, 'reg_alpha': 4.20454357119488e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8910231185473526}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.246984922562387, 'max_leaves': 8.258644404893078, 'min_child_weight': 10.190893246996975, 'learning_rate': 0.055706970959333635, 'subsample': 0.6, 'reg_alpha': 5.389926567222405e-09, 'reg_lambda': 0.4052512823523367, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8878030033664495}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.178552769510113, 'learning_rate': 0.07747636187554353, 'subsample': 1.0, 'reg_alpha': 2.482224641277816e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 24.05663917080007, 'min_child_weight': 2.623127776396334, 'learning_rate': 0.3350955481553554, 'subsample': 1.0, 'reg_alpha': 2.5781552291036747e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.474502867518789, 'max_leaves': 112.0, 'min_child_weight': 8.463712254813435, 'learning_rate': 0.012879829245104668, 'subsample': 0.6, 'reg_alpha': 5.189372768872714e-10, 'reg_lambda': 0.39940370660622343, 'colsample_bylevel': 0.8581082481410258, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.87320347447329, 'max_leaves': 20.12459810611955, 'min_child_weight': 1.5340768231728064, 'learning_rate': 0.02265016575272077, 'subsample': 0.6, 'reg_alpha': 8.167519262079545e-10, 'reg_lambda': 0.49925616102352105, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 14.472155743224008, 'learning_rate': 0.1905493093584662, 'subsample': 0.8211422801803586, 'reg_alpha': 1.6380749295510024e-09, 'reg_lambda': 0.9575154268754059, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 20.501249626403013, 'max_leaves': 87.57347652079568, 'min_child_weight': 0.44070041209433697, 'learning_rate': 0.031747908651023074, 'subsample': 0.9411362242915906, 'reg_alpha': 5.833216524015225e-10, 'reg_lambda': 0.8695694107286676, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.13594512597593245, 'subsample': 0.6, 'reg_alpha': 2.293590249008642e-09, 'reg_lambda': 0.5497496464854122, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.1043771816078323, 'learning_rate': 1.0, 'subsample': 0.9644606334639242, 'reg_alpha': 4.561093996543394e-10, 'reg_lambda': 0.7669411916895228, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9938502302020419}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.819455679454803, 'max_leaves': 36.46740464378503, 'min_child_weight': 7.15164344028857, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 2.933289370922114e-09, 'reg_lambda': 0.6233143835833219, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 110.43339077062147, 'min_child_weight': 20.0, 'learning_rate': 0.17687507942247374, 'subsample': 1.0, 'reg_alpha': 1.8636138231635713e-09, 'reg_lambda': 0.14887860829828814, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8903635410399797}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.049286718163089, 'max_leaves': 95.63130165278766, 'min_child_weight': 0.5949219610712377, 'learning_rate': 0.024401252313938693, 'subsample': 0.6, 'reg_alpha': 7.179067022118302e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 95.46014701365547, 'min_child_weight': 20.0, 'learning_rate': 0.05748164026503394, 'subsample': 0.6, 'reg_alpha': 8.234256974480474e-10, 'reg_lambda': 0.09718282890957602, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 28.37377786683477, 'max_leaves': 110.63139158810174, 'min_child_weight': 0.7909439823251765, 'learning_rate': 0.07508438209375755, 'subsample': 0.7885621553593162, 'reg_alpha': 1.6247985193201393e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6251643836658828, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.42216333138413, 'max_leaves': 112.0, 'min_child_weight': 0.9593544016951767, 'learning_rate': 0.08400016931088802, 'subsample': 0.6, 'reg_alpha': 5.73140075642879e-10, 'reg_lambda': 0.7855982984932873, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 68.34076668906606, 'min_child_weight': 20.0, 'learning_rate': 0.051380532639906176, 'subsample': 1.0, 'reg_alpha': 2.334334852580402e-09, 'reg_lambda': 0.6085113435956582, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.603446056562685, 'min_child_weight': 1.8992513758403637, 'learning_rate': 0.05395202042794187, 'subsample': 0.6, 'reg_alpha': 2.2813878522560547e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 30.96833929302776, 'max_leaves': 112.0, 'min_child_weight': 11.689552520241664, 'learning_rate': 0.07999651184148193, 'subsample': 1.0, 'reg_alpha': 5.864416489553479e-10, 'reg_lambda': 0.2218053534335114, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 12.790576527378494, 'max_leaves': 112.0, 'min_child_weight': 8.989514332264195, 'learning_rate': 0.14123069194300786, 'subsample': 0.6, 'reg_alpha': 3.1607622892804176e-09, 'reg_lambda': 0.5191291898449925, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 36.331083845284404, 'min_child_weight': 2.4696994616654986, 'learning_rate': 0.030559741524012297, 'subsample': 0.6509098893331419, 'reg_alpha': 4.232842370086389e-10, 'reg_lambda': 0.9208603282072301, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 88.30317453058001, 'min_child_weight': 3.629658362379982, 'learning_rate': 0.2818334958535717, 'subsample': 0.6, 'reg_alpha': 9.908680523378035e-09, 'reg_lambda': 0.1946277517238438, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.648112856211686, 'max_leaves': 112.0, 'min_child_weight': 6.1166634681479, 'learning_rate': 0.015313912308273381, 'subsample': 0.9763986997912024, 'reg_alpha': 1.3502310936629408e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 13.113531767350487, 'min_child_weight': 1.4532005283426421, 'learning_rate': 0.0425136623837382, 'subsample': 0.6, 'reg_alpha': 5.296956575600887e-09, 'reg_lambda': 0.5217003761256788, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.673482370567445, 'max_leaves': 112.0, 'min_child_weight': 15.277587830461085, 'learning_rate': 0.10151968094582742, 'subsample': 1.0, 'reg_alpha': 2.525791621827613e-10, 'reg_lambda': 0.9163218928319328, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.347849921069327, 'max_leaves': 97.14140282352578, 'min_child_weight': 4.172694717609699, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 2.0926882171053845e-09, 'reg_lambda': 0.6232383188072116, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 108.71666043891877, 'min_child_weight': 5.320638151008827, 'learning_rate': 0.83520278152778, 'subsample': 1.0, 'reg_alpha': 6.393216357065988e-10, 'reg_lambda': 0.7670347950644683, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 42.104413594630756, 'max_leaves': 112.0, 'min_child_weight': 6.059472438258169, 'learning_rate': 0.04559899147701613, 'subsample': 1.0, 'reg_alpha': 2.7776729647598073e-09, 'reg_lambda': 0.30229002246378966, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 77.92466633832396, 'min_child_weight': 3.663916113695385, 'learning_rate': 0.09465063373630016, 'subsample': 0.6, 'reg_alpha': 4.816624818535584e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 51.28008266953802, 'min_child_weight': 3.2216294489058686, 'learning_rate': 0.026802242754790928, 'subsample': 1.0, 'reg_alpha': 8.052479172378529e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.21684279450156, 'max_leaves': 112.0, 'min_child_weight': 6.891357016421369, 'learning_rate': 0.1610303093111207, 'subsample': 0.6, 'reg_alpha': 1.6614769505681977e-10, 'reg_lambda': 0.4245433375372158, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 38.14651478482627, 'max_leaves': 112.0, 'min_child_weight': 2.808266460126594, 'learning_rate': 0.030786306257586323, 'subsample': 1.0, 'reg_alpha': 8.065253931501138e-09, 'reg_lambda': 0.3198221685681253, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 86.0675851380696, 'min_child_weight': 7.905730820866034, 'learning_rate': 0.1401913371784311, 'subsample': 0.6, 'reg_alpha': 1.6588452953206953e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 52.34704982273646, 'min_child_weight': 4.055053315433055, 'learning_rate': 0.028646544342527322, 'subsample': 0.6, 'reg_alpha': 1.0870682340717993e-09, 'reg_lambda': 0.8449745488085695, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.455140142620387, 'max_leaves': 112.0, 'min_child_weight': 5.474995513013666, 'learning_rate': 0.15066296965628884, 'subsample': 1.0, 'reg_alpha': 1.2307422956996958e-09, 'reg_lambda': 0.5657513315834976, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.8812701111941886, 'learning_rate': 0.5480705968551853, 'subsample': 0.9399500311370731, 'reg_alpha': 4.050854816175024e-10, 'reg_lambda': 0.40334881723521276, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.685992508275245, 'max_leaves': 38.0302750656423, 'min_child_weight': 20.0, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 3.3027617989208482e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 68.13278308646379, 'min_child_weight': 9.12711913348925, 'learning_rate': 0.01056356911518662, 'subsample': 0.6, 'reg_alpha': 4.296432238570085e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6394275022228573, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.467151645135048, 'max_leaves': 112.0, 'min_child_weight': 2.432465094661221, 'learning_rate': 0.408571515363203, 'subsample': 1.0, 'reg_alpha': 3.113981042161189e-09, 'reg_lambda': 0.1858341485021319, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.7688276818250057, 'learning_rate': 0.012463490879420629, 'subsample': 0.6, 'reg_alpha': 2.047248621697374e-10, 'reg_lambda': 0.19906560175398597, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.53681833107981, 'max_leaves': 76.35362881911684, 'min_child_weight': 5.890796974903461, 'learning_rate': 0.3462892926862203, 'subsample': 0.649590816836009, 'reg_alpha': 6.535116642914072e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.046301864709716, 'max_leaves': 12.135626797681605, 'min_child_weight': 7.390880109835506, 'learning_rate': 0.268069128532394, 'subsample': 1.0, 'reg_alpha': 4.727330316075394e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.003891062646569, 'learning_rate': 0.01610022558235077, 'subsample': 0.6, 'reg_alpha': 2.830140405958471e-09, 'reg_lambda': 0.35186544798034636, 'colsample_bylevel': 0.6528948232401132, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.379773994529875, 'max_leaves': 112.0, 'min_child_weight': 1.559807684865619, 'learning_rate': 0.0547004034822524, 'subsample': 1.0, 'reg_alpha': 1.2065416374576569e-08, 'reg_lambda': 0.7505687310104516, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 81.70140817811073, 'min_child_weight': 14.233420518722388, 'learning_rate': 0.07890204031924644, 'subsample': 0.6, 'reg_alpha': 1.1088725100303003e-10, 'reg_lambda': 0.6369109934796316, 'colsample_bylevel': 0.9411697651041252, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 6.134532068897774, 'max_leaves': 112.0, 'min_child_weight': 12.277375216181028, 'learning_rate': 0.0870478962657212, 'subsample': 0.6, 'reg_alpha': 1.6382864556283077e-09, 'reg_lambda': 0.5519632141085428, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 60.18428236094303, 'min_child_weight': 1.8083180090290574, 'learning_rate': 0.04958159388322087, 'subsample': 1.0, 'reg_alpha': 8.166464719203427e-10, 'reg_lambda': 0.8660821299743469, 'colsample_bylevel': 0.9141652425573062, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 2.320679502646065, 'learning_rate': 0.07790556274938285, 'subsample': 0.6895974504626956, 'reg_alpha': 5.9795901358300525e-09, 'reg_lambda': 0.28645121523901673, 'colsample_bylevel': 0.9259577481877977, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.226827386752824, 'max_leaves': 37.760525585064954, 'min_child_weight': 9.566766406870437, 'learning_rate': 0.05540006757822846, 'subsample': 0.6, 'reg_alpha': 2.23744575061585e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 9.797880294221121, 'max_leaves': 37.40434309148087, 'min_child_weight': 5.636672675638928, 'learning_rate': 0.026140792190944964, 'subsample': 0.8837192145965567, 'reg_alpha': 9.407236506745293e-09, 'reg_lambda': 0.10952666203974105, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 3.938741875677675, 'learning_rate': 0.1651049214388674, 'subsample': 0.6, 'reg_alpha': 1.42220390975014e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.625463381411454, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.05717901827586203, 'subsample': 0.7555492152397133, 'reg_alpha': 4.367867972871253e-09, 'reg_lambda': 0.23506202721430436, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 18.316343727657284, 'max_leaves': 64.93772699789393, 'min_child_weight': 0.6049438441728808, 'learning_rate': 0.07548176885817054, 'subsample': 0.6, 'reg_alpha': 3.0630524143436064e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 111.77325454868719, 'min_child_weight': 0.3758352912705278, 'learning_rate': 0.11123225986245841, 'subsample': 0.8152358449522121, 'reg_alpha': 2.6178897430797255e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.8255037313246065, 'max_leaves': 94.48493691954968, 'min_child_weight': 20.0, 'learning_rate': 0.03880145423973711, 'subsample': 0.6, 'reg_alpha': 5.110608105327666e-09, 'reg_lambda': 0.37165899165521643, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.6755875046448528, 'learning_rate': 0.45096699143573216, 'subsample': 1.0, 'reg_alpha': 3.8656333816640724e-10, 'reg_lambda': 0.2050597630398996, 'colsample_bylevel': 0.7539229211432559, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 5.625164651010057, 'max_leaves': 40.860007933131605, 'min_child_weight': 20.0, 'learning_rate': 0.01, 'subsample': 0.6, 'reg_alpha': 3.4610132981824646e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 35.48459159693944, 'max_leaves': 112.0, 'min_child_weight': 3.0382439888407067, 'learning_rate': 0.2267710660736373, 'subsample': 0.6, 'reg_alpha': 4.252644465201034e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 92.9820293829076, 'min_child_weight': 7.307312641305838, 'learning_rate': 0.019032293298097563, 'subsample': 0.830872679539602, 'reg_alpha': 3.1460444552363834e-10, 'reg_lambda': 0.23793537847003896, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 7.260686859592038, 'max_leaves': 112.0, 'min_child_weight': 1.2598287897836518, 'learning_rate': 0.02225904668680301, 'subsample': 1.0, 'reg_alpha': 3.5672197806209792e-09, 'reg_lambda': 0.5190685583308948, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 57.228514017976465, 'min_child_weight': 17.62255227620237, 'learning_rate': 0.1938974971284188, 'subsample': 0.6, 'reg_alpha': 3.7505422605355685e-10, 'reg_lambda': 0.9209678923335397, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 19.830729937311833, 'min_child_weight': 3.5860870350021887, 'learning_rate': 0.033058040107928, 'subsample': 1.0, 'reg_alpha': 7.64404768452494e-10, 'reg_lambda': 0.4629191179235771, 'colsample_bylevel': 0.7184197491622143, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 16.248732106288664, 'max_leaves': 112.0, 'min_child_weight': 6.190981560215707, 'learning_rate': 0.13055745068204053, 'subsample': 0.6, 'reg_alpha': 1.7502518419557556e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 1.0203774844443114, 'learning_rate': 0.5776944210423948, 'subsample': 0.6, 'reg_alpha': 1.5198092397044633e-09, 'reg_lambda': 0.41360060527880455, 'colsample_bylevel': 0.6439765613788319, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.540648386746745, 'max_leaves': 64.9648241715611, 'min_child_weight': 20.0, 'learning_rate': 0.01, 'subsample': 1.0, 'reg_alpha': 8.803084091289666e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 8.423751156592832, 'max_leaves': 35.08313999227564, 'min_child_weight': 0.9872807018015809, 'learning_rate': 0.3364998399417128, 'subsample': 0.6, 'reg_alpha': 1.6930295290784003e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 20.0, 'learning_rate': 0.012826078733895753, 'subsample': 1.0, 'reg_alpha': 7.902407081535229e-10, 'reg_lambda': 0.20603255617814, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 112.0, 'min_child_weight': 0.9260364518264448, 'learning_rate': 0.03889973044472591, 'subsample': 0.6, 'reg_alpha': 1.2662979530024109e-09, 'reg_lambda': 0.1563577374374579, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 13.890762363790396, 'max_leaves': 73.6946025012144, 'min_child_weight': 20.0, 'learning_rate': 0.11095124289276133, 'subsample': 1.0, 'reg_alpha': 1.056545065726086e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 10.285570556909743, 'max_leaves': 111.0458984635353, 'min_child_weight': 6.907987422620739, 'learning_rate': 0.26253528372941387, 'subsample': 0.6, 'reg_alpha': 3.583234316865756e-09, 'reg_lambda': 0.13464978652603, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 112, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 95.10381789376409, 'min_child_weight': 3.213873643476387, 'learning_rate': 0.016439593869919795, 'subsample': 1.0, 'reg_alpha': 3.7337799754998945e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 17.426368492219417, 'min_child_weight': 4.365720617683898, 'learning_rate': 0.2808682393870288, 'subsample': 0.6, 'reg_alpha': 1.414922432297792e-10, 'reg_lambda': 0.3737808799890258, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}

You can judge yourself if you are satisfied with the performance:

Boston Housing

Switching from classification to regression is rather simple. We have to change the metric and the task:

automl = AutoML()
# Provide configurations.
automl_settings = {
    "time_budget": 300,  # in seconds
    "metric": 'r2',
    "task": 'regression',
    "log_file_name": "./boston.log",
}
X, y = load_boston(return_X_y=True)
X_train, X_test, y_train, y_test = \
    sklearn.model_selection.train_test_split(X, y, random_state=1)
# Train with labeled input data.
automl.fit(X_train=X_train, y_train=y_train,
                        **automl_settings)
# Predict
y_pred = automl.predict(X_test)

The log file yields:

{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4, 'max_leaves': 4, 'min_child_weight': 20, 'learning_rate': 0.1, 'subsample': 1.0, 'log_max_bin': 8, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 4, 'max_leaves': 4, 'min_child_weight': 20, 'learning_rate': 0.1, 'subsample': 1.0, 'log_max_bin': 8, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 12.755654218123079, 'min_child_weight': 20.0, 'learning_rate': 0.06401982743437783, 'subsample': 0.985089986895072, 'log_max_bin': 10.0, 'reg_alpha': 1.9574627470500444e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 4, 'max_leaves': 4, 'min_child_weight': 20, 'learning_rate': 0.1, 'subsample': 1.0, 'log_max_bin': 8, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4.994221809973217, 'max_leaves': 4.0, 'min_child_weight': 15.655059129221897, 'learning_rate': 0.15620160816975476, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.38443582500886314, 'colsample_bytree': 0.9338138245429993}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 4.994221809973217, 'max_leaves': 4.0, 'min_child_weight': 15.655059129221897, 'learning_rate': 0.15620160816975476, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.38443582500886314, 'colsample_bytree': 0.9338138245429993}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4, 'max_leaves': 4, 'min_child_weight': 20.0, 'learning_rate': 0.1, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 4.994221809973217, 'max_leaves': 4.0, 'min_child_weight': 15.655059129221897, 'learning_rate': 0.15620160816975476, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.38443582500886314, 'colsample_bytree': 0.9338138245429993}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4.50782072348842, 'max_leaves': 8.69751232842553, 'min_child_weight': 20.0, 'learning_rate': 0.2309567355178349, 'subsample': 0.9099117339256011, 'reg_alpha': 1.8041420206646338e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7015753051642487, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 4.994221809973217, 'max_leaves': 4.0, 'min_child_weight': 15.655059129221897, 'learning_rate': 0.15620160816975476, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.38443582500886314, 'colsample_bytree': 0.9338138245429993}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4.200711560291527, 'max_leaves': 4.724131408491753, 'min_child_weight': 12.855857256151843, 'learning_rate': 0.3210830005794933, 'subsample': 0.6, 'reg_alpha': 4.1799314157807744e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8908400333750968, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 4.994221809973217, 'max_leaves': 4.0, 'min_child_weight': 15.655059129221897, 'learning_rate': 0.15620160816975476, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.38443582500886314, 'colsample_bytree': 0.9338138245429993}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 5.231566861749085, 'max_leaves': 14.246884828101773, 'min_child_weight': 7.677207722604538, 'learning_rate': 0.08263671551175195, 'subsample': 0.6, 'reg_alpha': 5.440572601892955e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 4.994221809973217, 'max_leaves': 4.0, 'min_child_weight': 15.655059129221897, 'learning_rate': 0.15620160816975476, 'subsample': 1.0, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.38443582500886314, 'colsample_bytree': 0.9338138245429993}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 20.0, 'learning_rate': 1.0, 'subsample': 0.7970171820686373, 'reg_alpha': 3.211394814316428e-10, 'reg_lambda': 0.8300019827037509, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 20.0, 'learning_rate': 1.0, 'subsample': 0.7970171820686373, 'reg_alpha': 3.211394814316428e-10, 'reg_lambda': 0.8300019827037509, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.047410534514412, 'min_child_weight': 9.707834937511844, 'learning_rate': 0.692412296024038, 'subsample': 0.6, 'reg_alpha': 2.796309255335089e-10, 'reg_lambda': 0.6246064602347271, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.047410534514412, 'min_child_weight': 9.707834937511844, 'learning_rate': 0.692412296024038, 'subsample': 0.6, 'reg_alpha': 2.796309255335089e-10, 'reg_lambda': 0.6246064602347271, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 28.375734967569702, 'min_child_weight': 5.492304611813884, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 4.6107796371560875e-10, 'reg_lambda': 0.38153136463484855, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 10.047410534514412, 'min_child_weight': 9.707834937511844, 'learning_rate': 0.692412296024038, 'subsample': 0.6, 'reg_alpha': 2.796309255335089e-10, 'reg_lambda': 0.6246064602347271, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 7.1351900825295465, 'max_leaves': 4.0, 'min_child_weight': 17.158927960998742, 'learning_rate': 0.4330931469942312, 'subsample': 1.0, 'reg_alpha': 1.695883574322286e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 7.1351900825295465, 'max_leaves': 4.0, 'min_child_weight': 17.158927960998742, 'learning_rate': 0.4330931469942312, 'subsample': 1.0, 'reg_alpha': 1.695883574322286e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 9.528039900590397, 'max_leaves': 4.0, 'min_child_weight': 7.933020574593382, 'learning_rate': 0.17184912717983783, 'subsample': 1.0, 'reg_alpha': 6.705592736942355e-10, 'reg_lambda': 0.8433106607523029, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 7.1351900825295465, 'max_leaves': 4.0, 'min_child_weight': 17.158927960998742, 'learning_rate': 0.4330931469942312, 'subsample': 1.0, 'reg_alpha': 1.695883574322286e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 5.343275011964773, 'max_leaves': 6.266100769821388, 'min_child_weight': 20.0, 'learning_rate': 1.0, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7760490922868936, 'colsample_bytree': 0.8741847114527211}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 7.1351900825295465, 'max_leaves': 4.0, 'min_child_weight': 17.158927960998742, 'learning_rate': 0.4330931469942312, 'subsample': 1.0, 'reg_alpha': 1.695883574322286e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_leaves': 4.0, 'min_child_weight': 6.796763230171172, 'learning_rate': 0.5374000525348314, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.8164521856076827, 'colsample_bylevel': 0.8915180695644781, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 7.1351900825295465, 'max_leaves': 4.0, 'min_child_weight': 17.158927960998742, 'learning_rate': 0.4330931469942312, 'subsample': 1.0, 'reg_alpha': 1.695883574322286e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 27.947600187882244, 'max_leaves': 4.365567554530685, 'min_child_weight': 20.0, 'learning_rate': 0.349031737322373, 'subsample': 0.6, 'reg_alpha': 3.1033446717553277e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 27.947600187882244, 'max_leaves': 4.365567554530685, 'min_child_weight': 20.0, 'learning_rate': 0.349031737322373, 'subsample': 0.6, 'reg_alpha': 3.1033446717553277e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4, 'max_features': 1.0}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 4, 'max_features': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4, 'max_features': 1.0}, 'Best Learner': 'rf', 'Best Hyper-parameters': {'n_estimators': 4, 'max_features': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 8.41331116660524, 'max_leaves': 6.927450612935078, 'min_child_weight': 4.939653601543631, 'learning_rate': 0.4885678420259063, 'subsample': 0.9035080392547626, 'log_max_bin': 3.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5553869178058898, 'colsample_bytree': 1.0}, 'Best Learner': 'rf', 'Best Hyper-parameters': {'n_estimators': 4, 'max_features': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 21.496327610792182, 'max_leaves': 11.127937559146654, 'min_child_weight': 8.420290703240207, 'learning_rate': 0.16178985371582735, 'subsample': 0.9295790642622207, 'log_max_bin': 7.387990096379021, 'reg_alpha': 1.6106843581779436e-10, 'reg_lambda': 0.3572362157107052, 'colsample_bytree': 0.7}, 'Best Learner': 'rf', 'Best Hyper-parameters': {'n_estimators': 4, 'max_features': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4.265263946808631, 'max_leaves': 22.347181673992864, 'min_child_weight': 6.849203739311099, 'learning_rate': 0.3939645819761148, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 1.8340895061625748e-10, 'reg_lambda': 0.38986169152161587, 'colsample_bytree': 0.7}, 'Best Learner': 'rf', 'Best Hyper-parameters': {'n_estimators': 4, 'max_features': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 108.33845373068982, 'max_leaves': 5.54123540618003, 'min_child_weight': 10.351757405044692, 'learning_rate': 0.06644241122917949, 'subsample': 1.0, 'log_max_bin': 5.2803830536260605, 'reg_alpha': 1.4144915463297642e-10, 'reg_lambda': 0.3273409944876047, 'colsample_bytree': 0.7068939512245919}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 108.33845373068982, 'max_leaves': 5.54123540618003, 'min_child_weight': 10.351757405044692, 'learning_rate': 0.06644241122917949, 'subsample': 1.0, 'log_max_bin': 5.2803830536260605, 'reg_alpha': 1.4144915463297642e-10, 'reg_lambda': 0.3273409944876047, 'colsample_bytree': 0.7068939512245919}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 135.61138447199485, 'max_leaves': 5.872625804035215, 'min_child_weight': 6.871728728603624, 'learning_rate': 0.027884582804824122, 'subsample': 0.6603100294411691, 'log_max_bin': 3.0, 'reg_alpha': 1.343575222049226e-10, 'reg_lambda': 0.18605801927602042, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 108.33845373068982, 'max_leaves': 5.54123540618003, 'min_child_weight': 10.351757405044692, 'learning_rate': 0.06644241122917949, 'subsample': 1.0, 'log_max_bin': 5.2803830536260605, 'reg_alpha': 1.4144915463297642e-10, 'reg_lambda': 0.3273409944876047, 'colsample_bytree': 0.7068939512245919}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 86.55040727189595, 'max_leaves': 5.2285452625986935, 'min_child_weight': 15.594166417956512, 'learning_rate': 0.15831665981330934, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1.4891509621521306e-10, 'reg_lambda': 0.5759070589329016, 'colsample_bytree': 0.7}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 86.55040727189595, 'max_leaves': 5.2285452625986935, 'min_child_weight': 15.594166417956512, 'learning_rate': 0.15831665981330934, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1.4891509621521306e-10, 'reg_lambda': 0.5759070589329016, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 72.51024901111882, 'max_leaves': 4.0, 'min_child_weight': 20.0, 'learning_rate': 0.4262176398252715, 'subsample': 0.6, 'reg_alpha': 3.165809481208004e-10, 'reg_lambda': 0.8897088286577182, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 86.55040727189595, 'max_leaves': 5.2285452625986935, 'min_child_weight': 15.594166417956512, 'learning_rate': 0.15831665981330934, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1.4891509621521306e-10, 'reg_lambda': 0.5759070589329016, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 10.771833870573877, 'max_leaves': 5.9695844310651145, 'min_child_weight': 7.3032465182446895, 'learning_rate': 0.2858238192774367, 'subsample': 0.6146052224480965, 'reg_alpha': 3.0421123598496836e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 86.55040727189595, 'max_leaves': 5.2285452625986935, 'min_child_weight': 15.594166417956512, 'learning_rate': 0.15831665981330934, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1.4891509621521306e-10, 'reg_lambda': 0.5759070589329016, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 55.13973330295107, 'max_leaves': 4.0, 'min_child_weight': 19.52309978882963, 'learning_rate': 0.19766276329698218, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.6395832838376515, 'colsample_bytree': 0.7}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 86.55040727189595, 'max_leaves': 5.2285452625986935, 'min_child_weight': 15.594166417956512, 'learning_rate': 0.15831665981330934, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 1.4891509621521306e-10, 'reg_lambda': 0.5759070589329016, 'colsample_bytree': 0.7}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 188.98353652947006, 'max_leaves': 12.735165783538216, 'min_child_weight': 6.435413711202226, 'learning_rate': 0.05776441666399976, 'subsample': 1.0, 'log_max_bin': 10.0, 'reg_alpha': 4.2276289505977824e-10, 'reg_lambda': 0.2182405403850299, 'colsample_bytree': 0.7}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 97.6614502267022, 'max_leaves': 30.86426191471473, 'min_child_weight': 20.0, 'learning_rate': 0.27835328890081673, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 6.09899473759738e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 290.4466060470426, 'max_leaves': 29.853444871945268, 'min_child_weight': 10.545158311370555, 'learning_rate': 0.056720040899355666, 'subsample': 0.7117108909185866, 'log_max_bin': 10.0, 'reg_alpha': 1.5101011035620276e-09, 'reg_lambda': 0.34058727576459225, 'colsample_bytree': 0.773899321854665}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 63.544919658829414, 'max_leaves': 13.1663697089717, 'min_child_weight': 14.712890616248664, 'learning_rate': 0.2834785572244559, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 1.7074543327854152e-10, 'reg_lambda': 0.7895633466038864, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 9.151085770549047, 'max_features': 0.5913327273107191}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 5.533618736674364, 'max_leaves': 4.0, 'min_child_weight': 13.574809097206224, 'learning_rate': 0.23102350785005002, 'subsample': 0.6, 'reg_alpha': 6.554485605294196e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 20.968630196047194, 'max_leaves': 13.551094353519016, 'min_child_weight': 3.9291462092995717, 'learning_rate': 0.35362312877426566, 'subsample': 0.711378513489961, 'reg_alpha': 1.411925842429984e-10, 'reg_lambda': 0.9962245705671601, 'colsample_bylevel': 0.6101303381124191, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 73.53905781883036, 'max_leaves': 37.20776520814203, 'min_child_weight': 20.0, 'learning_rate': 0.3878385427257429, 'subsample': 0.6, 'log_max_bin': 7.030353020535587, 'reg_alpha': 3.5211058744546436e-10, 'reg_lambda': 0.574432248117336, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 250.97420056574433, 'max_leaves': 10.563964002450344, 'min_child_weight': 5.394194037660552, 'learning_rate': 0.041457755195907796, 'subsample': 1.0, 'log_max_bin': 5.483155037359225, 'reg_alpha': 7.322780865316564e-10, 'reg_lambda': 0.4681408993745463, 'colsample_bytree': 0.8586617851062661}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_features': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 7.701650170175433, 'max_features': 0.4823063663696419}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 35.4616248777849, 'max_leaves': 7.646043403469024, 'min_child_weight': 5.459800769892585, 'learning_rate': 1.0, 'subsample': 0.6451648156504749, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 12.398852388008423, 'max_leaves': 24.016625133812436, 'min_child_weight': 2.8276104906950517, 'learning_rate': 0.08353322620562527, 'subsample': 0.78438776755822, 'reg_alpha': 2.4913139351416985e-10, 'reg_lambda': 0.44412887261647727, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 207.33406060106043, 'max_leaves': 48.88545186895931, 'min_child_weight': 20.0, 'learning_rate': 0.17740130891322195, 'subsample': 0.7106847892486777, 'log_max_bin': 6.34311285002053, 'reg_alpha': 7.893338496531289e-10, 'reg_lambda': 0.5322312903797245, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 89.01772430894358, 'max_leaves': 8.040459425926228, 'min_child_weight': 2.2093896031874505, 'learning_rate': 0.09063583272503743, 'subsample': 0.6, 'log_max_bin': 6.077223673994478, 'reg_alpha': 3.266588241913236e-10, 'reg_lambda': 0.5052600892208584, 'colsample_bytree': 0.9056663158665302}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 238.07081171996552, 'max_leaves': 42.77657713702847, 'min_child_weight': 6.294131803235474, 'learning_rate': 0.045722077377484176, 'subsample': 0.6, 'log_max_bin': 6.520912912934367, 'reg_alpha': 4.0517027957728865e-10, 'reg_lambda': 0.5999443979988317, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 77.52485957055765, 'max_leaves': 9.188708367462926, 'min_child_weight': 20.0, 'learning_rate': 0.3516663345611574, 'subsample': 1.0, 'log_max_bin': 5.911521299801683, 'reg_alpha': 6.36381492470543e-10, 'reg_lambda': 0.4482335865796614, 'colsample_bytree': 0.7}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 4.0, 'max_features': 0.7471272386208194}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 23.70834012531298, 'max_features': 0.4680252255749965}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 171.81544835576332, 'max_leaves': 8.902199090168349, 'min_child_weight': 4.454472269449941, 'learning_rate': 0.38001379545179037, 'subsample': 0.6545427832748786, 'log_max_bin': 3.889273674369384, 'reg_alpha': 9.23767962865246e-10, 'reg_lambda': 0.2237345778349856, 'colsample_bytree': 0.7561056939435327}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 107.4199463614175, 'max_leaves': 44.15330282879616, 'min_child_weight': 20.0, 'learning_rate': 0.04231139909209242, 'subsample': 0.6, 'log_max_bin': 9.911494743350426, 'reg_alpha': 2.791208156021695e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 99.6633345782425, 'max_leaves': 5.871825781729367, 'min_child_weight': 5.506779284371237, 'learning_rate': 0.14210421851974717, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 6.755315807028325e-10, 'reg_lambda': 0.5927368808397999, 'colsample_bytree': 0.7}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 185.1875248258873, 'max_leaves': 66.94025110443118, 'min_child_weight': 20.0, 'learning_rate': 0.11314875467702676, 'subsample': 1.0, 'log_max_bin': 3.1093594110908023, 'reg_alpha': 3.816888426649703e-10, 'reg_lambda': 0.4536839834943094, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 329.618832604147, 'max_leaves': 16.590870094103888, 'min_child_weight': 20.0, 'learning_rate': 0.28615107373918064, 'subsample': 0.6, 'log_max_bin': 10.0, 'reg_alpha': 2.409540670187593e-10, 'reg_lambda': 0.4229239007217695, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 55.99317885032396, 'max_leaves': 23.691433302833477, 'min_child_weight': 7.643335519901073, 'learning_rate': 0.05619030238033282, 'subsample': 1.0, 'log_max_bin': 3.657216934446709, 'reg_alpha': 1.0700913680864658e-09, 'reg_lambda': 0.6358477939044274, 'colsample_bytree': 0.7}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 287.4829479294292, 'max_leaves': 15.058397759955428, 'min_child_weight': 5.847517552132369, 'learning_rate': 0.13673656828235606, 'subsample': 0.6, 'log_max_bin': 3.0, 'reg_alpha': 6.818267606497185e-10, 'reg_lambda': 0.15325907597866575, 'colsample_bytree': 0.7}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 64.20000344148983, 'max_leaves': 26.102477736090844, 'min_child_weight': 20.0, 'learning_rate': 0.11759045558799676, 'subsample': 0.6631030046338477, 'log_max_bin': 10.0, 'reg_alpha': 3.7816478041489814e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 135.8543567444158, 'max_leaves': 19.82577847829529, 'min_child_weight': 12.455912682987965, 'learning_rate': 0.1268026630629715, 'subsample': 0.6138431324173236, 'log_max_bin': 6.208745088901891, 'reg_alpha': 5.077823029823923e-10, 'reg_lambda': 0.5185703705992005, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 211.47955187394052, 'max_leaves': 6.251361617552931, 'min_child_weight': 5.359475548879291, 'learning_rate': 0.07110422632641045, 'subsample': 0.6, 'log_max_bin': 6.825506581135712, 'reg_alpha': 3.353363130055007e-10, 'reg_lambda': 0.8420708805451255, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 211.47955187394052, 'max_leaves': 6.251361617552931, 'min_child_weight': 5.359475548879291, 'learning_rate': 0.07110422632641045, 'subsample': 0.6, 'log_max_bin': 6.825506581135712, 'reg_alpha': 3.353363130055007e-10, 'reg_lambda': 0.8420708805451255, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 17.96268381547373, 'max_features': 0.7901878685131674}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 211.47955187394052, 'max_leaves': 6.251361617552931, 'min_child_weight': 5.359475548879291, 'learning_rate': 0.07110422632641045, 'subsample': 0.6, 'log_max_bin': 6.825506581135712, 'reg_alpha': 3.353363130055007e-10, 'reg_lambda': 0.8420708805451255, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 120.37292699711644, 'max_leaves': 4.0, 'min_child_weight': 7.595304578493696, 'learning_rate': 0.05311679836106604, 'subsample': 1.0, 'log_max_bin': 4.938882707709232, 'reg_alpha': 5.443163043244861e-10, 'reg_lambda': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 211.47955187394052, 'max_leaves': 6.251361617552931, 'min_child_weight': 5.359475548879291, 'learning_rate': 0.07110422632641045, 'subsample': 0.6, 'log_max_bin': 6.825506581135712, 'reg_alpha': 3.353363130055007e-10, 'reg_lambda': 0.8420708805451255, 'colsample_bytree': 1.0}}
{'Current Learner': 'lgbm', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 371.5420234142356, 'max_leaves': 12.72801344044131, 'min_child_weight': 3.781807281352176, 'learning_rate': 0.09518290178391564, 'subsample': 0.6, 'log_max_bin': 9.432809573794332, 'reg_alpha': 2.0659025262834578e-10, 'reg_lambda': 0.6739094334631495, 'colsample_bytree': 0.8645518291614804}, 'Best Learner': 'lgbm', 'Best Hyper-parameters': {'n_estimators': 211.47955187394052, 'max_leaves': 6.251361617552931, 'min_child_weight': 5.359475548879291, 'learning_rate': 0.07110422632641045, 'subsample': 0.6, 'log_max_bin': 6.825506581135712, 'reg_alpha': 3.353363130055007e-10, 'reg_lambda': 0.8420708805451255, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 47.75112554153964, 'max_features': 0.8480656934578242}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 47.75112554153964, 'max_features': 0.8480656934578242}}
{'Current Learner': 'catboost', 'Current Sample': 379, 'Current Hyper-parameters': {'rounds': 10, 'learning_rate': 0.1}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 47.75112554153964, 'max_features': 0.8480656934578242}}
{'Current Learner': 'catboost', 'Current Sample': 379, 'Current Hyper-parameters': {'rounds': 10.01932219949338, 'learning_rate': 0.2}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 47.75112554153964, 'max_features': 0.8480656934578242}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 39.71337627804121, 'max_features': 1.0}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 47.75112554153964, 'max_features': 0.8480656934578242}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}}
{'Current Learner': 'catboost', 'Current Sample': 379, 'Current Hyper-parameters': {'rounds': 10.0, 'learning_rate': 0.09327824126179479}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}}
{'Current Learner': 'catboost', 'Current Sample': 379, 'Current Hyper-parameters': {'rounds': 18.546212160506606, 'learning_rate': 0.2}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 75.54718953652231, 'max_leaves': 10.068341162884785, 'min_child_weight': 4.49179949743804, 'learning_rate': 0.31258276660419754, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.8397931395746497, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8850730640486452}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 51.731145972828415, 'max_leaves': 7.612133269604489, 'min_child_weight': 6.274471168975839, 'learning_rate': 0.11963758730654568, 'subsample': 0.6707797755644443, 'reg_alpha': 1e-10, 'reg_lambda': 0.5387636855950728, 'colsample_bylevel': 0.9038179414569992, 'colsample_bytree': 0.7}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 110.32769020552925, 'max_leaves': 13.317093931739215, 'min_child_weight': 3.215611671776625, 'learning_rate': 0.816699736075239, 'subsample': 1.0, 'reg_alpha': 2.618019830323707e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 136.59768857635962, 'max_leaves': 17.111605532967804, 'min_child_weight': 4.1821869671686045, 'learning_rate': 0.28828577743375267, 'subsample': 0.6, 'reg_alpha': 1.0611166669916864e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9814478184806686, 'colsample_bytree': 0.7436692939087142}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 41.7823896315547, 'max_leaves': 5.924136900943301, 'min_child_weight': 4.82433303043939, 'learning_rate': 0.3389275282593061, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.207746471232728, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 36.725521770078196, 'max_features': 0.7748518929115364}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 89.76206915123605, 'max_features': 0.13532724630395065}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 58.1715128953106, 'max_leaves': 5.4519199243170196, 'min_child_weight': 3.2381179616424562, 'learning_rate': 0.1470847898048186, 'subsample': 0.7343535193828168, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 98.11293471322657, 'max_leaves': 18.59372389533753, 'min_child_weight': 6.230860939652339, 'learning_rate': 0.6642970092801076, 'subsample': 1.0, 'reg_alpha': 1.1965499727187207e-10, 'reg_lambda': 0.47798248257335463, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 26.594659050538233, 'max_features': 0.17645222219710033}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 57.41566706693378, 'max_features': 0.32381873472843087}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 123.95567164356136, 'max_features': 0.5942604273013516}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 123.95567164356136, 'max_features': 0.5942604273013516}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 34.48007497013453, 'max_leaves': 4.787367535788764, 'min_child_weight': 10.850496570151186, 'learning_rate': 0.5414234207158485, 'subsample': 0.9740939101464194, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6100254993053381, 'colsample_bytree': 1.0}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 123.95567164356136, 'max_features': 0.5942604273013516}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 165.5268398288218, 'max_leaves': 21.17478823474919, 'min_child_weight': 1.8594782823753757, 'learning_rate': 0.1804650154379148, 'subsample': 1.0, 'reg_alpha': 1.8795026766722512e-10, 'reg_lambda': 0.6727045091630627, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 123.95567164356136, 'max_features': 0.5942604273013516}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 27.35213256621948, 'max_leaves': 5.431839662550251, 'min_child_weight': 2.9117720009499948, 'learning_rate': 0.2632634867882233, 'subsample': 0.6, 'reg_alpha': 3.66682437326346e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'extra', 'Best Hyper-parameters': {'n_estimators': 123.95567164356136, 'max_features': 0.5942604273013516}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 208.66299302438927, 'max_leaves': 18.662460615534112, 'min_child_weight': 6.929204181715438, 'learning_rate': 0.37114142629484104, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5526886732451715, 'colsample_bylevel': 0.9164059073977376, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 208.66299302438927, 'max_leaves': 18.662460615534112, 'min_child_weight': 6.929204181715438, 'learning_rate': 0.37114142629484104, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5526886732451715, 'colsample_bylevel': 0.9164059073977376, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 251.0283978200556, 'max_leaves': 14.50690657958117, 'min_child_weight': 13.649660954153921, 'learning_rate': 0.7500448496512873, 'subsample': 0.6, 'reg_alpha': 2.4491638134460015e-10, 'reg_lambda': 0.25440192126288835, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 208.66299302438927, 'max_leaves': 18.662460615534112, 'min_child_weight': 6.929204181715438, 'learning_rate': 0.37114142629484104, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5526886732451715, 'colsample_bylevel': 0.9164059073977376, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 127.13305944584145, 'max_leaves': 32.364965399225184, 'min_child_weight': 7.187201490494996, 'learning_rate': 0.269791027402714, 'subsample': 1.0, 'reg_alpha': 1.8426490672503755e-10, 'reg_lambda': 0.5616590294524778, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 236.6342061321641, 'max_leaves': 17.80946367963315, 'min_child_weight': 1.7215906165653831, 'learning_rate': 0.12501316807788498, 'subsample': 0.8796797896211176, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 106.42373265592168, 'max_leaves': 16.646750675722206, 'min_child_weight': 11.096950472169109, 'learning_rate': 0.10414483938651041, 'subsample': 1.0, 'reg_alpha': 1.2164667441615508e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 282.68159595928216, 'max_leaves': 34.625536658677554, 'min_child_weight': 1.1150287348252264, 'learning_rate': 0.3238511985162213, 'subsample': 0.9601297453122338, 'reg_alpha': 1e-10, 'reg_lambda': 0.5160922673652908, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 279.39870133080825, 'max_leaves': 21.029185178010415, 'min_child_weight': 3.18544647841488, 'learning_rate': 0.33688531554394124, 'subsample': 1.0, 'reg_alpha': 1.1945251813908678e-10, 'reg_lambda': 0.23819195084418227, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 107.6741962357957, 'max_leaves': 27.409653340863226, 'min_child_weight': 3.8843592975883543, 'learning_rate': 0.10011546807893311, 'subsample': 0.6221150578436451, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 75.53738721434662, 'max_leaves': 10.3094693843318, 'min_child_weight': 7.009665263129207, 'learning_rate': 0.18121362639493505, 'subsample': 0.77419838772724, 'reg_alpha': 2.3110167480678144e-10, 'reg_lambda': 0.5368917198845823, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 55.91002352129723, 'min_child_weight': 1.765193940213525, 'learning_rate': 0.18611972910412133, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 57.677385100432645, 'max_leaves': 18.80081189629982, 'min_child_weight': 3.3226606998405885, 'learning_rate': 0.07026936105882271, 'subsample': 0.6, 'reg_alpha': 1.1585479406616615e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 30.65839278374601, 'min_child_weight': 3.723948896134522, 'learning_rate': 0.4799734983553845, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 0.5482666111398219, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 89.12524476543385, 'max_leaves': 28.282948836782722, 'min_child_weight': 4.903080936248011, 'learning_rate': 0.10074528651315538, 'subsample': 1.0, 'reg_alpha': 4.5381500096401014e-10, 'reg_lambda': 0.7585748585253467, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 337.54780336701685, 'max_leaves': 20.379864882421938, 'min_child_weight': 2.523600733148297, 'learning_rate': 0.33477924597689845, 'subsample': 0.9100496257240864, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'catboost', 'Current Sample': 379, 'Current Hyper-parameters': {'rounds': 49.295401784478656, 'learning_rate': 0.18599265336616752}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'catboost', 'Current Sample': 379, 'Current Hyper-parameters': {'rounds': 10.0, 'learning_rate': 0.2}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 153.10161916959385, 'max_leaves': 17.926328875747362, 'min_child_weight': 1.169636604514177, 'learning_rate': 0.08864349639488524, 'subsample': 0.9076809954722664, 'reg_alpha': 1e-10, 'reg_lambda': 0.9558195700847119, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 196.49714195246494, 'max_leaves': 32.15397194625294, 'min_child_weight': 10.578857225950424, 'learning_rate': 0.38048398840624753, 'subsample': 1.0, 'reg_alpha': 1.1210128492665868e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 14.585323022883772, 'min_child_weight': 8.949166374831766, 'learning_rate': 0.1545303955376959, 'subsample': 0.6, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.637233013647285, 'colsample_bytree': 0.8676974734315434}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 67.16132968244447, 'max_leaves': 39.51936305186608, 'min_child_weight': 1.3826336585047034, 'learning_rate': 0.21825758574709234, 'subsample': 1.0, 'reg_alpha': 1.3398599098983115e-10, 'reg_lambda': 0.4356993860906803, 'colsample_bylevel': 0.6891582261332809, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 173.44748656328207, 'max_leaves': 24.008387612875726, 'min_child_weight': 3.517587048731121, 'learning_rate': 0.1836502955472731, 'subsample': 1.0, 'reg_alpha': 1e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6626872364235844, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 309.836225510412, 'max_leaves': 25.89913717794998, 'min_child_weight': 1.2787665346835966, 'learning_rate': 0.07169189284735623, 'subsample': 1.0, 'reg_alpha': 1.9286819457474402e-10, 'reg_lambda': 0.37990111022780804, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 309.836225510412, 'max_leaves': 25.89913717794998, 'min_child_weight': 1.2787665346835966, 'learning_rate': 0.07169189284735623, 'subsample': 1.0, 'reg_alpha': 1.9286819457474402e-10, 'reg_lambda': 0.37990111022780804, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 42.938521422963845, 'max_features': 0.21458156515871016}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 309.836225510412, 'max_leaves': 25.89913717794998, 'min_child_weight': 1.2787665346835966, 'learning_rate': 0.07169189284735623, 'subsample': 1.0, 'reg_alpha': 1.9286819457474402e-10, 'reg_lambda': 0.37990111022780804, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 13.090469184086013, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 309.836225510412, 'max_leaves': 25.89913717794998, 'min_child_weight': 1.2787665346835966, 'learning_rate': 0.07169189284735623, 'subsample': 1.0, 'reg_alpha': 1.9286819457474402e-10, 'reg_lambda': 0.37990111022780804, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 251.99727767498814, 'max_leaves': 22.17714695897571, 'min_child_weight': 1.2999991722592519, 'learning_rate': 0.04946343869024035, 'subsample': 0.6, 'reg_alpha': 9.30786479597792e-10, 'reg_lambda': 0.14355378077986855, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.936870153134871}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 97.92701063453049, 'min_child_weight': 7.389733877522595, 'learning_rate': 0.15375106208546604, 'subsample': 1.0, 'reg_alpha': 2.577425053435765e-10, 'reg_lambda': 0.798538271329161, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 19.372821096476816, 'max_features': 0.4071912529173095}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 8.845401638002505, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'rf', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 17.278484186409305, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 259.08062851834876, 'max_leaves': 36.14795514430863, 'min_child_weight': 1.6432616863252285, 'learning_rate': 0.06742196343977679, 'subsample': 0.672216513235201, 'reg_alpha': 2.1289176115235732e-09, 'reg_lambda': 0.2435123946255966, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 60.07924092594469, 'min_child_weight': 5.846085260758773, 'learning_rate': 0.11279790508944222, 'subsample': 1.0, 'reg_alpha': 1.126878926140192e-10, 'reg_lambda': 0.4707488837394563, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 349.4761062127992, 'max_leaves': 142.44149994807066, 'min_child_weight': 7.651336088891141, 'learning_rate': 0.13246172309066423, 'subsample': 1.0, 'reg_alpha': 2.590710347129042e-10, 'reg_lambda': 0.33416148216787867, 'colsample_bylevel': 0.8765154805133515, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 15.2465517906432, 'min_child_weight': 1.2555516856648434, 'learning_rate': 0.057413236485067166, 'subsample': 0.929967164915412, 'reg_alpha': 9.260133594530056e-10, 'reg_lambda': 0.3430472812217516, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 283.8404927356299, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 54.132546010330636, 'max_features': 0.3519108244677855}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 35.826693389043506, 'min_child_weight': 4.867441705257459, 'learning_rate': 0.20777746998630497, 'subsample': 1.0, 'reg_alpha': 7.439175639364841e-10, 'reg_lambda': 0.4189349604549097, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 229.10083130276624, 'max_leaves': 60.617977844400244, 'min_child_weight': 1.973654438145426, 'learning_rate': 0.036601929138539664, 'subsample': 0.6, 'reg_alpha': 3.2248632216989253e-10, 'reg_lambda': 0.27363003513061934, 'colsample_bylevel': 0.6568767202751998, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 337.63017545784794, 'max_leaves': 197.32418165126643, 'min_child_weight': 7.14380609610494, 'learning_rate': 0.10127866075920265, 'subsample': 0.7820647120272668, 'reg_alpha': 2.909858100761108e-10, 'reg_lambda': 0.17477067795967685, 'colsample_bylevel': 0.9186205214161411, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 46.60194959543173, 'min_child_weight': 3.0994592954248525, 'learning_rate': 0.087206973534367, 'subsample': 1.0, 'reg_alpha': 4.897991825140816e-10, 'reg_lambda': 0.3385752323291259, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 11.005958255705865, 'min_child_weight': 1.3447520544032423, 'learning_rate': 0.07509041071450737, 'subsample': 1.0, 'reg_alpha': 8.244499590159161e-10, 'reg_lambda': 0.6559062955238394, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 11.005958255705865, 'min_child_weight': 1.3447520544032423, 'learning_rate': 0.07509041071450737, 'subsample': 1.0, 'reg_alpha': 8.244499590159161e-10, 'reg_lambda': 0.6559062955238394, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 241.18187688866206, 'max_leaves': 6.224325870817306, 'min_child_weight': 1.9761947230231938, 'learning_rate': 0.022072473138936163, 'subsample': 0.6, 'reg_alpha': 1.3720486808004084e-09, 'reg_lambda': 0.3967557079603218, 'colsample_bylevel': 0.7916964211405428, 'colsample_bytree': 0.981441128344823}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 11.005958255705865, 'min_child_weight': 1.3447520544032423, 'learning_rate': 0.07509041071450737, 'subsample': 1.0, 'reg_alpha': 8.244499590159161e-10, 'reg_lambda': 0.6559062955238394, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 19.46092149420746, 'min_child_weight': 0.9150708008446173, 'learning_rate': 0.2554570910917492, 'subsample': 1.0, 'reg_alpha': 4.954035118672469e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 11.005958255705865, 'min_child_weight': 1.3447520544032423, 'learning_rate': 0.07509041071450737, 'subsample': 1.0, 'reg_alpha': 8.244499590159161e-10, 'reg_lambda': 0.6559062955238394, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 58.31004591474403, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 11.005958255705865, 'min_child_weight': 1.3447520544032423, 'learning_rate': 0.07509041071450737, 'subsample': 1.0, 'reg_alpha': 8.244499590159161e-10, 'reg_lambda': 0.6559062955238394, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 263.50534100199144, 'max_features': 0.3176935897243998}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 11.005958255705865, 'min_child_weight': 1.3447520544032423, 'learning_rate': 0.07509041071450737, 'subsample': 1.0, 'reg_alpha': 8.244499590159161e-10, 'reg_lambda': 0.6559062955238394, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 23.69743405607528, 'max_features': 0.6860831778416958}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 11.005958255705865, 'min_child_weight': 1.3447520544032423, 'learning_rate': 0.07509041071450737, 'subsample': 1.0, 'reg_alpha': 8.244499590159161e-10, 'reg_lambda': 0.6559062955238394, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 240.37482627021504, 'max_leaves': 14.306717046578445, 'min_child_weight': 5.083242881896607, 'learning_rate': 0.026704526683485524, 'subsample': 1.0, 'reg_alpha': 1.1101121388195945e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7658882187857187}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.087541678959596, 'min_child_weight': 0.8039890438320342, 'learning_rate': 0.08125739648360052, 'subsample': 0.6, 'reg_alpha': 1.105198116037631e-09, 'reg_lambda': 0.8295970118295983, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 13.0035407735057, 'min_child_weight': 1.4662026920744682, 'learning_rate': 0.22095572364946112, 'subsample': 0.7446776308983043, 'reg_alpha': 1.0034835940558905e-09, 'reg_lambda': 0.5209147094908695, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 170.91882241419336, 'max_leaves': 4.497182977741019, 'min_child_weight': 2.7873851318603875, 'learning_rate': 0.01, 'subsample': 1.0, 'reg_alpha': 1.2226346815049047e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.9872543871890711, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 122.49661681726292, 'max_leaves': 14.24811319284444, 'min_child_weight': 2.3272277223685194, 'learning_rate': 0.09079691695952581, 'subsample': 1.0, 'reg_alpha': 5.115715014247304e-10, 'reg_lambda': 0.33898566339726843, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.104354129242886, 'min_child_weight': 1.7561115935928533, 'learning_rate': 0.02389883252967894, 'subsample': 0.783500147860965, 'reg_alpha': 2.3982841909625776e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9280658579551535}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 212.24371120396899, 'max_leaves': 10.708435363696376, 'min_child_weight': 2.7807814323067035, 'learning_rate': 0.060352398536038875, 'subsample': 0.8336239605280258, 'reg_alpha': 4.251961487176359e-09, 'reg_lambda': 0.545165937411577, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 5.461050118976954, 'min_child_weight': 1.4696845774002165, 'learning_rate': 0.03595449999109999, 'subsample': 1.0, 'reg_alpha': 2.8854773217352823e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 272.5871056238823, 'max_leaves': 4.402657831539158, 'min_child_weight': 4.604863263860411, 'learning_rate': 0.03024845108837882, 'subsample': 1.0, 'reg_alpha': 2.8665699755980266e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 13.282727037755489, 'min_child_weight': 0.8875120389038187, 'learning_rate': 0.07173723726503616, 'subsample': 0.6102537945036262, 'reg_alpha': 4.2800066101926044e-09, 'reg_lambda': 0.6039556918260012, 'colsample_bylevel': 0.9436767257181877, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 30.738879146123445, 'min_child_weight': 0.7144887901213169, 'learning_rate': 0.05179704404693331, 'subsample': 0.6, 'reg_alpha': 8.403503830570912e-10, 'reg_lambda': 0.6843227691636855, 'colsample_bylevel': 0.8231379951420957, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 287.95735943456714, 'max_leaves': 4.0, 'min_child_weight': 5.719993988272531, 'learning_rate': 0.04189313024621038, 'subsample': 1.0, 'reg_alpha': 1.4599789196866097e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6464327446307911, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 257.2158674422854, 'max_leaves': 6.0864796263556995, 'min_child_weight': 5.771190545586396, 'learning_rate': 0.019995638390263117, 'subsample': 1.0, 'reg_alpha': 6.165898513548057e-10, 'reg_lambda': 0.4587739859636901, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7894805741717311}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 9.608066699795362, 'min_child_weight': 0.7081505197064656, 'learning_rate': 0.10852068187447948, 'subsample': 0.7327027423153852, 'reg_alpha': 1.98980544638891e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 34.76906042828071, 'min_child_weight': 1.4608522334078549, 'learning_rate': 0.0457016018326961, 'subsample': 1.0, 'reg_alpha': 2.7223929340927658e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 234.5636463480957, 'max_leaves': 4.0, 'min_child_weight': 2.7975940965967876, 'learning_rate': 0.04748061830678421, 'subsample': 0.7347525548947047, 'reg_alpha': 4.506674363753378e-10, 'reg_lambda': 0.6495273051274558, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 5.212472477382972, 'min_child_weight': 2.091535586917927, 'learning_rate': 0.05807559508577105, 'subsample': 0.6, 'reg_alpha': 1.1200448448674618e-09, 'reg_lambda': 0.804357535237064, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 73.44080097690637, 'max_leaves': 11.219110023259411, 'min_child_weight': 1.9540052819299305, 'learning_rate': 0.03736406505042467, 'subsample': 1.0, 'reg_alpha': 1.0953970727476563e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8708051943663102}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 349.40678081545354, 'max_leaves': 13.595796913838742, 'min_child_weight': 3.572270895696337, 'learning_rate': 0.04500794807837514, 'subsample': 1.0, 'reg_alpha': 3.5065074337071804e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 378.21686410718314, 'max_leaves': 4.301278004340212, 'min_child_weight': 1.1440542174742878, 'learning_rate': 0.04821238037442233, 'subsample': 0.6, 'reg_alpha': 3.4989055851417753e-10, 'reg_lambda': 0.6758396000561564, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 283.8529840275673, 'max_leaves': 6.622803902307007, 'min_child_weight': 1.7828653725496808, 'learning_rate': 0.03805608134612649, 'subsample': 1.0, 'reg_alpha': 1.4522377411441744e-09, 'reg_lambda': 0.6025292551414102, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 8.829991508068096, 'min_child_weight': 2.2923052110981326, 'learning_rate': 0.05701954157841158, 'subsample': 0.6, 'reg_alpha': 8.448298853927925e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 130.20979329121175, 'max_leaves': 4.0, 'min_child_weight': 2.4389383468261165, 'learning_rate': 0.059456527068224234, 'subsample': 0.8975151249528063, 'reg_alpha': 5.991034450089381e-10, 'reg_lambda': 0.3991761261890418, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 22.769147505898612, 'min_child_weight': 1.6756764636959551, 'learning_rate': 0.036496250615797726, 'subsample': 1.0, 'reg_alpha': 2.047883140440991e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 262.9002075946555, 'max_leaves': 21.133273573943598, 'min_child_weight': 2.9409858272232903, 'learning_rate': 0.07779159270972405, 'subsample': 0.8739806207452039, 'reg_alpha': 3.4877708573340764e-10, 'reg_lambda': 0.3968625438743988, 'colsample_bylevel': 0.7413137944125062, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.0, 'min_child_weight': 1.3896264124606936, 'learning_rate': 0.027894277993817548, 'subsample': 1.0, 'reg_alpha': 3.517701978138877e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7177842331010251, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 271.53644222978903, 'max_leaves': 7.189282724548754, 'min_child_weight': 1.0389261959605494, 'learning_rate': 0.027573936662279776, 'subsample': 1.0, 'reg_alpha': 1.672398752692741e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7316361824875364, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 8.134233199271163, 'min_child_weight': 3.9337458234013334, 'learning_rate': 0.07869533970444195, 'subsample': 0.6, 'reg_alpha': 7.336132261749718e-10, 'reg_lambda': 0.9805905935226469, 'colsample_bylevel': 0.7272786203662862, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 226.64889115345537, 'max_leaves': 11.649103465573667, 'min_child_weight': 1.9695743073475624, 'learning_rate': 0.017519214813052394, 'subsample': 0.7955284600269958, 'reg_alpha': 5.002435183933136e-09, 'reg_lambda': 0.6983030052420907, 'colsample_bylevel': 0.8576510742340155, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 5.020068916873618, 'min_child_weight': 2.075002486037636, 'learning_rate': 0.1238605916864605, 'subsample': 1.0, 'reg_alpha': 2.452593185723763e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6204193866192302, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 7.677945793565598, 'min_child_weight': 2.3642655056222526, 'learning_rate': 0.07540846668456239, 'subsample': 1.0, 'reg_alpha': 2.588495342994699e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7801485722729178}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 260.0083207072674, 'max_leaves': 7.6165297058985395, 'min_child_weight': 1.7286009437025647, 'learning_rate': 0.0287758179953963, 'subsample': 0.8923920536263819, 'reg_alpha': 4.739795448094161e-10, 'reg_lambda': 0.22874574167036316, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 6.191597702870519, 'min_child_weight': 1.0754555413706572, 'learning_rate': 0.04720116870802072, 'subsample': 0.7821263163244853, 'reg_alpha': 4.53472081253406e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 285.8353689784136, 'max_leaves': 9.444945395896639, 'min_child_weight': 3.800130667394554, 'learning_rate': 0.045972173402099324, 'subsample': 1.0, 'reg_alpha': 2.7055554137374044e-10, 'reg_lambda': 0.5872001471175344, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 197.7477294104143, 'max_leaves': 6.079035673691497, 'min_child_weight': 1.217770444490417, 'learning_rate': 0.048018923821054854, 'subsample': 1.0, 'reg_alpha': 1.4258525267264738e-09, 'reg_lambda': 0.9242668137464334, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 9.619832051661497, 'min_child_weight': 3.3560278972710833, 'learning_rate': 0.04518927414352879, 'subsample': 0.8897289861026606, 'reg_alpha': 8.60463351866178e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 7.55588711145109, 'min_child_weight': 3.1781496614351012, 'learning_rate': 0.12488616793004768, 'subsample': 0.9816840661940319, 'reg_alpha': 8.92591550835582e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 85.09684422785729, 'max_leaves': 7.739568015560294, 'min_child_weight': 1.2859279831197785, 'learning_rate': 0.017375345473345925, 'subsample': 1.0, 'reg_alpha': 1.3745299776425044e-09, 'reg_lambda': 0.676238591244996, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 12.213218531501967, 'min_child_weight': 2.4257158251091853, 'learning_rate': 0.014698821377849709, 'subsample': 0.7660472629104269, 'reg_alpha': 2.9601161077971094e-09, 'reg_lambda': 0.2973513033527573, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 262.5153877481133, 'max_leaves': 4.788197481780374, 'min_child_weight': 1.6848105379359886, 'learning_rate': 0.1476268237327416, 'subsample': 1.0, 'reg_alpha': 4.1447490562353774e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8509352750625294}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 12.897443312175863, 'min_child_weight': 2.044012330050565, 'learning_rate': 0.11370727302578422, 'subsample': 0.965865233965608, 'reg_alpha': 4.923678609027441e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 161.0492244082361, 'max_leaves': 4.534177883283549, 'min_child_weight': 1.999435876240994, 'learning_rate': 0.019083566555455234, 'subsample': 1.0, 'reg_alpha': 2.4918235771206546e-09, 'reg_lambda': 0.5763761711047308, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 48.726234577562906, 'min_child_weight': 1.9145734532663898, 'learning_rate': 0.033789433636179964, 'subsample': 0.6847603351979317, 'reg_alpha': 7.611127900690724e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7909330290654797}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 272.9527717951178, 'max_leaves': 4.0, 'min_child_weight': 2.134612060566061, 'learning_rate': 0.06421949346624782, 'subsample': 1.0, 'reg_alpha': 1.6119737579269664e-09, 'reg_lambda': 0.7524574952714982, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 5.239440281410223, 'min_child_weight': 1.4443501671835386, 'learning_rate': 0.18824659691793894, 'subsample': 0.6, 'reg_alpha': 9.566441497431782e-10, 'reg_lambda': 0.3604648831060458, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 184.3701929016729, 'max_leaves': 11.16136439696782, 'min_child_weight': 2.8295573172199546, 'learning_rate': 0.011527115752179044, 'subsample': 1.0, 'reg_alpha': 1.2824976191442703e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7822159825910273}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 238.62526091231965, 'max_leaves': 4.0, 'min_child_weight': 0.8908010574960138, 'learning_rate': 0.029620417026129813, 'subsample': 1.0, 'reg_alpha': 2.421283350119486e-09, 'reg_lambda': 0.9694302854576, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 27.127492739791567, 'min_child_weight': 4.587861172583234, 'learning_rate': 0.07325826340367349, 'subsample': 0.8052835715305431, 'reg_alpha': 5.067122129070007e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 8.597071105508956, 'min_child_weight': 0.9173212993008133, 'learning_rate': 0.048978356696034515, 'subsample': 0.6, 'reg_alpha': 2.8599206258977734e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 302.48337976242607, 'max_leaves': 6.802235493841374, 'min_child_weight': 4.455223690213102, 'learning_rate': 0.044304065285280594, 'subsample': 1.0, 'reg_alpha': 4.289957676810628e-10, 'reg_lambda': 0.826532821461254, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 166.31335524508552, 'max_leaves': 4.0, 'min_child_weight': 2.3925160082339865, 'learning_rate': 0.032193275700919025, 'subsample': 0.6, 'reg_alpha': 9.90698996847788e-10, 'reg_lambda': 0.3297571952706226, 'colsample_bylevel': 0.6653193142026774, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 19.118300949162702, 'min_child_weight': 1.7081898595941822, 'learning_rate': 0.06740352652479312, 'subsample': 1.0, 'reg_alpha': 1.2384123213182398e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7997713910459184, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 258.5810020089097, 'max_leaves': 4.0, 'min_child_weight': 1.314560001461133, 'learning_rate': 0.04097128660433186, 'subsample': 0.8508674935817098, 'reg_alpha': 1.0717291112192365e-09, 'reg_lambda': 0.2980761498719517, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 21.35146640913641, 'min_child_weight': 3.1089273822720074, 'learning_rate': 0.05296246450794755, 'subsample': 1.0, 'reg_alpha': 1.1447798063618552e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 27.830091256178296, 'max_features': 0.42461773149963633}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 10.727453713027947, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 180.51426142058983, 'max_leaves': 10.165215595680506, 'min_child_weight': 3.092264063174913, 'learning_rate': 0.09447713847677387, 'subsample': 0.6, 'reg_alpha': 1.4956878909120178e-09, 'reg_lambda': 0.3798245199221227, 'colsample_bylevel': 0.838118467073748, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 5.752883612406673, 'min_child_weight': 1.3216437861344683, 'learning_rate': 0.02296788776218416, 'subsample': 1.0, 'reg_alpha': 8.202873419439158e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6348784501401169, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 188.9661104881224, 'max_leaves': 19.495524720222654, 'min_child_weight': 1.0399720873517004, 'learning_rate': 0.025480277005819257, 'subsample': 1.0, 'reg_alpha': 2.8861124620865506e-09, 'reg_lambda': 0.40070513980586825, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.0, 'min_child_weight': 3.929789687518736, 'learning_rate': 0.08516156681229547, 'subsample': 0.8836275799144884, 'reg_alpha': 4.251025767467574e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 7.476664176287305, 'min_child_weight': 1.0749135885074375, 'learning_rate': 0.01886212356422465, 'subsample': 1.0, 'reg_alpha': 3.279916780372967e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6074957798759447, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 289.0037561379629, 'max_leaves': 7.821576686892235, 'min_child_weight': 3.8020466276334255, 'learning_rate': 0.11504220642168562, 'subsample': 0.6, 'reg_alpha': 3.740624919984731e-10, 'reg_lambda': 0.4099007758544469, 'colsample_bylevel': 0.875896378273198, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 208.83918055059326, 'max_leaves': 14.599044916360826, 'min_child_weight': 4.28434973548651, 'learning_rate': 0.024353630547691373, 'subsample': 0.6, 'reg_alpha': 8.880715432944001e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8362357181018272, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.005693697909968, 'min_child_weight': 0.9539070889407587, 'learning_rate': 0.08910130702596926, 'subsample': 1.0, 'reg_alpha': 1.3815259070937254e-09, 'reg_lambda': 0.5840061727614614, 'colsample_bylevel': 0.6363078518308379, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 161.55989925968623, 'max_leaves': 4.903410171189026, 'min_child_weight': 0.3916718056384011, 'learning_rate': 0.03303077343447699, 'subsample': 1.0, 'reg_alpha': 1.1178361265035422e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6494337599136649, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 11.926251358815144, 'min_child_weight': 10.434428839014073, 'learning_rate': 0.06569450506302478, 'subsample': 0.6, 'reg_alpha': 1.0975614540670625e-09, 'reg_lambda': 0.7255818177511364, 'colsample_bylevel': 0.8193342974352442, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 316.35008933958824, 'max_leaves': 35.14461353813335, 'min_child_weight': 3.6542869468434507, 'learning_rate': 0.042206677729927956, 'subsample': 0.6163318270968349, 'reg_alpha': 1.0890927146625924e-09, 'reg_lambda': 0.4861675134423206, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.0, 'min_child_weight': 1.118377304144728, 'learning_rate': 0.051412251078179726, 'subsample': 1.0, 'reg_alpha': 1.1265283734764677e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'catboost', 'Current Sample': 379, 'Current Hyper-parameters': {'rounds': 45.40965417885324, 'learning_rate': 0.2}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 155.35031361710722, 'max_leaves': 23.01743813165631, 'min_child_weight': 1.8326090559430288, 'learning_rate': 0.020199840098802536, 'subsample': 0.7110453762708837, 'reg_alpha': 1.1574293796610573e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.0, 'min_child_weight': 2.2300837000278895, 'learning_rate': 0.10742363810867538, 'subsample': 1.0, 'reg_alpha': 1.0600161581980971e-09, 'reg_lambda': 0.5103264490223408, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 323.4736649185483, 'max_leaves': 5.550425894530583, 'min_child_weight': 2.534658148019977, 'learning_rate': 0.08446129493965136, 'subsample': 0.7273288769585963, 'reg_alpha': 1.1254471948768372e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 10.536002701089464, 'min_child_weight': 1.6123955758588697, 'learning_rate': 0.025691534970868277, 'subsample': 1.0, 'reg_alpha': 1.0901389687573794e-09, 'reg_lambda': 0.49076096626309673, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 184.00954301770346, 'max_leaves': 11.785069997545488, 'min_child_weight': 5.356302769813216, 'learning_rate': 0.02153435060659537, 'subsample': 1.0, 'reg_alpha': 1.423005414055757e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.96215145341952, 'min_child_weight': 0.7630023469200871, 'learning_rate': 0.10076646156036306, 'subsample': 0.6419766503022991, 'reg_alpha': 8.621849448324361e-10, 'reg_lambda': 0.977847734893302, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 137.5280244170439, 'max_leaves': 4.53339018183131, 'min_child_weight': 5.529391261363587, 'learning_rate': 0.06654800675554595, 'subsample': 0.6, 'reg_alpha': 1.640521091091699e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8228609496952941}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 12.899684313814744, 'min_child_weight': 0.7391178144217986, 'learning_rate': 0.0326071420981521, 'subsample': 1.0, 'reg_alpha': 7.478683761374099e-10, 'reg_lambda': 0.3436261257170103, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'rf', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 36.15323760106608, 'max_features': 0.5247489695824005}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 337.74596358133607, 'max_leaves': 4.0, 'min_child_weight': 2.333848261968405, 'learning_rate': 0.0196664954490832, 'subsample': 0.6, 'reg_alpha': 8.692229904416493e-10, 'reg_lambda': 0.6715721417828122, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 33.87423991243052, 'min_child_weight': 1.7511299473836035, 'learning_rate': 0.11033690869046167, 'subsample': 1.0, 'reg_alpha': 1.4114834258934407e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.0, 'min_child_weight': 1.2871563380123012, 'learning_rate': 0.21807837933175564, 'subsample': 1.0, 'reg_alpha': 1.74608667865506e-09, 'reg_lambda': 0.7161462668079857, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7135583518852266}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 289.49101162617933, 'max_leaves': 20.34509059207524, 'min_child_weight': 3.1751166998821776, 'learning_rate': 0.01, 'subsample': 0.9030955677447413, 'reg_alpha': 7.026534589674251e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 188.07940876037043, 'max_leaves': 4.0, 'min_child_weight': 3.8391835962694323, 'learning_rate': 0.08679715982971596, 'subsample': 0.9838852023397305, 'reg_alpha': 6.161086624108517e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 21.778946707097703, 'min_child_weight': 1.0645157965754217, 'learning_rate': 0.025000130383113873, 'subsample': 1.0, 'reg_alpha': 1.991359510533496e-09, 'reg_lambda': 0.6500485807389189, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 75.51359055315179, 'max_leaves': 5.995449039121782, 'min_child_weight': 2.5281160316599567, 'learning_rate': 0.07210013229315322, 'subsample': 1.0, 'reg_alpha': 8.390438981685596e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 9.753948675967264, 'min_child_weight': 1.616568042368931, 'learning_rate': 0.030096204314911293, 'subsample': 0.6, 'reg_alpha': 1.4622522696273086e-09, 'reg_lambda': 0.6584030189467791, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 290.88247364961995, 'max_leaves': 5.862496008487659, 'min_child_weight': 1.319999161758196, 'learning_rate': 0.021983175922301174, 'subsample': 1.0, 'reg_alpha': 5.04329193727798e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.963169807497483, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 9.975154291330078, 'min_child_weight': 3.0961168026337726, 'learning_rate': 0.09870913649130848, 'subsample': 0.9998195932409983, 'reg_alpha': 2.4327242199588255e-10, 'reg_lambda': 0.353236668182612, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9829088888122821}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 212.29497505878018, 'max_leaves': 7.194248409192831, 'min_child_weight': 1.3934511069188007, 'learning_rate': 0.021800593570414802, 'subsample': 0.6, 'reg_alpha': 9.658533704893121e-10, 'reg_lambda': 0.34582572114128574, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 8.128618709112978, 'min_child_weight': 2.9329135151494037, 'learning_rate': 0.09953583628895592, 'subsample': 1.0, 'reg_alpha': 1.2702692581508127e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 180.3229440579909, 'max_leaves': 13.461138062703512, 'min_child_weight': 1.8397748433886134, 'learning_rate': 0.08036039588877511, 'subsample': 0.7637820886846277, 'reg_alpha': 8.164724754713344e-10, 'reg_lambda': 0.6024356276934201, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.344305952778129, 'min_child_weight': 2.2213976883467916, 'learning_rate': 0.027002608544017568, 'subsample': 1.0, 'reg_alpha': 1.502676307251702e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 223.41623575506696, 'max_leaves': 9.28251915803045, 'min_child_weight': 1.5796390870966899, 'learning_rate': 0.018682847229930005, 'subsample': 1.0, 'reg_alpha': 3.4820811121809204e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 6.299938758152714, 'min_child_weight': 2.58721857262569, 'learning_rate': 0.11614612515541095, 'subsample': 0.6, 'reg_alpha': 3.523449928038823e-09, 'reg_lambda': 0.3730159954647539, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7991184744483306}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 286.5917007286579, 'max_leaves': 19.557663187397583, 'min_child_weight': 2.8864160596831225, 'learning_rate': 0.19666719008986444, 'subsample': 1.0, 'reg_alpha': 1.1994424330730157e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.0, 'min_child_weight': 1.4158982972921488, 'learning_rate': 0.011033565444420839, 'subsample': 0.6, 'reg_alpha': 1.0228868102244586e-09, 'reg_lambda': 0.5642129903668778, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9819724239896035}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 127.78060954812618, 'max_leaves': 4.0, 'min_child_weight': 2.969842758197982, 'learning_rate': 0.030923747411914393, 'subsample': 0.6720484833811949, 'reg_alpha': 4.574019523064196e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7445895728036213}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 21.928526974986646, 'min_child_weight': 1.3761238950784875, 'learning_rate': 0.07017067769059683, 'subsample': 1.0, 'reg_alpha': 2.6823100300018148e-09, 'reg_lambda': 0.6355660614149224, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 130.1295703464102, 'max_leaves': 17.57158346577143, 'min_child_weight': 1.698634514576314, 'learning_rate': 0.03521719009176447, 'subsample': 0.7264224540598854, 'reg_alpha': 6.938944357295462e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.0, 'min_child_weight': 2.405974651469639, 'learning_rate': 0.06161594116318532, 'subsample': 1.0, 'reg_alpha': 1.7681275151370683e-09, 'reg_lambda': 0.34542367425506687, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 5.353924777109775, 'min_child_weight': 4.774841193139187, 'learning_rate': 0.07572296002001837, 'subsample': 1.0, 'reg_alpha': 2.412772443827602e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.9860234326426851}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 210.64125055304433, 'max_leaves': 10.922697768746048, 'min_child_weight': 0.8559178030997845, 'learning_rate': 0.028656305987684847, 'subsample': 0.6, 'reg_alpha': 5.084996090504028e-10, 'reg_lambda': 0.9469761271785353, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 10.415592486322668, 'min_child_weight': 1.12331603484712, 'learning_rate': 0.030989016550196438, 'subsample': 1.0, 'reg_alpha': 8.549797572533514e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 90.22553497198325, 'max_leaves': 5.614591996928044, 'min_child_weight': 3.638220640853095, 'learning_rate': 0.07002288404706145, 'subsample': 0.6, 'reg_alpha': 1.4349975353280346e-09, 'reg_lambda': 0.977637150228521, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 213.3387855681857, 'max_leaves': 29.48799368455277, 'min_child_weight': 1.424230804485807, 'learning_rate': 0.034848350122365736, 'subsample': 1.0, 'reg_alpha': 3.7667179564054565e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.916054173846663, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.0, 'min_child_weight': 2.8695289915861206, 'learning_rate': 0.06226809318109443, 'subsample': 0.6, 'reg_alpha': 3.2571959424982645e-09, 'reg_lambda': 0.7822452065489011, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 238.75411861590536, 'max_leaves': 11.139015970639859, 'min_child_weight': 5.988864851335828, 'learning_rate': 0.04013290256002365, 'subsample': 1.0, 'reg_alpha': 2.242155303881818e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7095225283084271, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 5.249952273262778, 'min_child_weight': 0.682411723361976, 'learning_rate': 0.054068860566002235, 'subsample': 0.6027013111172674, 'reg_alpha': 5.471939621175274e-10, 'reg_lambda': 0.34562754157198466, 'colsample_bylevel': 0.7499456778041701, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 349.11822518373225, 'max_leaves': 9.120797581059643, 'min_child_weight': 1.4744080868763692, 'learning_rate': 0.027270877980714182, 'subsample': 1.0, 'reg_alpha': 3.543032018840845e-10, 'reg_lambda': 0.6187503307007649, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 378.52947054900574, 'max_leaves': 6.411643466182161, 'min_child_weight': 2.771872740362103, 'learning_rate': 0.07956987355381234, 'subsample': 0.6, 'reg_alpha': 3.462835892788e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.8996163359640412}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 11.787608009708032, 'min_child_weight': 1.836319302143476, 'learning_rate': 0.014833519815748283, 'subsample': 0.7012597557589457, 'reg_alpha': 5.420072998731524e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 249.47082317119722, 'max_leaves': 4.961083043210188, 'min_child_weight': 2.2255778607846546, 'learning_rate': 0.1462862718748058, 'subsample': 1.0, 'reg_alpha': 2.2636112921376787e-09, 'reg_lambda': 0.34097391956609424, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7811109197718091}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 33.281029774923184, 'min_child_weight': 1.3567053594758527, 'learning_rate': 0.025985414222745196, 'subsample': 1.0, 'reg_alpha': 5.593327823482118e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7730039586357058, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 343.55963296116187, 'max_leaves': 4.0, 'min_child_weight': 3.0123501434098867, 'learning_rate': 0.08350608899385989, 'subsample': 0.9733614055616355, 'reg_alpha': 2.1934953271702205e-09, 'reg_lambda': 0.8714981883387762, 'colsample_bylevel': 0.6883578634561128, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 10.0055253854792, 'min_child_weight': 0.6815167772527903, 'learning_rate': 0.022646922356947177, 'subsample': 0.6, 'reg_alpha': 1.8285865149468612e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 111.64893549326729, 'max_leaves': 5.844700799204492, 'min_child_weight': 5.9967292377692, 'learning_rate': 0.09581612364035953, 'subsample': 1.0, 'reg_alpha': 6.709520355669769e-10, 'reg_lambda': 0.6606804712435419, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7504396208252695}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 184.6259587649135, 'max_leaves': 4.0, 'min_child_weight': 9.68593448255237, 'learning_rate': 0.050085447690177164, 'subsample': 1.0, 'reg_alpha': 1.1310570417773089e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7783885889806287}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 15.44274364656484, 'min_child_weight': 0.4219388012115795, 'learning_rate': 0.04332476622850364, 'subsample': 0.7503289825871653, 'reg_alpha': 1.084732068407458e-09, 'reg_lambda': 0.667116845239069, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 77.13405286840391, 'max_features': 0.20948089397149158}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'extra', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 7.28042103271964, 'max_features': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 14.412141531703353, 'min_child_weight': 0.702467793423654, 'learning_rate': 0.036479238599801615, 'subsample': 1.0, 'reg_alpha': 8.622711928781561e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 280.5296052952419, 'max_leaves': 4.057641405222831, 'min_child_weight': 5.817877520425025, 'learning_rate': 0.05948425449424467, 'subsample': 0.9981705018671515, 'reg_alpha': 1.4228630789794784e-09, 'reg_lambda': 0.25324904145263716, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 10.677916840665489, 'min_child_weight': 2.914732993870161, 'learning_rate': 0.053056490699943906, 'subsample': 0.6, 'reg_alpha': 2.1617574392087823e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7511964567333211, 'colsample_bytree': 0.9547031209299575}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 332.5557795246778, 'max_leaves': 5.4766583304207925, 'min_child_weight': 1.402142698071129, 'learning_rate': 0.04089867769240092, 'subsample': 1.0, 'reg_alpha': 5.675446385247422e-09, 'reg_lambda': 0.36690316373122955, 'colsample_bylevel': 0.7083411385132391, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 5.961620878256247, 'min_child_weight': 3.6381027815763565, 'learning_rate': 0.04512902332584398, 'subsample': 1.0, 'reg_alpha': 1.1440186600214928e-09, 'reg_lambda': 0.41062416438394167, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 222.69136244516432, 'max_leaves': 9.809295728660306, 'min_child_weight': 1.1233524255769494, 'learning_rate': 0.04808303288460966, 'subsample': 0.6, 'reg_alpha': 1.0724421613812408e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 256.84416046063814, 'max_leaves': 4.0, 'min_child_weight': 1.6637981405934321, 'learning_rate': 0.0730194898561655, 'subsample': 1.0, 'reg_alpha': 7.454208141107746e-10, 'reg_lambda': 0.9275996275794158, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 15.180383863493955, 'min_child_weight': 2.456350613977949, 'learning_rate': 0.02971727571503502, 'subsample': 0.6001306503334952, 'reg_alpha': 1.6459076821962687e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 154.80623288642389, 'max_leaves': 15.095271340494584, 'min_child_weight': 1.5504195944259784, 'learning_rate': 0.068850272769864, 'subsample': 1.0, 'reg_alpha': 8.186380146885626e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.0, 'min_child_weight': 2.6359777694212867, 'learning_rate': 0.03151680051987627, 'subsample': 0.6, 'reg_alpha': 1.4987012848171633e-09, 'reg_lambda': 0.6287644844592153, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 172.8307169193102, 'max_leaves': 26.370272090310753, 'min_child_weight': 2.1966161971985283, 'learning_rate': 0.07194784840173957, 'subsample': 1.0, 'reg_alpha': 5.000288622107539e-10, 'reg_lambda': 0.3295231530791324, 'colsample_bylevel': 0.6798356770360275, 'colsample_bytree': 0.7198291876265014}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.0, 'min_child_weight': 1.8605305694250414, 'learning_rate': 0.030159905554234857, 'subsample': 0.77491010005003, 'reg_alpha': 2.4536460535288167e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7826940706164105, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 9.930010117683725, 'min_child_weight': 3.0334673787247466, 'learning_rate': 0.020799879007159478, 'subsample': 1.0, 'reg_alpha': 1.2958314001446897e-09, 'reg_lambda': 0.8566179101809707, 'colsample_bylevel': 0.7263840382774422, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 281.4704411053203, 'max_leaves': 5.889148301352587, 'min_child_weight': 1.3472607659621993, 'learning_rate': 0.10432466034441656, 'subsample': 0.6406848600141599, 'reg_alpha': 9.468005207135193e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7325372328822498, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 92.4785099628835, 'max_leaves': 11.830772258043636, 'min_child_weight': 0.9225187052892683, 'learning_rate': 0.07751965608447497, 'subsample': 1.0, 'reg_alpha': 2.7188324974832064e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7888599056042859, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.942982667696233, 'min_child_weight': 4.43012327094284, 'learning_rate': 0.027992130283217953, 'subsample': 0.6554674495245268, 'reg_alpha': 4.5125760617825595e-10, 'reg_lambda': 0.5538674675761144, 'colsample_bylevel': 0.6745219900636067, 'colsample_bytree': 0.8088947289523045}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 237.5347046046242, 'max_leaves': 4.0, 'min_child_weight': 4.81367849976569, 'learning_rate': 0.10029887318387148, 'subsample': 0.6, 'reg_alpha': 1.3921870407821059e-09, 'reg_lambda': 0.45509306395407, 'colsample_bylevel': 0.8736236259503735, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 24.336820433732328, 'min_child_weight': 0.8490121607375689, 'learning_rate': 0.021634742681992652, 'subsample': 1.0, 'reg_alpha': 8.812708411110288e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6090761943745993, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 21.412810456862346, 'min_child_weight': 3.5125780249451166, 'learning_rate': 0.016045630642644543, 'subsample': 1.0, 'reg_alpha': 9.157294733962919e-10, 'reg_lambda': 0.5672311665514848, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 282.9616035472999, 'max_leaves': 4.0, 'min_child_weight': 1.1634963138636338, 'learning_rate': 0.13523558911170575, 'subsample': 0.6918495788371569, 'reg_alpha': 1.339799449572777e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 141.18219565240273, 'max_leaves': 12.262699446840259, 'min_child_weight': 0.7009418318781678, 'learning_rate': 0.0647132117241329, 'subsample': 1.0, 'reg_alpha': 8.42801445582106e-10, 'reg_lambda': 0.8620029379707961, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.9106872531873101}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.768876744511546, 'min_child_weight': 5.830543132561097, 'learning_rate': 0.03353164299551613, 'subsample': 0.6, 'reg_alpha': 1.4557329615951595e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 4.0, 'min_child_weight': 1.0977417193093533, 'learning_rate': 0.016461474575073468, 'subsample': 0.6, 'reg_alpha': 8.856862037161438e-10, 'reg_lambda': 0.498498152195386, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7317840312839865}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 201.48313800648714, 'max_leaves': 15.819312253040145, 'min_child_weight': 3.7229810184797487, 'learning_rate': 0.13181931562271287, 'subsample': 1.0, 'reg_alpha': 1.3852466474764367e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 167.10156743146914, 'max_leaves': 6.0668813074637, 'min_child_weight': 1.5649741755305089, 'learning_rate': 0.021715940241117795, 'subsample': 0.965254024564111, 'reg_alpha': 1.8946093600694695e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 9.639104385481835, 'min_child_weight': 2.611462635028238, 'learning_rate': 0.09992384803667052, 'subsample': 1.0, 'reg_alpha': 6.475708767579056e-10, 'reg_lambda': 0.35906914430691167, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 316.05041299973965, 'max_leaves': 8.504509312695575, 'min_child_weight': 0.8210697769240038, 'learning_rate': 0.11008670177431759, 'subsample': 1.0, 'reg_alpha': 6.945768353481941e-10, 'reg_lambda': 0.2538670492994661, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 6.876269995927093, 'min_child_weight': 4.977496065550976, 'learning_rate': 0.019711193792283307, 'subsample': 0.742809691956334, 'reg_alpha': 1.7663903861678226e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.972841689462936}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 11.64197708690867, 'min_child_weight': 0.8790950274380591, 'learning_rate': 0.029368627694218025, 'subsample': 0.6, 'reg_alpha': 9.598116220806823e-10, 'reg_lambda': 0.8572413045106729, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 170.5072971277377, 'max_leaves': 5.023141840979118, 'min_child_weight': 4.648953135467493, 'learning_rate': 0.07388633664534763, 'subsample': 1.0, 'reg_alpha': 1.2782652514190826e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 168.14351812210413, 'max_leaves': 6.564896634475621, 'min_child_weight': 1.091731853616535, 'learning_rate': 0.02972642403633722, 'subsample': 1.0, 'reg_alpha': 9.209918829190862e-10, 'reg_lambda': 0.5815410504142959, 'colsample_bylevel': 0.8280127469673934, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 8.907878596270116, 'min_child_weight': 3.7434756260373243, 'learning_rate': 0.07299701807302367, 'subsample': 0.6, 'reg_alpha': 1.3321440364113498e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.64262700708223, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 183.133641532666, 'max_leaves': 10.764202387524257, 'min_child_weight': 0.7832417806900568, 'learning_rate': 0.03362460856746969, 'subsample': 0.6, 'reg_alpha': 2.7977672675097103e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.6, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 5.432757589614703, 'min_child_weight': 5.217892718365208, 'learning_rate': 0.06453429214715657, 'subsample': 1.0, 'reg_alpha': 4.385260556379222e-10, 'reg_lambda': 0.73721781954665, 'colsample_bylevel': 0.8909302612053072, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 279.4775839023231, 'max_leaves': 7.57740982654097, 'min_child_weight': 1.5275492067964842, 'learning_rate': 0.039161342657747025, 'subsample': 1.0, 'reg_alpha': 1.0259606815559666e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.8399506337410502, 'colsample_bytree': 0.7}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 7.71758470976968, 'min_child_weight': 2.6754434920973003, 'learning_rate': 0.05541026342204864, 'subsample': 0.6, 'reg_alpha': 1.1958487946664974e-09, 'reg_lambda': 0.306896758328518, 'colsample_bylevel': 0.6334936031176742, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 178.03733683939285, 'max_leaves': 9.283879275495574, 'min_child_weight': 3.354894048671437, 'learning_rate': 0.024875997036807082, 'subsample': 1.0, 'reg_alpha': 8.387833028137783e-10, 'reg_lambda': 0.7894852165887019, 'colsample_bylevel': 0.6, 'colsample_bytree': 0.8775293676801921}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 379.0, 'max_leaves': 6.299015797342915, 'min_child_weight': 1.2181820125736844, 'learning_rate': 0.08723028505816995, 'subsample': 0.6, 'reg_alpha': 1.46270656592494e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}
{'Current Learner': 'xgboost', 'Current Sample': 379, 'Current Hyper-parameters': {'n_estimators': 241.0587717464422, 'max_leaves': 4.0, 'min_child_weight': 3.602206396841165, 'learning_rate': 0.016076951812167468, 'subsample': 0.7325856993253884, 'reg_alpha': 7.388107721385554e-10, 'reg_lambda': 1.0, 'colsample_bylevel': 1.0, 'colsample_bytree': 1.0}, 'Best Learner': 'xgboost', 'Best Hyper-parameters': {'n_estimators': 363.52652852000597, 'max_leaves': 7.647176094282851, 'min_child_weight': 2.021601242624778, 'learning_rate': 0.04658261813838798, 'subsample': 1.0, 'reg_alpha': 1.1076524023419625e-09, 'reg_lambda': 1.0, 'colsample_bylevel': 0.7294541475717249, 'colsample_bytree': 1.0}}

Please have a look at the performance of the best model:

Non-standard Examples

All non-standard examples are evaluated with a run time limit of 60 minutes.

Example: Concrete Compressive Strength

You can find a detailed walk-thru the concrete compressive strength dataset here.

Example: Sonar - Mines vs. Rocks

You can find a detailed walk-thru the sonar - mines vs. rocks dataset here

Apparently, we’re observing some overfitting when running it for 60 mins and not just for 300 s.

Example: Seismic Bumps Forecasting in a Coal Mine

You can find a detailed walk-thru the seismic bumps dataset here

On this highly imbalanced dataset, I would call it a clear failure.