rohitsroch commited on
Commit
59f5b2b
1 Parent(s): 69463c4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +40 -7
README.md CHANGED
@@ -1,16 +1,29 @@
1
  ---
 
 
 
2
  tags:
3
- - generated_from_trainer
4
  model_index:
5
  - name: hybrid_hbh_t5-small_ami_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_t5-small_ami_sum
16
 
@@ -47,7 +60,27 @@ The following hyperparameters were used during training:
47
 
48
  ### Framework versions
49
 
50
- - Transformers 4.8.0
51
- - Pytorch 1.6.0
52
- - Datasets 1.10.2
53
- - 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_t5-small_ami_sum
9
  results:
10
  - task:
11
  name: Summarization
12
  type: summarization
13
+ datasets:
14
+ - AMI
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_t5-small_ami_sum
29
 
 
60
 
61
  ### Framework versions
62
 
63
+ - Transformers>=4.8.0
64
+ - Pytorch>=1.6.0
65
+ - Datasets>=1.10.2
66
+ - Tokenizers>=0.10.3
67
+
68
+ If you use these models, please cite the following paper:
69
+
70
+ ```
71
+ @inproceedings{10.1145/3508546.3508640,
72
+ author = {Sroch, Rohit},
73
+ title = {Domain Adapted Abstractive Summarization of Dialogue Using Transfer Learning},
74
+ year = {2021},
75
+ isbn = {9781450385053},
76
+ publisher = {Association for Computing Machinery},
77
+ address = {New York, NY, USA},
78
+ url = {https://doi.org/10.1145/3508546.3508640},
79
+ doi = {10.1145/3508546.3508640},
80
+ articleno = {94},
81
+ numpages = {6},
82
+ keywords = {encoder-decoder, T5, abstractive summary, PEGASUS, BART, dialogue summarization, PLMs, BERT},
83
+ location = {Sanya, China},
84
+ series = {ACAI'21}
85
+ }
86
+ ```