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.
def ReLU(Z):
return np.maximum(Z,0)
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.
def ReLU(Z):
return np.maximum(Z,0)