Reputation: 33
I am new to Azure ML and I am trying to pass a web input to my Scorer , and my R script returns a Web output.
Screenshot - Design of my expertment
Input Parameters : No. of predictions to make - String type Output Parameters : Forecast - Data frame
For every input I pass , I get the same output.Can you help me out?
Thanks in advance.
Solution
Web service output generally shows only one value. So by default it fetches the first row element of the frame. In order to check the entire frame , use Batch execution or excel.
Upvotes: 0
Views: 612
Reputation: 1251
I think you should first create a model within an experiment and make sure that works. Then before publishing as web service, actually create a predictive experiment by clicking "predictive web service" as shown in the picture below
Upvotes: 0