cortana-intelligenceazure-machine-learning-service

AZURE ML getting model weights


I have deployed a regression model on azure ML , is it possible to get the model weights/coefficients of the model programatically from azure, rather than getting predicted value? .


Solution

  • No. Currently we do not feature exporting weights from the models including with Azure Machine Learning.

    If you have a method for extracting weights from Python models, you may be able to work this out using the execute Python Script module.

    The primary purpose of Azure Machine Learning is to make deployable and scalable web services from the machine learning modules. Though the authoring experience for creating ML models is great, it is not intended to be a place to create and export models, but instead a place to create and operationalize your models.

    UPDATE New features may make this answer outdated.