File size: 2,321 Bytes
2ea1065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# ECTSum: A New Benchmark Dataset For Bullet Point Summarization of Long Earnings Call Transcripts

Long Paper Accepted at the <b> EMNLP 2022 Main Conference! </b> <br /> 
<li> Paper: https://aclanthology.org/2022.emnlp-main.748/ </li>
<li> Poster: https://rajdeep345.github.io/files/pdf/research/ECTSum_EMNLP2022_Poster.pdf </li>
<li> Pre-recorded Video: https://drive.google.com/file/d/1DW2i2ApgiE6V7ViiayX5zdJSRXdAEbsy/view </li>

## Dataset
The <b> <i> ECTSum </b> </i> dataset can be found under the `data` folder.

## Codes
Codes and instructions for our proposed model <b> <i> ECT-BPS </b> </i> can be found under `codes/ECT-BPS` <br />
Codes and instructions for our baseline models can be found under `codes/baselines`



## Data Preparation for ECT-BPS
### Preparing the data for training the <i> Extractive Module </i>

#### Imports
`pip install sentence-transformers` </br>
`pip install num2words` </br>
`pip install word2number` </br>

#### Prepare the data
`python prepare_data_ectbps_ext.py`

#### Data Location
The data is saved at `codes/ECT-BPS/ectbps_ext/data/`. </br>
Processed data is already uploaded at this location.


### Preparing the data for training the <i> Paraphrasing Module </i>

#### Imports
`pip install sentence-transformers` </br>
`pip install num2words` </br>
`pip install word2number` </br>

#### Prepare the data
`python prepare_data_ectbps_para.py`

#### Data Location
The data is saved at `codes/ECT-BPS/ectbps_para/data/para/`. </br>
Processed data is already uploaded at this location.

#### Prepare the data with numericals masked
`python prepare_data_ectbps_para_mask.py`

#### Data Location
The data is saved at `codes/ECT-BPS/ectbps_para/data/para_mask/`. </br>
Processed data is already uploaded at this location.



## Updates
<li> 1st November 2022 - ECTSum Dataset released </li>
<li> 30th November 2022 - Codes and Instructions released for training the Extractive Module of ECT-BPS </li>
<li> 3rd March 2023 - Added the Prediction Pipeline for the Extractive module. </li>
<li> 5th March 2023 - Codes released to prepare the data for training the Paraphrasing Module </li>
<li> 7th March 2023 - Codes released to train the Paraphrasing Module of ECT-BPS</li>
<li> 8th March 2023 - Google Colab Notebook released for training and testing the Paraphrasing Module </li>