Hello Piyush Athawale ,
Thank you for reaching out on the Microsoft Q&A.
The issue you're facing is because the version of joblib used by Azure Machine Learning to save the model doesn’t match the version you’re using locally to load it. To fix this, check the joblib version in your environment and update or downgrade it to match the version Azure is using. You can do this with pip install joblib==<version>. If you want to avoid these compatibility issues altogether, try saving your model in ONNX format instead, which is more universal and doesn’t rely on joblib. Tools like onnxmltools can help with converting and saving the model. Lastly, make sure your Azure ML SDK is updated, as this issue might also be caused by recent changes in Azure's environment. Following these steps should get your models working again.
I hope this helps! If you have any further questions, feel free to ask.
If the information is useful, please accept the answer and upvote it to assist other community members.