Endpoint stuck in 'transitioning' state

Sandy 21 Reputation points
2020-11-09T16:29:33.57+00:00

I'm trying to use Azure ML to host an image classification model trained in lobe.ai (externally trained model).

I've used the 'no code' model deployment approach described here

I've been able to authenticate my workspace and register my TensorFlow model, but the endpoint is stuck on transitioning for over 2 hours.

Any ideas?

from azureml.core import Model  
  
model = Model.register(workspace=ws,  
                       model_name='cxr',                            # Name of the registered model in your workspace.  
                       model_path='cxr_test',                       # Local Tensorflow SavedModel folder to upload and register as a model.  
                       model_framework=Model.Framework.TENSORFLOW,  # Framework used to create the model.  
                       model_framework_version='1.15.3',            # Version of Tensorflow used to create the model.  
                       description='Pneumonia-prediction model')  
  
service_name = 'tensorflow-cxr-service'  
service = Model.deploy(ws, service_name, [model])  
Azure Machine Learning
Azure Machine Learning
An Azure machine learning service for building and deploying models.
2,976 questions
{count} votes

Accepted answer
  1. YutongTie-MSFT 53,211 Reputation points
    2020-11-11T20:06:20.897+00:00

    We have created a support ticket for this issue and we will update the solution later. Thanks.

    Regards,
    Yutong

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.