Reputation: 41
Having trouble adding a class to one of my custom classifiers using Visual Recognition, when executing the task I get the below error:
status: 500, error: If you are seeing this message, you are likely making an excessive number of concurrent HTTP connections to this service. Please check the concurrency limits for your assigned service tier.
Does anyone know what this means or where I can manage my "concurrency limits"?
Edit: This is the code I'm using to make the call of adding a new class.
File positiveImgs = new File(".../" + className + ".zip");
ClassifierOptions options =
new ClassifierOptions.Builder().addClass(className, positiveImgs).build();
VisualClassifier result;
result = service.updateClassifier(classifierID, options).execute();
System.out.println(result);
Thanks
Upvotes: 0
Views: 205
Reputation: 41
This was resolved, it looks like it was an issue with IBM Watson services today which was resolved by IBM.
Upvotes: 2