Label-studio: image classification

Created on 19 Nov 2019  路  1Comment  路  Source: heartexlabs/label-studio

Please add image classification. Binary and multi classification

Most helpful comment

Please add image classification. Binary and multi classification

Hi, @sonfiree ! Could you please clarify what exactly do you mean? The data labeling for image classification with single and multi label support is currently available. This config does the job:

<View>
  <Choices name="image_class" toName="image" choice="single">
    <Choice value="first_class"></Choice>
    <Choice value="second_class"></Choice>
  </Choices>
  <Image name="image" value="$image_source"></Text>
</View>

and changing choice="multiple" lead to multilabel classification.
Please refer to docs or see examples for details

>All comments

Please add image classification. Binary and multi classification

Hi, @sonfiree ! Could you please clarify what exactly do you mean? The data labeling for image classification with single and multi label support is currently available. This config does the job:

<View>
  <Choices name="image_class" toName="image" choice="single">
    <Choice value="first_class"></Choice>
    <Choice value="second_class"></Choice>
  </Choices>
  <Image name="image" value="$image_source"></Text>
</View>

and changing choice="multiple" lead to multilabel classification.
Please refer to docs or see examples for details

Was this page helpful?
0 / 5 - 0 ratings