Slackbot
09/03/2023, 11:34 AMCristian (Nixtla)
09/04/2023, 3:09 PMRaul Gherman
09/06/2023, 8:08 AMLSTMConfing = {
"encoder_hidden_size": tune.randint(10, 190),
"encoder_n_layers": tune.randint(1, 4),
"context_size": tune.randint(5, 20),
"decoder_hidden_size": tune.randint(16, 256),
"learning_rate": tune.uniform(1e-4, 1e-2),
"max_steps": tune.randint(50, 250),
"batch_size": tune.randint(16, 32),
"input_size": 16,
"hist_exog_list": [
"FedInterest",
"High",
"Low",
"Open",
"SMA_1M",
"SMA_1W",
"SMA_3M",
"SMA_V_1M",
"SMA_V_1W",
"SMA_V_3M",
"Volume",
"Week Number",
"Week Number Average",
],
}
Cristian (Nixtla)
09/06/2023, 1:48 PMcontext_size
or number of layers.