Slackbot
09/19/2023, 1:12 PMCristian (Nixtla)
09/19/2023, 3:20 PMnhits_config = {
"max_steps": 100, # Number of SGD steps
"input_size": 24, # Size of input window
"learning_rate": tune.loguniform(1e-5, 1e-1), # Initial Learning rate
"n_pool_kernel_size": tune.choice([[2, 2, 2], [16, 8, 1]]), # MaxPool's Kernelsize
"n_freq_downsample": tune.choice([[168, 24, 1], [24, 12, 1], [1, 1, 1]]), # Interpolation expressivity ratios
"val_check_steps": 50, # Compute validation every 50 steps
"random_seed": tune.randint(1, 10), # Random seed
"futr_exog_list": [YOUR_LIST] # <-------------
}
J.
09/20/2023, 9:54 AMAfiq Johari
09/27/2023, 12:05 PM