Skip to content

model

Latest
Compare
Choose a tag to compare
@ishubhamsingh2e ishubhamsingh2e released this 03 Jan 10:17
· 24 commits to main since this release
f87982d

It's a serialized file, can be loaded using a pickle module in python

Use this code to load the model in memory

import pickle
with open("module/model.pkl", "rb") as file:
    ml = pickle.load(file)