Questions tagged [azure-machine-learning-service]

For questions about Microsoft's cloud-based service for machine learning. Be sure to include in your question the version of azureml-sdk or azureml CLI that you're using and code snippets you may be using.

Reference:

1831 questions
7
votes
8 answers

Machine Learning Suggestions

I have data of a lot of students who got selected by some colleges based on their marks. Iam new to machine Learning. Can I have some suggestions how can I add Azure Machine Learning for predicting the colleges that they can get based on their marks
Tarun Pothulapati
  • 572
  • 1
  • 5
  • 13
7
votes
1 answer

How to define current time zone in Azure ML for strptime function, unknown timezone 'localtime'

All of these dates that I’ve manipulated in Execute R module in Azure Machine Learning write out as blank in the output – that is, these date columns exist, but there is no value in those columns. The source variables which contain date information…
6
votes
2 answers

schedule Azure machine learning compute instances

I want to schedule azure machine learning compute instances so that I can stop them during off-hours like weekends, azure automation solution with runbook seems to be working with VMs in general but not with azure ML. The solution could be either a…
Neha neha
  • 61
  • 1
6
votes
3 answers

VS Code : Sign In Error :You appear to be offline. Please check your network connection

In VS Code when i try to run the below command for sign in I get below error message and it is not able to login
Shiv948
  • 469
  • 5
  • 13
6
votes
2 answers

Running Azure Machine Learning Service pipeline locally

I'm using Azure Machine Learning Service with the azureml-sdk python library. I'm using azureml.core version 1.0.8 I'm following this https://learn.microsoft.com/en-us/azure/machine-learning/service/how-to-create-your-first-pipeline tutorial. I've…
CodeMonkey
  • 3,418
  • 4
  • 30
  • 53
6
votes
2 answers

No module named 'automl' when unpickle auto-trained model

I'm trying to reproduce 2 tutorials below using my own dataset instead of MNIST…
siv7qVI4
  • 63
  • 1
  • 3
6
votes
5 answers

What is the name of the driver to connect to Azure SQL Database from pyodbc in Azure ML?

I'm trying to create a 'Reader' alternative to read data from Azure SQL Database using the 'Execute python script' module in Azure ML. while doing so, I'm trying to connect to Azure Sql using pyodbc library. here's my code: def…
5
votes
0 answers

How do I deploy a real-time Llama 2 endpoint on Azure?

I've been reading up a lot on Open Source LLMs and with the recent release of Llama 2, I've a question. Since Llama 2 is on Azure now, as a layman/newbie I want to know how I can actually deploy and use the model on Azure. I want to create a…
5
votes
1 answer

How to configure YOLOv8 yaml file to access blob storage dataset on Azure?

Context I want to train a custom model using Yolo (v8). I've got it working on my local machine, but it is very slow, and want to run the job on Azure Machine Learning Studio for efficiency. I am using Azure ML SDK v2. Issue When I run on Azure ML,…
5
votes
1 answer

Problem Installing azure-pipeline due to ruamel.yaml

I am trying to install azure-pipeline using: pip install azureml-pipeline When I do this it installs most dependencies fine until I receive the following error messages: Building wheel for ruamel.yaml (setup.py) ... error error:…
5
votes
2 answers

Azure Auto ML JobConfigurationMaxSizeExceeded error when using a cluster

I am running into the following error when I try to run Automated ML through the studio on a GPU compute cluster: Error: AzureMLCompute job failed. JobConfigurationMaxSizeExceeded: The specified job configuration exceeds the max allowed size of…
5
votes
3 answers

AzureML Dataset.File.from_files creation extremely slow even with 4 files

I have a few thousand of video files in my BlobStorage, which I set it as a datastore. This blob storage receives new files every night and I need to split the data and register each split as a new version of AzureML Dataset. This is how I do the…
3nomis
  • 1,175
  • 1
  • 9
  • 30
5
votes
1 answer

How can one download the outputs of historical Azure ML experiment Runs via the python API

I'm trying to write a script which can download the outputs from an Azure ML experiment Run after the fact. Essentially, I want to know how I can get a Run by its runId property (or some other identifier). I am aware that I have access to the Run…
5
votes
0 answers

How to use Azure DevOps artifacts repository as source for DatabricksStep of AzureML?

If we have PyPi Packages added as Artifacts to an Azure DevOps Project Feed, how can we use these packages as a source for installing packages in DatabricksStep of Azure Machine Learning Service? While using pip in any environment, we use our Azure…
5
votes
1 answer

AttributeError: module 'tensorflow_core.python.keras.api._v2.keras.activations' has no attribute 'swish'

I'm using Azure ML studio to train a question answering ALBERT model with the SQuAD dataset. I'm getting the following error. Here is the code I execute. # Clone transformers github repo !git clone https://github.com/huggingface/transformers \ && cd…