Skip to content

Commit

Permalink
Update README.md in mlflow to match column names order (#1703)
Browse files Browse the repository at this point in the history
Corrected the difference in column names in "MLflow Scoring Protocol" to match with the order in "Send test inference request". The values are in correct same order in both sections, so different columns are causing confusion.
  • Loading branch information
vivekk0903 authored Apr 22, 2024
1 parent 91b922f commit 2d14070
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/examples/mlflow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,17 +290,17 @@ import requests
inference_request = {
"dataframe_split": {
"columns": [
"alcohol",
"chlorides",
"citric acid",
"density",
"fixed acidity",
"volatile acidity",
"citric acid",
"residual sugar",
"chlorides",
"free sulfur dioxide",
"total sulfur dioxide",
"density",
"pH",
"residual sugar",
"sulphates",
"total sulfur dioxide",
"volatile acidity",
"alcohol",
],
"data": [[7.4,0.7,0,1.9,0.076,11,34,0.9978,3.51,0.56,9.4]]
}
Expand Down

0 comments on commit 2d14070

Please sign in to comment.