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
{{ message }}
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.
In a previous python session, I ran model = Mljar(...) and model.fit(...) and it was fine.
Upon closing the python session and opening a new one, doing model = Mljar(...) followed by model.predict(...) returns Can not run prediction. Please run fit method first, to start models training and to retrieve them ;) eventhough the fit method had been called earlier.
The text was updated successfully, but these errors were encountered:
Thank you for reporting this. This works as designed. To get the best model reference you need call fit once again, however it will not train models again, just check if models are available and get information about best one, which will be used for predictions. Can you check if it works for you?
In a previous python session, I ran
model = Mljar(...)
andmodel.fit(...)
and it was fine.Upon closing the python session and opening a new one, doing
model = Mljar(...)
followed bymodel.predict(...)
returnsCan not run prediction. Please run fit method first, to start models training and to retrieve them ;)
eventhough thefit
method had been called earlier.The text was updated successfully, but these errors were encountered: