Skip to content

Releases: ishubhamsingh2e/HeartAttack-Analysis

model

03 Jan 10:17
f87982d
Compare
Choose a tag to compare

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)