This repository was archived by the owner on Jun 30, 2022. It is now read-only.
This repository was archived by the owner on Jun 30, 2022. It is now read-only.
Mljar(...) instance that was fit in a previous python session does not allow predict #9
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 thefitmethod had been called earlier.