Vijayan N
Vijayan N

Reputation: 53

How to export Azure Machine Learning output to CSV

I have created an Azure ML experiment which will give the output as predicted probability values and some charts such as bar chart, pie chart, etc. Now I am able to see the outputs in Azure ML's output page.

How can I export my Azure ML experiment results to CSV (or any other similar format)?

Upvotes: 4

Views: 5553

Answers (3)

Sudarshan
Sudarshan

Reputation: 1

You can add a module called convert to csv in your experiment. The Run selected module.

Right click after the module is run and click on 'Download'

Upvotes: -1

Robert Graves
Robert Graves

Reputation: 2320

Once you've trained your model, publish it as a web service. Then from published service, you can Download Excel Workbook. Through this workbook, it will run your web service with the data you input into excel. Then it will show the predicted values.

enter image description here

Upvotes: 0

Holger Leichsenring
Holger Leichsenring

Reputation: 811

You can just configure that by using the modules under Data Format Conversions. Have a look here and here. Documentation is in progress, unluckily.

Upvotes: 2

Related Questions