mala
mala

Reputation: 1

How to create seperate mlflow custom models for training and prediction?

My requirement is to create separate Mlflow custom models for training and prediction. I want to create training model and use those training model in prediction model

Upvotes: 0

Views: 382

Answers (1)

Enos jeba
Enos jeba

Reputation: 112

You can use mlflow.pyfunc to create a custom model.

You can find additional details of mlflow.pyfunc on this link.

This link will also help you get a overall view on models

Upvotes: 1

Related Questions