Skip to content

Commit 7c55d6c

Browse files
committed
fix: imports
1 parent aac2d7e commit 7c55d6c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ The workspace is the top-level resource for Azure Machine Learning, providing a
8080
import json
8181
import mlflow
8282
import urllib.request
83+
import pandas as pd
8384
from mlflow.deployments import get_deploy_client
8485
```
8586

@@ -404,8 +405,8 @@ So far, the endpoint is empty. There are no deployments on it. Let's create the
404405
)
405406
406407
sample_request = json.dumps(
407-
{"input_data": json.loads(samples.to_json(orient="split", index=False))}
408-
)
408+
{"input_data": json.loads(samples.to_json(orient="split", index=False))}
409+
)
409410
```
410411
411412
1. Test the deployment

0 commit comments

Comments
 (0)