This message was deleted.
# neural-forecast
s
This message was deleted.
c
From the error it seems that
qloguniform
you are using for
batch_size
is returning a float (7.0), but it should be an integer (7). Can you try with a different function, like
quniformint
?
We will add a parsing function so that the float is automatically parsed to integer.
g
ok it works if we force these values as int. Thank you