I'm trying to call a model that was deployed on my flow in a Python Notebook.
The reason is to build a webapp.
to do so, I created a notebook where I generated new data and made a call to the model a follows :
m = dataiku.Model("4bJu8Aug")
my_predictor = m.get_predictor()
a new data is df.
my question is, which function I need to call to predict(df)?
Operating system used: windows