Multi-Label Classifier

This multi-label model can classify 102 unique items. However, unlike the general classifier, the multi-label classifier can detect the presence of multiple objects it’s trained to identify. To see all the objects it can identify click the class list below.

Model Id

MultiLabelImageClassifier

Request & Response

$ curl -X POST -H "Authorization: Bearer <TOKEN>" -H "Cache-Control: no-cache" -H "Content-Type: multipart/form-data" -F "sampleContent=@C:Datalaptop_and_camera.jpg" -F "modelId=MultiLabelImageClassifier" https://api.einstein.ai/v2/vision/predict
{
  "probabilities": [
    {
      "label": "laptop",
      "probability": 0.96274024
    },
    {
      "label": "camera",
      "probability": 0.39719293
    },
    {
      "label": "BACKGROUND_Google",
      "probability": 0.2958626
    },
    {
      "label": "cup",
      "probability": 0.09132507
    },
    {
      "label": "stapler",
      "probability": 0.081633374
    }
  ],
  "object": "predictresponse"
}