-
Guide
Tags
API
What's new
tags
- Introduction
Objects
- Audio
- AudioPlus
- HyperText
- Image
- Paragraphs
- Text
- TimeSeries
Controls
- BrushLabels
- Choice
- Choices
- Ellipse
- EllipseLabels
- HyperTextLabels
- KeyPoint
- KeyPointLabels
- Label
- Labels
- List
- Pairwise
- ParagraphLabels
- Polygon
- PolygonLabels
- Ranker
- Rating
- Rectangle
- RectangleLabels
- Relation
- Relations
- Shortcut
- TextArea
- Taxonomy
- TimeSeriesLabels
- Filter
Visual
- Header
- Style
- Table
- View
Pairwise
Pairwise element. Compare two different objects, works with any label studio object
Parameters
Params: string
[leftClass=left] - class name of the left object
Params: string
[rightClass=left] - class name of the right object
Param | Type | Description |
---|---|---|
name | string |
name of the element |
toName | string |
names of the elements you want to compare |
[selectionStyle] | string |
style of the selection |
Example
<View>
<Pairwise name="pairwise" leftClass="text1" rightClass="text2" toName="txt-1,txt-2"></Pairwise>
<Text name="txt-1" value="Text 1" />
<Text name="txt-2" value="Text 2" />
</View>
Example
You can also style the appearence using the View tag:
<View>
<Pairwise name="pw" toName="txt-1,txt-2"></Pairwise>
<View style="display: flex;">
<View style="margin-right: 1em;"><Text name="txt-1" value="$text1" /></View>
<View><Text name="txt-2" value="$text2" /></View>
</View>
</View>