Slackbot
02/29/2024, 3:34 PMMarco
02/29/2024, 4:17 PMVidar Ingason
02/29/2024, 4:22 PMMarco
02/29/2024, 4:47 PMVidar Ingason
02/29/2024, 10:55 PMnhits_config = {
"max_steps": 100,
"input_size": 24,
"learning_rate": tune.loguniform(1e-5, 1e-1),
"n_pool_kernel_size": tune.choice([[2, 2, 2], [16, 8, 1]]),
"n_freq_downsample": tune.choice([[168, 24, 1], [24, 12, 1], [1, 1, 1]]),
"val_check_steps": 50,
"random_seed": tune.randint(1, 10),
"hist_exog_list": ['feat_1', 'feat_2', 'feat_3', 'feat_4', 'feat_5', 'feat_6'],
"futr_exog_list": []
}
Can you explain what it even means to tune the futr_exog_list? Is it if the feature should be included or not?Marco
03/01/2024, 2:54 PMtune.choice(['feat_1'], ['feat_2'], ['feat_1', 'feat_2'])
, then you also search if using only feat_1
is better than using only feat_2
, or if using both is best, etc.
I hope this helps 🙂Vidar Ingason
03/01/2024, 3:19 PMVidar Ingason
03/01/2024, 3:34 PM