Closed trancenoid closed 2 weeks ago
Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @Azure/azure-ml-sdk @azureml-github.
Thanks for reaching out @trancenoid! Tagging the right team to help @azureml-github
It's a known and a repair item is in our backlog but there is no ETA yet. cc: @andscho-msft , @trangevi Suggested workaround the workaround would be to not use a named output, and instead register the model as a separate step, pointing to an asset which is in workspaceartifactstore.
Describe the bug I am registering the model using the following component and pipeline script : Component
Pipeline :
after this using
ml_client.models.get('NYCTAXI-XGB-model', version = '2').path
returns path to "workspaceartifactstore", but on browsing to the location there are only logs, the actual model files are in "workspaceblobstore"To Reproduce Create the two files as above and run the pipeline.
Expected behavior The path must indicate the correct datastore, one that would work with fsspec
Screenshots If applicable, add screenshots to help explain your problem.
Additional context I need to read the JSON file I wrote in the component back again to tag the model asset. For conformity with data asset tagging #38205 I don't want to do this via mlflow even if possible.