0

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?

adund cn
  • 39
  • 1
  • 4
  • 2
    What 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 "":"" \ -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 – sjehutch May 04 '16 at 13:26

1 Answers1

0
  1. The classifier_id is part of the response you get when creating a custom classifier.

  2. To use multiple classifiers you just need to send the classifier_ids query parameter with a comma separated list of classifier id (e.g classifier_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