Hi @Sena Aslan
Thank you for using the Microsoft Q&A forum.
To use a registered model for making predictions in Azure ML Notebook, you need to download the model artifact and load it into your notebook. You can download the model artifact from the registered model using the Model.get_model_path() method and load the model from the .pkl file using the joblib.load()
function.
Once the model is loaded, you can prepare input data and then, you can make predictions using the predict method of the loaded model.
You can find more information about - How to work with models in Azure Machine Learning, here.
I hope you understand. Thank you.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful.