You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One notable issue is usage of kwargs. For example, StateSpaceModel().fit() ultimately calls StateSpaceModel().forward(), and passing kwargs on to that method. This makes it difficult for someone who's working with fit() to know all their options (e.g. n_step).
The text was updated successfully, but these errors were encountered:
One notable issue is usage of
kwargs
. For example,StateSpaceModel().fit()
ultimately callsStateSpaceModel().forward()
, and passingkwargs
on to that method. This makes it difficult for someone who's working withfit()
to know all their options (e.g.n_step
).The text was updated successfully, but these errors were encountered: