Home > Blockchain >  AzureML schema "list index out of range" error
AzureML schema "list index out of range" error

Time:04-28

I developed a machine learning model using Azure ML's clustering. Few of the requests made from the cluster are triggering 404 HTTP error. I followed the document to do modifications in my swagger.json file. Finally ended up with "list index out of range" error. It seems to be having issue with the global parameter but I am no sure about it. I am using the API from postman with some default headers like mentioned in the body below

{
    "Inputs": {
         "input_1" : "content"
         "input_2: : "content"
         ......
    },
    "GlobalParameters": 0
}

CodePudding user response:

Change the "GlobalParameter" value to any floating number other than 1.0 or even you can remove it and execute. Sometimes, Global parameter will cause the issue. Check the below documentation.

https://docs.microsoft.com/en-us/answers/questions/746784/azure-ml-studio-error-while-testing-real-time-endp.html

  • Related