File size: 200 Bytes
8a13fa1
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import mlflow
from mlflow.pyfunc import PythonModel


class Model(PythonModel):
    def predict(self, context, model_input, params=None):
        return model_input


mlflow.models.set_model(Model())