Questions tagged [azure-auto-ml]

18 questions
0
votes
2 answers

Synapse Analytics Auto ML Predict No module named 'azureml.automl'

I follow the official tutotial from microsoft: https://learn.microsoft.com/en-us/azure/synapse-analytics/machine-learning/tutorial-score-model-predict-spark-pool When I execute: #Bind model within Spark session model = pcontext.bind_model( …
0
votes
1 answer

Azure AutoML dependency failure

Issue : Unable to get best model from AutoML run. Code: best_run, fitted_model = automl_run.get_output() print(best_run.properties["run_algorithm"]) Error Message : ErrorResponse [stderr]{ [stderr] "error": { [stderr] "code":…
-1
votes
1 answer

K-fold cross validation in azure ML

I am currently training a model using an azure ML pipeline that i build with sdk. I am trying to add cross-validation to my ml step. I have noticed that you can add this in the parameters when you configure the autoML. My dataset consists of 30%…
1
2