9f3e9e7e9fd19fffe5ff647965ace2a0b022f899,python/ray/tune/examples/bohb_example.py,,,#,14

Before Change


parser = argparse.ArgumentParser()
parser.add_argument(
    "--smoke-test", action="store_true", help="Finish quickly for testing")
parser.add_argument(
    "--ray-address",
    help="Address of Ray cluster for seamless distributed execution.")
args, _ = parser.parse_known_args()


class MyTrainableClass(Trainable):

After Change


    config_space.add_hyperparameter(
        CS.UniformFloatHyperparameter("width", lower=0, upper=100))

    experiment_metrics = dict(metric="episode_reward_mean", mode="max")
    bohb_hyperband = HyperBandForBOHB(
        time_attr="training_iteration",
        max_t=100,
        reduction_factor=4,
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: ray-project/ray
Commit Name: 9f3e9e7e9fd19fffe5ff647965ace2a0b022f899
Time: 2020-04-20
Author: rliaw@berkeley.edu
File Name: python/ray/tune/examples/bohb_example.py
Class Name:
Method Name:


Project Name: AIRLab-POLIMI/mushroom
Commit Name: f6c7f0d36f5326074f6796386006609e65c1f63f
Time: 2017-03-15
Author: carlo.deramo@gmail.com
File Name: examples/run.py
Class Name:
Method Name:


Project Name: ray-project/ray
Commit Name: a50128079d616cc25630471ad01d09537d38657d
Time: 2020-11-16
Author: khu@linkedin.com
File Name: python/ray/tune/examples/tf_distributed_keras_example.py
Class Name:
Method Name: