Skip to content

Commit 7b33b86

Browse files
authored
Update how-to-deploy-mlflow-models-online-endpoints.md
1 parent b06f935 commit 7b33b86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/machine-learning/how-to-deploy-mlflow-models-online-endpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ Use the following steps to deploy an MLflow model with a custom scoring script.
587587
raise Exception("Request must contain a top level key named 'input_data'")
588588

589589
serving_input = json.dumps(json_data["input_data"])
590-
data = infer_and_parse_json_input(raw_data, input_schema)
590+
data = infer_and_parse_json_input(serving_input, input_schema)
591591
result = model.predict(data)
592592

593593
result = StringIO()

0 commit comments

Comments
 (0)