Bin
2025-12-16 7423b0c6e1959f30a7e8e453e953310f32ce13c6
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
title: Question Answering
type: community
group: Natural Language Processing
order: 1
image: /static/templates/question-answering.png
details: |
  <h1>Select an answer from text</h1>
  <dl>
    <dt>Industry Applications</dt>
    <dd>customer support automation, educational assessment, research assistance, legal document search, medical diagnosis support, technical documentation, FAQ automation, knowledge base search, compliance queries, scientific literature search, patent research, insurance claims processing</dd>
    <dt>Associated Models</dt>
    <dd>BERT-QA, RoBERTa, SQuAD, reading comprehension, extractive QA, generative QA</dd>
    <dt>Domain Terminology</dt>
    <dd>NLP, span extraction, machine reading, information retrieval, passage retrieval, answer extraction</dd>
  </dl>
config: |
  <View>
    <Header value="Please read the passage" />
    <Text name="text" value="$text" granularity="word"/>
    <Header value="Select a text span answering the following question:"/>
    <Text name="question" value="$question"/>
 
    <Labels name="answer" toName="text">
      <Label value="Answer" maxUsage="1" background="red"/>
    </Labels>
 
  </View>
 
  <!-- {
  "data": {
    "text": "The boundary of the region from which no escape is possible is called the event horizon. Although the event horizon has an enormous effect on the fate and circumstances of an object crossing it, according to general relativity it has no locally detectable features.[4] In many ways, a black hole acts like an ideal black body, as it reflects no light.[5][6] Moreover, quantum field theory in curved spacetime predicts that event horizons emit Hawking radiation, with the same spectrum as a black body of a temperature inversely proportional to its mass. This temperature is on the order of billionths of a kelvin for black holes of stellar mass, making it essentially impossible to observe directly.",
    "question": "How could black holes be detected?"
  },
  "annotations": [
    {"result": [
      {
          "value": {
              "start": 423,
              "end": 553,
              "text": "event horizons emit Hawking radiation, with the same spectrum as a black body of a temperature inversely proportional to its mass.",
              "labels": [
                  "Answer"
              ]
          },
          "id": "b0wKkdnnRc",
          "from_name": "answer",
          "to_name": "text",
          "type": "labels"
      }
      ]
    }]
  }
  -->