File size: 1,494 Bytes
0d3d276
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6a9627c
 
 
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
## Dataset
- split_survey_df: The split version of SciReviewGen, which aims to generate literature review **chapters**
- original_survey_df: The original version of SciReviewGen, which aims to generate **the entire text** of literature reviews
- summarization_csv: CSV files suitable for summarization task.

### Data format
#### split_survey_df & original_survey_df
- Row: 
  - literature review chapter or the entire text of literature review
- Column:
  - paper_id: paper_id used in [S2ORC](https://github.com/allenai/s2orc)
  - title: title of the literature review
  - abstract: abstract of the literature review
  - section: chapter title
  - text: body text of literature review chapter or literature review paper
  - n_bibs: number of the cited papers that can be used as inputs
  - n_nonbibs: number of the cited papers that cannot be used as inputs
  - bib_titles: titles of the cited papers
  - bib_abstracts: abstracts of the cited papers
  - bib_citing_sentences: citing sentences that cite the cited papers
  - split: train/val/test split

#### summarization_csv
- Row: 
  - literature review chapter
- Column:
  - reference: `literature review title <s> chapter title <s> abstract of cited paper 1 <s> BIB001 </s> literature review title <s> chapter title <s> abstract of cited paper 2 <s> BIB002 </s> ...`
  - target: literature review chapter

### Data construction
Use `make_summarization_csv.py` to convert df to csv

## Reference
+ https://github.com/tetsu9923/SciReviewGen