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!!