WebserviceException
Hi all, I am trying to do "create a Real-time Inferencing Service" and in the Notebook at some point, this is the code: from azureml.core.webservice import AciWebservice from azureml.core.model import InferenceConfig # Configure the…
Azure Machine Learning
Azure Machine Learning studio - Images which have filename containing square brackets is not shown in outputs folder.
Hi, I am using Azure Machine Learning studio. I trained my deep learning model on computing cluster, and then outputs images onto 'outputs' directory. However, in Experiment > Run > outputs + logs tab, directories was displayed instead of my…
Azure Machine Learning
WebserviceException: How to delete an existing service
Hi, I am getting the following error message: "WebserviceException: WebserviceException: Message: Service diabetes-service with the same name already exists, please use a different service name or delete the existing service. InnerException None…
Azure Machine Learning
Is it possible to take a ML Azure Container Instance from the registry and deploy it elsewhere?
Hi, I was wondering if it was possible to take a ML Model deployed to a container instance and then take that and deploy that in docker elsewhere. I have managed to sync a repo with the Azure registry and download the container which was created in…
Azure Container Instances
Azure Machine Learning
check workspace details / settings
Hi all, I am doing the following exercise: https://microsoftlearning.github.io/mslearn-dp100/instructions/02-automated-ml.html In step3 this is what I had to do: • Region: The same region as your workspace • Virtual Machine priority: Dedicated …
Azure Machine Learning

Docker container fails to run due to invalid --GPU switch
I have been testing Azure ML experiments running locally on my machine with docker. So far I have run into the same issue using several curated environments as well as using a conda dependencies file. The run job is submitted successfully Docker…
Azure Machine Learning


Round columns in Azure ML
Hello, I have made an experiment in Azure ML with a coefficient of detemination reaching 86% (regression). I would like to improve it using the rounding of several features (columns). I would like to round some columns to "xx-ten" example:…
Azure Machine Learning
Speech to Text, Text to Speech, Speech Translation, PHP APİ document ?
Speech to Text, Text to Speech, Speech Translation We will use the services. I need a php document ?
Azure Machine Learning

Is it possible to use a Windows Account for configuring Machine Learning Server 9.4.7?
After configuring Machine Learning Server with a password, one connects to the server through the user name "admin" and the designated password. Is it possible configure Machine Learning Server to use a Windows Account instead of the default…
Azure Machine Learning
How to create a Compute Instance
Hello Folks, I'm currently using a free trial version of Azure. When creating a compute instance in machine learning studio, I cannot select a virtual machine. All virtual machine names in the selection field are inactive. How are…
Azure Machine Learning
RStudio Server stack limit error
I'm using a free account with a default configuration. I'm trying to get through this tutorial https://learn.microsoft.com/pl-pl/azure/machine-learning/tutorial-1st-r-experiment. I encounter the error: C stack usage <big number> is too close…
Azure Machine Learning
How to update azure ml webservice
I am trying to update azure ml webservice which already deployed with new scoring file . Can you please help me in this , i follow your instruction from https://learn.microsoft.com/en-us/azure/machine-learning/how-to-deploy-update-web-service but i am…
Azure Machine Learning
How do I orchestrate ML model retraining periodically?
I have to retrain every month or so a PyTorch Model trained on data obtained from processing tables sitting in Azure Data Lake Storage gen 1. So far, I have the following building blocks: A Databricks notebook that does the ETL job of…
Azure Machine Learning
Azure Databricks
Azure Data Factory
Azure ml for data series in 3 states (stages)
Hello! I am new to using azure ml and I am trying to recreate in azure ml a process that is composed of 3 different states. State 1 influences state 2, state 1 and 2 influence state 3. Indeed I need azure ml to predict what will happen in stage 2, after…
Azure Machine Learning
Azure ML time series model inference error during data input (python)
I prepared a model for time series forecasting. The data have some rare gaps in all data sets. I am using the following code to call for a deployed Azure AutoML model as a web service: import requests import json import pandas as pd # URL for the web…
Azure Machine Learning
AutoML automatic data preprocessing?
I used a dataset that contains missing values, and Auto ML reached over 90% accuracy. I am curious how Auto ML dealt with missing values and if there is a way to retrieve the preprocessed dataset that Auto ML created? Or does it ignore rows with missing…
Azure Machine Learning
Is there any way to print auto ml rank value?
오토ml 사용하고 있습니다. 결과값을 높은 확률순으로 1순위 결과값, 2순위 결과값, 3순위 결과값으로 출력하고 싶은데 오토ml로는 1순위 결과값만 출력이 됩니다. 여러 순위를 출력하는 방법은 없을까요?? Translated from Korean to English: I am using auto ml. Results in order of high probability I want to print the first…
Azure Machine Learning
Does the "Estimated monthly costs" for Azure Machine Learning in the Price Calculator include all other non-compute "additional resources" created in the workspace
When trying to use the Azure Pricing estimate in the Azure Pricing Calculator, the "Estimated monthly costs" seems to include but also far exceeds the compute cost. Does this Estimated Monthly cost include the other resources that get created?…
Azure Machine Learning
Data Labeling not accesible after Transfer billing ownership
Hi, I transferred the billing ownership of my azure directory, and now I have not access to the ML data labeling project. Everything works fine in the destination account, but the data labeling project that was in progress. If I create a new…
Azure Machine Learning

Data input format (call the service) for Azure ML time series forecast model deployed as a web service (Python)
Sorry in advance for the lengthy question as I wanted to explain it as detailed as possible. I used the Azure AutoML to train a model and deployed it as a web service. Now I can access (call) it over the REST endpoint. I have the following data types…