Fixing bug in mlrun serving (#2872)

We've updated the code so we're updating documentation here as well.
This commit is contained in:
alexiguazio 2021-08-16 05:56:06 -04:00 committed by GitHub
parent f422f12067
commit 055073be85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ def kfpipeline():
outputs=['model', 'test_set'])
# deploy our model as a serverless function, we can pass a list of models to serve
deploy = mlrun.import_function('hub://sklearn_classifier').deploy_step(
deploy = mlrun.import_function('hub://v2_model_server').deploy_step(
models=[{"key": "mymodel:v1", "model_path": train.outputs['model']}])
# test out new model server (via REST API calls)