Files
mlflow--mlflow/tests/pyfunc/sample_code/func_code.py
T
2026-07-13 13:22:34 +08:00

9 lines
108 B
Python

from mlflow.models import set_model
def predict(model_input):
return model_input
set_model(predict)