Bin
2025-12-17 1442f92732d7c5311a627a7ba3aaa0bb8ffc539f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
title: Visual Genome
type: community
group: Computer Vision
image: /static/templates/visual-genome.png
details: |
  <h1>Label different described features</h1>
  <dl>
    <dt>Industry Applications</dt>
    <dd>scene understanding, visual reasoning, computer vision research, multimodal AI, robotics training, autonomous systems, visual question answering, image captioning, visual relationship detection, scene graph generation, complex scene analysis</dd>
    <dt>Associated Models</dt>
    <dd>region detection, attribute classification, relationship extraction, structured scene representation</dd>
    <dt>Domain Terminology</dt>
    <dd>scene graphs, visual knowledge, spatial relationships, object interactions, contextual understanding</dd>
  </dl>
config: |
  <View>
    <View style="display: flex; flex-wrap: wrap;">
      <View className="label-column">
        <Header value="Regions"/>
        <RectangleLabels name="regions" toName="image" value="$regions"/>
    </View>
      <View className="label-column">
        <Header value="Attributes"/>
      <RectangleLabels name="attributes" toName="image" value="$attributes"/>
      </View>
      <View className="label-column">
        <Header value="Relationships"/>
      <RectangleLabels name="relationships" toName="image" value="$relationships"/>
      </View>
   
    </View>
    <Image name="image" value="$image"/>
    <Style>
    .label-column .lsf-labels {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    </Style>
  </View>
  <!-- { "data": {
    "image": "https://htx-pub.s3.amazonaws.com/templates/visual-genome/panda.jpeg",
    "regions": [{
      "value": "panda bear holding something in it's paw"
    }, {
      "value": "trees behind the panda out of focus"
    }, {
        "value": "piece of bamboo in panda's paw"
      }, {
        "value": "bamboo next to panda"
      }, {
        "value": "the panda is cute"
      }],
    "attributes": [{
      "value": "markings is black"
    }, {
      "value": "nose is black"
    }, {
      "value": "face is round"
    }, {
        "value": "wood is round"
      }],
    "relationships": [{
      "value": "hole ON log"
    }, {
      "value": "tree BEHIND bear"
    }, {
        "value": "mouth OF panda"
      }]
  }}-->