Sk1X1
Sk1X1

Reputation: 1373

Visual recognition training failed

I'm trying to train custom classifier, but still getting failed status.

{
    "classifier_id": "Castles_1969040174",
    "name": "Castles",
    "status": "failed"
}

I checked images and they are in right size (< 10 MB each) and both ZIPs are containing more than 10 images and are way smaller then 100 MB.

Is here any other condition I could check to get my classifier to be trained correctly?

Upvotes: 0

Views: 39

Answers (1)

chughts
chughts

Reputation: 4735

Run code to retrieve classifier details, check the API documentation for how -

https://cloud.ibm.com/apidocs/visual-recognition#retrieve-classifier-details

for curl it will look like

curl -u "apikey:{apikey}" "https://gateway.watsonplatform.net/visual-recognition/api/v3/classifiers/Castles_1969040174?version=2018-03-19"

The response will contain an explanation telling you why the create classifier failed.

Upvotes: 0

Related Questions