Replies: 1 comment 1 reply
-
Hey @SaintRod. What is the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, all:
I am reaching out for assistance. I can't seem to get most of the Auto* models to work. The only Auto* models that work are AutoRNN and AutoLSTM.
In particular, I'm trying to get the AutoTFT model to work, but have been thus far unable. There are several warnings and errors while running
.fit
but the main issue isRuntimeError: No best trial found for the given metric: loss. This means that no trial has reported this metric, or all values reported for this metric are NaN. To not ignore NaN values, you can set the 'filter_nan_and_inf' arg to False.
I receive the same error message no matter what I try. I tried addingfilter_nan_and_inf
toconfig
but then in the stdout of running.fit
I seeTypeError: Trainer.__init__() got an unexpected keyword argument 'filter_nan_and_inf'
... so where doesfilter_nan_and_inf
go? I've seen an issue about this but the answer wasn't clear [to me anyway].Interestingly the non-auto version of TFT works. I copied the TFT specification below from an example in the neuralforecast documentation. I've tried AutoTFT without passing anything to the config argument too, but the result is the same error.
Since AutoRNN, AutoLSTM, and TFT work I assume things were installed properly.
Does anyone have any ideas?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions