Reputation: 53
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
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
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.
Upvotes: 0
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