我不确定使用 V2 api 有什么问题,但是现在,使用 V3 API 你的 CURL 应该看起来像这个例子
curl -X POST
-F "apple_positive_examples=@apples1.zip"
-F "banana_positive_examples=@yellow.zip"
-F "orange_positive_example=@pos_ex.zip"
-F "negative_examples=@vegetables.zip"
-F "name=fruit"
"https://gateway-a.watsonplatform.net/visual-recognition/api/v3/classifiers?api_key={api-key}&version=2016-05-20"
所以你的瓶子卷曲应该像
curl -X POST
-F "bottle_positive_examples=@bottle-positive.zip"
-F "negative_examples=@bottle-negative.zip"
-F "name=plasticbottle"
"https://gateway-a.watsonplatform.net/visual-recognition/api/v3/classifiers?api_key={api-key}&version=2016-05-20"
请注意,您现在应该使用 api_key 进行身份验证,而不再是用户/通行证
这记录在 v3 文档中:
https ://www.ibm.com/watson/developercloud/visual-recognition/api/v3/#create_a_classifier