Questions tagged [ml-studio]

46 questions
5
votes
1 answer

How to prevent Azure ML Studio from converting a feature column to DateTime while importing a dataset

I’m having some issues trying to load a dataset in Azure ML Studio, a dataset containing a column that looks like a DateTime, but is in fact a string. Azure ML Studio converts the values to DateTimes internally, and no amount of wrangling seems to…
Vlad Iliescu
  • 8,074
  • 5
  • 27
  • 23
2
votes
1 answer

Pipeline of pipelines in AzureML

I'm trying to create a flow which as different experiments doing train test split, train, validate, get the best model(among 8 diff algos) and predict. The issue is I need to create a dependency of experiments and I need help in that. I'm aware of…
2
votes
1 answer

Python code failed in Azure ML Experiments but runs in conda environment

I have created custom conda environment in my Azure ML compute instance and has verified that the python code runs in the environment. However, when I submit the .py file in Azure ML Experiment, the run fails even with the same conda environment set…
aishah
  • 43
  • 8
2
votes
1 answer

Mount a datalake storage in azure ML studio

I created a file dataset from a data lake folder on Azure ML Studio, at the moment I´m able to download the data from the dataset to the compute instance with this code: subscription_id = 'xxx' resource_group = 'luisdatapipelinetest' workspace_name…
2
votes
0 answers

Execute spark jobs in Azure ML studio

I am trying to run some spark scripts using execute python script in azure ML studio. And getting an error saying unable to import spark libraries Basically i am trying to create web services using ML studio for the models that are developed. Is it…
2
votes
1 answer

How to bypass ID column without being used in the training model but have it as output - Azure ML

The input data in the model includes column ControlNo. But I don't want this column being part of learning process so I'm using Select Columns in Dataset to exclude ControlNo column. But as a output I want those columns: ControlNo, Score Label,…
Serdia
  • 4,242
  • 22
  • 86
  • 159
1
vote
1 answer

ERROR: 'function' object has no attribute 'urlencode' in azure devops pipeline run

While running the pipeline in azure devops for the specific job named Training the model having the the command az ml run submit-script -g azure-devops-rg-1 -w mlops-wsp-1 -e cantypedetect --ct mlstudclust2 -d conda_requirements.yml -c train_data -t…
1
vote
1 answer

Accessing Azure Blob Storage image In ML Studio

I have an image data in a folder inside of a Blob storage. What I am trying to do is accessing this data inside of the ML Studio. I can access the data with SAS link, but I want to access via by giving path to this. Is it possible to do this? I want…
Qdadedalus
  • 91
  • 1
  • 7
1
vote
1 answer

Pick up Results From ML Studio Pipeline in Data Factory Pipeline

We currently have a Data Factory pipeline that is able to call one of our ML Studio Pipelines successfully. After the ML Studio Pipeline completed, we wanted Azure Data Factory to pick up the results of the ML Studio Pipeline and store the results…
1
vote
1 answer

Azure ML Studio ML Pipeline - Exception: No temp file found

I've successfully run an ML Pipeline experiment and published the Azure ML Pipeline without issues. When I run the following directly after the successful run and publish (i.e. I'm running all cells using Jupyter), the test fails! interactive_auth…
yeamusic21
  • 276
  • 3
  • 11
1
vote
1 answer

How to connect Azure MLStudio with Snowflake

I am trying to connect MLStudio with Snowflake, however I see there is no connector for snowflake. How can I connect. I want to use snowflake directly and don't want to use Azure blobs or ADL to run ML algorithms.
Tom
  • 13
  • 1
  • 3
1
vote
0 answers

Azure service works for batch request but not for Request - Response

Hi, I am new to Azure WebServices, In the dev environment, my scripts are getting executed and I could even see the results in the Output.log , while I deploy it, it gives me error , which i have attached. I have a slight hint that for single…
IamKarim1992
  • 646
  • 5
  • 20
1
vote
0 answers

Customize Python Script On Azure ML

I want to use Fuzzywuzzy logic on python script. I am implement in this way but i didn't get anything. This is my python script code: import pandas as pd from fuzzywuzzy import process def azureml_main(dataframe1 = None): return…
1
vote
1 answer

azure data factory update

I created two web services (Traning and predictive to use API's in the data factory. memory_train memory_train [Predictive_Exp.] In data factory, I created ML Batch execution followed by ML Update Resource1. I used following API's and i/ps for my…
1
vote
1 answer

Need to install python packages in Azure ML studio

I am new to Azure ML studio and trying to run python script. Currently I am working on Text analytics related code and as part of that I want to get the singular values of SVD decomposition something like below …
user6541660
1
2 3 4