Datasets:

Modalities:
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
License:
Aznor commited on
Commit
6bb359b
·
1 Parent(s): 1ebb4f0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -22
README.md CHANGED
@@ -1,25 +1,45 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: summary
7
- dtype: string
8
- - name: source
9
- dtype: string
10
- splits:
11
- - name: train
12
- num_bytes: 88162943
13
- num_examples: 5169
14
- - name: validation
15
- num_bytes: 13133120
16
- num_examples: 861
17
- - name: test
18
- num_bytes: 13354323
19
- num_examples: 862
20
- download_size: 62091706
21
- dataset_size: 114650386
22
  ---
23
- # Dataset Card for "MeetingBank-original"
24
 
25
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-nc-sa-4.0
3
+ task_categories:
4
+ - summarization
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  ---
 
6
 
7
+ This dataset is the original train-validation-test from the [MeetingBank dataset](https://meetingbank.github.io/).
8
+
9
+
10
+ **Overview**
11
+
12
+ MeetingBank, a benchmark dataset created from the city councils of 6 major U.S. cities to supplement existing datasets. It contains 1,366 meetings with over 3,579 hours of video, as well as transcripts, PDF documents of meeting minutes, agenda, and other metadata. On average, a council meeting is 2.6 hours long and its transcript contains over 28k tokens, making it a valuable testbed for meeting summarizers and for extracting structure from meeting videos. The datasets contains 6,892 segment-level summarization instances for training and evaluating of performance.
13
+
14
+ **Acknowledgement**
15
+
16
+ Please cite the following paper in work that makes use of this dataset:
17
+
18
+ [MeetingBank: A Benchmark Dataset for Meeting Summarization](https://arxiv.org/abs/2305.17529) \
19
+ Yebowen Hu, Tim Ganter, Hanieh Deilamsalehy, Franck Dernoncourt, Hassan Foroosh, Fei Liu \
20
+ In main conference of Association for Computational Linguistics (ACL’23), Toronto, Canada.
21
+
22
+ **Bibtex**
23
+
24
+ ```
25
+ @inproceedings{hu-etal-2023-meetingbank,
26
+ title = "MeetingBank: A Benchmark Dataset for Meeting Summarization",
27
+ author = "Yebowen Hu and Tim Ganter and Hanieh Deilamsalehy and Franck Dernoncourt and Hassan Foroosh and Fei Liu",
28
+ booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (ACL)",
29
+ month = July,
30
+ year = "2023",
31
+ address = "Toronto, Canada",
32
+ publisher = "Association for Computational Linguistics",
33
+ }
34
+ ```
35
+
36
+ **Resources**
37
+ MeetingBank dataset will be hosted at Zenodo. The audio files of each meeting will be hosted individually on Huggingface. All resources will includes meeting audio, transcripts, meetingbank main JSON file, summaries from 6 systems and human annotations.
38
+
39
+ **Summary, Segments Transcripts and VideoList:** [zenodo](https://zenodo.org/record/7989108)
40
+
41
+ **Meeting Audios:** [HuggingFace](https://huggingface.co/datasets/huuuyeah/MeetingBank_Audio)
42
+
43
+ **Meeting Transcripts:** [HuggingFace](https://huggingface.co/datasets/lytang/MeetingBank-transcript)
44
+
45
+ Some scripts can be found in github repo [MeetingBank_Utils](https://github.com/YebowenHu/MeetingBank-utils)