how to deploy machine learning model into web page using flask

Viewed 12

I wrote a machine learning model from scratch. I didn't use class. Now I want to use it in a website. But in pickle, I need to dump a object where I train the dataset. Now how can I do it any other way.

my code

def ReLU(Z):
    return np.maximum(Z,0)
0 Answers
Related