186d05b75a91c7ec57b54da68783c2853ccbc706,examples/pruning/lightgbm_integration.py,,objective,#Any#,23

Before Change


        "metric": "auc",
        "verbosity": -1,
        "boosting_type": trial.suggest_categorical("boosting", ["gbdt", "dart", "goss"]),
        "num_leaves": trial.suggest_int("num_leaves", 10, 1000),
        "learning_rate": trial.suggest_loguniform("learning_rate", 1e-8, 1.0)
    }

After Change


        "boosting_type": "gbdt",
        "lambda_l1": trial.suggest_loguniform("lambda_l1", 1e-8, 10.0),
        "lambda_l2": trial.suggest_loguniform("lambda_l2", 1e-8, 10.0),
        "num_leaves": trial.suggest_int("num_leaves", 2, 256),
        "feature_fraction": min(trial.suggest_uniform("feature_fraction", 0.4, 1.0 + EPS), 1.0),
        "bagging_fraction": min(trial.suggest_uniform("bagging_fraction", 0.4, 1.0 + EPS), 1.0),
        "bagging_freq": trial.suggest_int("bagging_freq", 1, 7),
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 2

Instances


Project Name: pfnet/optuna
Commit Name: 186d05b75a91c7ec57b54da68783c2853ccbc706
Time: 2019-10-06
Author: eowner@gmail.com
File Name: examples/pruning/lightgbm_integration.py
Class Name:
Method Name: objective


Project Name: pfnet/optuna
Commit Name: 08e682506be2279ab882c73031bb7a7ae8f1ffd8
Time: 2020-04-17
Author: himkt@cookpad.com
File Name: examples/allennlp/allennlp_jsonnet.py
Class Name:
Method Name: objective


Project Name: pfnet/optuna
Commit Name: 186d05b75a91c7ec57b54da68783c2853ccbc706
Time: 2019-10-06
Author: eowner@gmail.com
File Name: examples/lightgbm_simple.py
Class Name:
Method Name: objective