Questions tagged [ml-studio]

46 questions
1
vote
1 answer

Execute Python Script Module Failing in Azure ML Studio

I'm using Execute Python Script module in Azure ML Studio and have written the most basic of code: import pandas as pd def azureml_main(dataframe1 = None, dataframe2 = None): dataframe1["Result"] = dataframe1["3MPurchNo"] * 3 return…
blissweb
  • 3,037
  • 3
  • 22
  • 33
1
vote
0 answers

Extract feature weights of a linear regression in Azure Machine Learning Studio

Currently, we can only view the feature weights (or coefficient estimates) of a trained linear regression through 'visualize' option but not possible to save this as a table or dataset. I am experimenting on a market-mix model to understand the…
A.M. Das
  • 63
  • 6
1
vote
2 answers

DB Driver for azure SQL Data ware house via python notebook in ML Studio

I am trying to access my data warehouse azure, fetch some data in mlstudio-attached-notebook in python. Simple connection says driver not found. [01000] [unixODBC][Driver Manager]Can't open lib 'ODBC Driver 13 for SQL Server' : file not found (0)…
1
vote
1 answer

How can I load a trained model in Azure ML Studio?

I'm trying to load a trained model from the trained models tab in Azure ML studio into another experiment. According to the docs its possible to do as follows: Add the Load Trained Model module to your experiment. For Data source, indicate the…
0
votes
1 answer

How to start the compute associated with my ML Studio Workspace in Azure, using the Python sdk?

I've looked through lots of documentation online, but it all seems to discuss how to create and delete compute in Azure. I already have a compute instance set up in my ML Workspace that I want to start via a python script. I don't want to click a…
0
votes
1 answer

Azure ML Studio read from ADLS2 datastore

I created a datastore in Azure ML Studio that connects to an ADLS Gen2 storage account. I am wondering how can I read data from this datastore in my notebooks in Azure ML Studio? This is what I tried but I am not sure of what the syntax should be.…
0
votes
1 answer

Azure ml studio batch endpoint invoke fail

I have deployed a model on a batch endpoint, and it works when i create the job by the GUI, selecting via wizard the input and output data locations. I need to run it from notebook, in particular i've seen that the microsoft tutorial suggest to use…
0
votes
1 answer

ModuleNotFoundError: No module named 'azureml.training'

i have this problem: I have trained and registered a ml model via automated machine learning on the Azure Machine Learning studio platform The result is an XGBoost model that i register without problem or waring in the workspace. I need to deploy it…
0
votes
0 answers

Building a webservice in Azure ML Studio to return similar records from a training dataset

I've searched high and low for an example of how to build an inference pipeline in Azure ML that will return records most similar to an entity passed in a Web Service Input. My dataset consists of a set of features extracted using "Extract N-Gram…
0
votes
1 answer

sys.executable not working in Azure ML studio

Azure ML studio unable to execute this. Hello, When I try to execute this, import sys !{sys.executable} -m pip install git+https://{YOUR_GITHUB_LOGIN}:{TOKEN}@github.com/xxxsdk.git@main I am getting this error. /bin/bash: {sys.executable}: command…
slinger
  • 1
  • 2
0
votes
1 answer

creating datastore in azure ML studio in terraform

Trying to create a datastore in Azure ML studio in terraform: resource "azureml_datastore" "output_datastore" { resource_group_name = var.resource_group_name workspace_name = azurerm_machine_learning_workspace.AML.name name …
Manoj R
  • 57
  • 6
0
votes
1 answer

Weird color scheme in Azure ML Studio notebooks

I am getting this weird color scheme in Azure ML Studio. The code runs fine, but the excessive use of red makes it look like I have errors on every line. Anyone know how to change the theme?
0
votes
1 answer

Azure ML Studio Execute Python Script Error - No module named 'azure.cognitiveservices'

I'm getting below error in Azure ML Studio while running 'Execute Python Script' Error - No module named 'azure.cognitiveservices' its really strange why it can't find azure inside azure? However the same python script works fine when I run it…
0
votes
1 answer

Deploy custom R script as web service Azure ML Studio

I have an R script which takes as input an excel file with two columns containing dates-values and it gives as output 3 dates with the corresponding prediction values. I have already successfully implemented it in Azure Machine Learning Studio using…
XIpagII
  • 11
  • 2
0
votes
1 answer

How do I install dependecies in azure jupyter notebooks?

Trying to install 'calmap' dependency using the azure dependency management syntax !pip install calmap and getting ExceptionPexpect: pty.fork() failed: [Errno 12] Cannot allocate memory whenever I use anything with !, on its own or with…
DanTheMann
  • 165
  • 2
  • 8