Multi-Class (MultiSelect)

Label for Multi-Class Classification

Create a Multi-Class Label

  1. Type label name in the "Name*" form

  2. Choose Select from "Type*" dropdown

  3. Type Class Name and press "Enter"

  4. Repeat above to create multiple classes

  5. Optional: Choose default class labels

  6. Click "Create" button

When to use

MultiSelects enable multi-label image classification.

Architectures such as InceptionV3 and MobileNet can be converted to support multiple selections. Common use cases include attribute identification.

Data Format:

A MultiSelect schema element creates data as any number of the inputed string options. If no selection is made, or a default is not set, the "selected" value will be an empty array.

{
  "type":"multiSelect"
  "data":{
    "selected":[
       0:"Van Gogh"
       1:"Painting"
       2:"Fine Art"
       3:"Post-Impressionism"
      ]
    }
 }

Last updated