Links

Multi-Class (MultiSelect)

Label for Multi-Class Classification

Create a Multi-Class Label

  1. 1.
    Type label name in the "Name*" form
  2. 2.
    Choose Select from "Type*" dropdown
  3. 3.
    Type Class Name and press "Enter"
  4. 4.
    Repeat above to create multiple classes
  5. 5.
    Optional: Choose default class labels
  6. 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.
Classifications of "Van Gogh, Painting, Fine Art, Post-Impressionism" predicted

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"
]
}
}