We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e07916f commit 03de2f6Copy full SHA for 03de2f6
services/visual_recognition/v3.js
@@ -408,13 +408,6 @@ VisualRecognitionV3.prototype.deleteClassifier = function(params, callback) {
408
VisualRecognitionV3.prototype.createClassifier = function(params, callback) {
409
params = params || {};
410
411
- try {
412
- verifyStream(params.negative_examples, 'negative_examples');
413
- } catch (e) {
414
- callback(e);
415
- return;
416
- }
417
-
418
var allowed_keys = Object.keys(params).filter(function(item) {
419
return item == 'name' || item.match(/^.*_positive_examples$/);
420
});
0 commit comments