Questions tagged [azure-auto-ml]

18 questions
3
votes
1 answer

How to adjust feature importance in Azure AutoML

I am hoping to have some low code model using Azure AutoML, which is really just going to the AutoML tab, running a classification experiment with my dataset, after it's done, I deploy the best selected model. The model kinda works (meaning, I…
3
votes
0 answers

Azure AutoMl error : A field of the entity is over the size limit

I am trying to run an automl code on Azure using the azureml SDK (class AutoMLStep). But it is throwing an error saying A field of the entity is over the size limit. FieldName=RunDto.Properties.Value/Length, Limit=550000, Size=697351 ERROR - AutoML…
colab123
  • 81
  • 1
  • 6
1
vote
2 answers

Encountered an internal AutoML error- ClientException: Message: No objects to concatenate

I am trying to implement Hierarchical time series forecasting on azureautoml pipelines. I followed this notebook for…
1
vote
1 answer

Azure AutoML pipeline -Batch scoring fails with "DriverException: Job failed with There is no succeeded mini batch item returned from run()

While running automl parallel run with tabulardataset , azureml_common.parallel_run.exception.NoResultToAppendError: There is no succeeded mini batch item returned from run()
1
vote
2 answers

Issue with 'HoltWintersResultsWrapper' while loading Azure AutoMl model in AzureML

I am sure this is something basic but I have been banging my head against the wall for a while now and I can't figure it out. I have trained and registered a model using automl in AzureML. The model is visible in the registry. When I try to load it…
E.Brum
  • 43
  • 1
  • 5
1
vote
0 answers

Failed to flush task queue within 120 seconds on Automatic ML

I'm running a Automatic ML on Azure but it fails and this is the error the child jobs are giving me. Starting the automl_batch_driver setup... Set enable_streaming flag to False Batch Run Id in the real script: …
Red Dragon
  • 43
  • 6
0
votes
1 answer

How do I send an image to an Azure AutoML endpoint in java?

I have an object detection model deployed to an endpoint in azure. In python, the code works perfect and looks like this: headers = {'Content-Type': 'application/json', 'Authorization': ('Bearer ' + api_key)} sample_image =…
CDP
  • 13
  • 2
0
votes
1 answer

(NoMatchingArtifactsFoundFromJob) No artifacts matching outputs/model.pt found from Job - Azure ML

I am trying to create a regitered Azure ML Model using the the existing best model from the experiment which is run. The documentation I have refered said we can create it via this code. but it returns a error import datetime from…
0
votes
1 answer

Azure automl get underlying code for training model

I've been testing a model using azureml for image classification. I see in this guide that it should be possible to view the underlying code:…
Will
  • 2,790
  • 19
  • 22
0
votes
1 answer

Need help understanding the data structure for AutoML

I have an IoT device that updates an Azure Storage Table anytime one of its values changes. For example, If the fish tank temperature changes from 68 to 69, that gets logged. If the filter pump runs, that gets logged. When the little treasure chest…
Tim
  • 2,701
  • 3
  • 26
  • 47
0
votes
1 answer

AttributeError: module 'typing' has no attribute '_ClassVar' - Azure Function

I am having a problem deploying Azure Function with a trained .pkl model on Azure ML when loading it using joblib.load('model.pkl'). Locally on Windows in Visual Studio Code works, doesn't work after deployment to Azure Fuction. I am using python…
0
votes
0 answers

Impossible to use azure automl to forecast time series with context that intercepts training dataset?

I have a very simple question but I cannot seem to find a reasonable solution. I am using Azure automl to predict time series. So far so good. As you can see in the image below, I would like to train a model and then later on run it by giving it…
E.Brum
  • 43
  • 1
  • 5
0
votes
1 answer

Azure ML - Retrieve an AutoMLStep model and use for inference

I am currently trying to use the AutoMLStep to train a machine learning model, register it in the workspace, and use it for inference as a deserialized model. My current project folder/file structure is the following: project/ │ ├── src/ …
0
votes
0 answers

Error when trying to install azureml-automl-core

I'm trying to install the azureml-automl-core package on my macOS laptop with the following command: pip install azureml-automl-core and I get an error which says that it encountered error while trying to install the numpy package. But I already…
Juan123
  • 1
  • 1
0
votes
1 answer

Implementing Computer Vison on AutoML to classify dementia using MRI images in .NII file format

I am using .NII file format which represents, the neuroimaging dataset. I need to use Auto ML to label the dataset of images that are nearly 2GB in size per patient. The main issue is with using Auto ML to label the dataset of images with.NII file…
1
2