rohitsroch commited on
Commit
35fb2a2
1 Parent(s): cccaeb2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -3
README.md CHANGED
@@ -1,16 +1,29 @@
1
  ---
 
 
 
2
  tags:
3
- - generated_from_trainer
4
  model_index:
5
  - name: hybrid_hbh_bart-base_icsi_sum
6
  results:
7
  - task:
8
  name: Summarization
9
  type: summarization
 
 
10
  ---
11
 
12
- <!-- This model card has been generated automatically according to the information the Trainer had access to. You
13
- should probably proofread and complete it, then remove this comment. -->
 
 
 
 
 
 
 
 
14
 
15
  # hybrid_hbh_bart-base_icsi_sum
16
 
@@ -50,3 +63,23 @@ The following hyperparameters were used during training:
50
  - Pytorch 1.6.0
51
  - Datasets 1.10.2
52
  - Tokenizers 0.10.3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
  tags:
6
+ - dialogue-summarization
7
  model_index:
8
  - name: hybrid_hbh_bart-base_icsi_sum
9
  results:
10
  - task:
11
  name: Summarization
12
  type: summarization
13
+ datasets:
14
+ - icsi
15
  ---
16
 
17
+ ## Paper
18
+
19
+ ## [Domain Adapted Abstractive Summarization of Dialogue using Transfer Learning](https://dl.acm.org/doi/10.1145/3508546.3508640)
20
+ Authors: *Rohit Sroch*
21
+
22
+ ## Abstract
23
+
24
+ Recently, the abstractive dialogue summarization task has been gaining a lot of attention from researchers. Also, unlike news articles and documents with well-structured text, dialogue differs in the sense that it often comes from two or more interlocutors, exchanging information with each other and having an inherent hierarchical structure based on the sequence of utterances by different speakers. This paper proposes a simple but effective hybrid approach that consists of two modules and uses transfer learning by leveraging pretrained language models (PLMs) to generate an abstractive summary. The first module highlights important utterances, capturing the utterance level relationship by adapting an auto-encoding model like BERT based on the unsupervised or supervised method. And then, the second module generates a concise abstractive summary by adapting encoder-decoder models like T5, BART, and PEGASUS. Experiment results on benchmark datasets show that our approach achieves a state-of-the-art performance by adapting to dialogue scenarios and can also be helpful in low-resource settings for domain adaptation.
25
+
26
+ *Rohit Sroch. 2021. Domain Adapted Abstractive Summarization of Dialogue using Transfer Learning. In 2021 4th International Conference on Algorithms, Computing and Artificial Intelligence (ACAI'21). Association for Computing Machinery, New York, NY, USA, Article 94, 1–6. https://doi.org/10.1145/3508546.3508640*
27
 
28
  # hybrid_hbh_bart-base_icsi_sum
29
 
 
63
  - Pytorch 1.6.0
64
  - Datasets 1.10.2
65
  - Tokenizers 0.10.3
66
+
67
+ If you use this model, please cite the following paper:
68
+
69
+ ```
70
+ @inproceedings{10.1145/3508546.3508640,
71
+ author = {Sroch, Rohit},
72
+ title = {Domain Adapted Abstractive Summarization of Dialogue Using Transfer Learning},
73
+ year = {2021},
74
+ isbn = {9781450385053},
75
+ publisher = {Association for Computing Machinery},
76
+ address = {New York, NY, USA},
77
+ url = {https://doi.org/10.1145/3508546.3508640},
78
+ doi = {10.1145/3508546.3508640},
79
+ articleno = {94},
80
+ numpages = {6},
81
+ keywords = {encoder-decoder, T5, abstractive summary, PEGASUS, BART, dialogue summarization, PLMs, BERT},
82
+ location = {Sanya, China},
83
+ series = {ACAI'21}
84
+ }
85
+ ```