Arthur LAMBERT
05/02/2024, 5:35 PMRuntimeError: [2]: params[0] in this process with sizes [6, 96] appears not to match sizes of the same param in process 0.
Would you have any idea on how to tackle this, while maintaining the parallelization?
Thanks a lot!José Morales
05/02/2024, 6:02 PMAutoTFT(..., search_alg=optuna.samplers.TPESampler(seed=0))
Arthur LAMBERT
05/02/2024, 7:13 PMmodels = [
AutoTFT(
h=config.forecast.horizon,
loss=LOSSES[config.model.loss.name](**config.model.loss.kwargs),
backend="optuna",
search_alg=TPESampler(seed=0),
gpus=config.model.devices,
config=config_tft,
num_samples=3
)
]
José Morales
05/02/2024, 7:23 PMArthur LAMBERT
05/02/2024, 7:24 PMJosé Morales
05/02/2024, 7:25 PMsync_dist=True
https://github.com/Nixtla/neuralforecast/blob/9d3f393ce5990603f0da8ed103a67e76a090676c/neuralforecast/common/_base_model.py#L324 which may help them all get the same score in each trialArthur LAMBERT
05/02/2024, 7:26 PMArthur LAMBERT
05/02/2024, 7:42 PM