Is it possible to train my model and colab and create streamlit application on local PC!?
YesâŚtrain the model, store it as pickle file and then use it (import) for inference - create streamlit application on local pcâŚ
Thanks a lot!, since I am a beginner, can you share some examples!
@seanbenhur49 Store your pickle file (*.pkl) in a directory where you place streamlit python fileâŚ
#open, load and use it like belowâŚits just an exampleâŚ
import pickle
pickle_file = open(".pkl",ârbâ)
m = pickle.load(pickle_file)
m.predict(**)
Thanks a lot for the explanation!!
Hey, Iâm using same procedure to load my pytorch deep learning model. But it is giving me following error:
AttributeError: Canât get attribute âNetworkâ on <module âmainâ from âE:\Deployment Projects\FeCare\App.pyâ>
Can u suggest something?
Please, in my on case.
It display
ModuleNotFoundError: no module namedâsklearnâ
Thank you for help in advance.
Hi there, I have this example that could be of some help for startersâŚ
Regards!!