With the IBM Watson Visual Recognition API, how do you know the Classifier ID when we create the train? How do you do multiple classifying?
Asked
Active
Viewed 687 times
0

William 'Bill' Wentworth
- 1,791
- 11
- 21

adund cn
- 39
- 1
- 4
-
2What have you tried so far? Please have a look at [How do I ask a good question?](https://stackoverflow.com/help/how-to-ask) – flomei May 02 '16 at 08:42
-
Please see if this is duplicate of http://stackoverflow.com/questions/36577484/watson-visual-recognition-classify-against-multiple-classifiers-in-java – Shweta Gupta May 02 '16 at 12:37
-
Using curl you could do this to get a list `curl -u "
":" – sjehutch May 04 '16 at 13:26" \ -X GET \ "https://gateway.watsonplatform.net/visual-recognition-beta/api/v2/classifiers?version=2015-12-02"` this will give you a response scroll to the top to see yours
1 Answers
0
The
classifier_id
is part of the response you get when creating a custom classifier.To use multiple classifiers you just need to send the
classifier_ids
query parameter with a comma separated list of classifier id (e.gclassifier_ids=foo_123,fruits_934,bar_345
)
Take a look at the API Reference to get some examples of how to create and use a custom classifier.

German Attanasio
- 22,217
- 7
- 47
- 63