codeman
codeman

Reputation: 371

Azure ML Multiclass Classification output

I'm using a Multiclass Classification: News categorization example from azure ML and trying to setup a simple predictive web service that should get article as parameter and return me scored label to which category the input article text belongs, however doesn't meter what I tried it always require 2 parameters : ID , Text , and when I'm passing a new ID that was not existed in training , it gives me error that there is no rows in dataset, my question is how it suppose to work , what I'm missing here?

https://gallery.cortanaintelligence.com/Experiment/Multiclass-Classification-News-categorization-2

Upvotes: 0

Views: 443

Answers (1)

Hai Ning
Hai Ning

Reputation: 396

See the following web service. You basically need to trim ID off as it is the label column, and it is NOT needed when scoring new data.

http://gallery.cortanaintelligence.com/Experiment/Multiclass-Classification-News-categorization-Web-Service-1

Upvotes: 1

Related Questions