I have implemented a model that maps the incoming data into one of 1000 categories (label) available. For each entry, the Google Prediction returns all categories in 1000. Is there any way to make the Google Prediction return, for example, only the 10 most important outcomes?
Thanks
You simply can't get the top 10 on 1000.
If you really need to limited the number of result on the server side you can have your own server in the middle who "cleanup" the result for you. Depending the size of your project, I recommend you Google App Engine. It will use Google Network who is very quick and have low latency.
From Google Prediction API webservice you can only limited to the most relevant category. Using Google API explorer generate this kind of POST request:
The URL request parameter "field" don't include "outputMulti" (all the other result)