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
title: Text Summarization
type: community
group: Natural Language Processing
image: /static/templates/text-summarization.png
details: |
  <h1>Summarize in one sentence</h1>
  <dl>
    <dt>Industry Applications</dt>
    <dd>news summarization, research paper abstracts, meeting minutes, legal brief summaries, medical case summaries, financial reports, customer feedback summaries, document intelligence, executive summaries, literature reviews, patent analysis, regulatory compliance</dd>
    <dt>Associated Models</dt>
    <dd>extractive summarization, abstractive summarization, ROUGE evaluation, BERT summarization</dd>
    <dt>Domain Terminology</dt>
    <dd>information distillation, key insight extraction, content condensation, automatic abstracting</dd>
  </dl>
config: |
  <View>
    <Header value="Please read the text" />
    <Text name="text" value="$text" />
 
    <Header value="Provide one sentence summary" />
    <TextArea name="answer" toName="text"
              showSubmitButton="true" maxSubmissions="1" editable="true"
              required="true" />
  </View>
 
 
  <!-- {
   "data": {
     "text": "There are two general approaches to automatic summarization: extraction and abstraction. Extraction-based summarization: Here, content is extracted from the original data, but the extracted content is not modified in any way. Examples of extracted content include key-phrases that can be used to \"tag\" or index a text document, or key sentences (including headings) that collectively comprise an abstract, and representative images or video segments, as stated above. For text, extraction is analogous to the process of skimming, where the summary (if available), headings and subheadings, figures, the first and last paragraphs of a section, and optionally the first and last sentences in a paragraph are read before one chooses to read the entire document in detail.[3] Other examples of extraction that include key sequences of text in terms of clinical relevance (including patient/problem, intervention, and outcome).[4] Abstraction-based summarization: This has been applied mainly for text. Abstractive methods build an internal semantic representation of the original content, and then use this representation to create a summary that is closer to what a human might express. Abstraction may transform the extracted content by paraphrasing sections of the source document, to condense a text more strongly than extraction. Such transformation, however, is computationally much more challenging than extraction, involving both natural language processing and often a deep understanding of the domain of the original text in cases where the original document relates to a special field of knowledge. \"Paraphrasing\" is even more difficult to apply to image and video, which is why most summarization systems are extractive."
   },
   "annotations": [{
       "result": [
         {
           "value": {
             "text": [
               "There are two approaches to automatic summarization: extraction and abstraction. In extraction summarization content is extracted from the original data, whereas Abstraction may transform the extracted content by paraphrasing sections of the source document."
             ]
           },
           "id": "Zc_Rb6Bszp",
           "from_name": "answer",
           "to_name": "text",
           "type": "textarea"
         }
       ]
     }]
   } -->