I have created a ML model and I want to publish the predictions of the test set onto a web page for better visualization for non-technical team members.
I have converted the predictions to a data frame to the case numbers of the test set and original data.
Predictions=pd.DataFrame({'Case.Number':CN_test,'Org_Data':y_test,'Predictions':y_pred})
As I am new to this, my experience with API is just of creating a basic API for hello world.
Requesting guidance on how to do this using API or any other way to get this done.
Regards
Sudhir