lobbie lobbie
11/07/2023, 11:49 PMJosé Morales
11/07/2023, 11:51 PMlobbie lobbie
11/08/2023, 12:09 AMJosé Morales
11/08/2023, 12:17 AMconfig=None
? The default seed for all models is 1, however the default configuration for the auto models also tunes the seedlobbie lobbie
11/08/2023, 12:20 AM# config for tunning etc. Most parameters taken of by the Auto models.
myconfig = {'input_size': tune.choice([horizon,horizon*2,horizon*3])
,'batch_size': tune.choice([32,64])
,'max_steps': tune.choice([500])
,'learning_rate': tune.loguniform(1e-4, 1e-2)
,'random_seed': tune.randint(1, 20)
,'scaler_type': tune.choice([None])} # data is already scaled.
José Morales
11/08/2023, 12:20 AM'random_seed': 666
lobbie lobbie
11/08/2023, 12:21 AMCristian (Nixtla)
11/08/2023, 3:05 AM