I have stored one ml model in my ADLS and I want to register the model to Azure ML using databricks. Tried to use the following codes to register my ml model but keep encountering an error that the path cannot be found. I have mount the storage to my databricks.
import urllib.request
from azureml.core.model import Model
# Register a model
model = Model.register(model_path = 'dbfs:/mnt/machinelearning/classifier.joblib',
model_name = "pretrained-classifier",
description = "Pretrained Classifier",
workspace=ws)