I need to deploy a RandomForestModel regression model, then consume it.
- I have made a zip file of the entire folder containing the trained RandomForestModel regression model for deployment.
- In a separate notebook, I unzipped and loaded the model: loadedModel = tf.saved_model.load(’/RF_model’)
- With the loaded model, I need to predict with a new dataset. However, I can’t find any information about what methods I have to use.
Any help is greatly appreciated.