huuuyeah commited on
Commit
6d5127e
1 Parent(s): a672e98

Update data card

Browse files
Files changed (1) hide show
  1. README.md +72 -0
README.md CHANGED
@@ -1,3 +1,75 @@
1
  ---
2
  license: cc-by-nc-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-sa-4.0
3
+ task_categories:
4
+ - summarization
5
+ - text-generation
6
+ language:
7
+ - en
8
+ tags:
9
+ - municipal
10
+ - meeting
11
+ - transcripts
12
+ - benchmark
13
+ - long-context
14
+ size_categories:
15
+ - 10M<n<100M
16
  ---
17
+ ## Overview
18
+
19
+ 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.
20
+
21
+ ## Data Structure
22
+ ```json
23
+ {
24
+ "id": 0,
25
+ "uid": "SeattleCityCouncil_06132016_Res 31669",
26
+ "summary": "A RESOLUTION encouraging as a best practice ...",
27
+ "transcript": "The report of the Civil Rights, Utilities, Economic ..."
28
+ }
29
+
30
+ ```
31
+
32
+ ## Usage
33
+ ```python
34
+ from datasets import load_dataset
35
+ meetingbank = load_dataset("huuuyeah/meetingbank")
36
+
37
+ train_data = meetingbank['train']
38
+ test_data = meetingbank['test']
39
+ val_data = meetingbank['validation']
40
+
41
+ def generator(data_split):
42
+ for instance in data_split:
43
+ yiled instance['id'], instance['summary'], instance['transcript']
44
+ ```
45
+
46
+ ## Acknowledgement
47
+
48
+ Please cite the following paper in work that makes use of this dataset:
49
+
50
+ [MeetingBank: A Benchmark Dataset for Meeting Summarization](https://arxiv.org/abs/2305.17529)\
51
+ Yebowen Hu, Tim Ganter, Hanieh Deilamsalehy, Franck Dernoncourt, Hassan Foroosh, Fei Liu\
52
+ In main conference of Association for Computational Linguistics (ACL'23), Toronto, Canada.
53
+
54
+ ## Bibtex
55
+ ```
56
+ @inproceedings{hu-etal-2023-meetingbank,
57
+ title = "MeetingBank: A Benchmark Dataset for Meeting Summarization",
58
+ author = "Yebowen Hu and Tim Ganter and Hanieh Deilamsalehy and Franck Dernoncourt and Hassan Foroosh and Fei Liu",
59
+ booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (ACL)",
60
+ month = July,
61
+ year = "2023",
62
+ address = "Toronto, Canada",
63
+ publisher = "Association for Computational Linguistics",
64
+ }
65
+ ```
66
+
67
+ ## Resources
68
+
69
+ 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.
70
+
71
+ **Summary, Segments Transcripts and VideoList**: [zenodo](https://zenodo.org/record/7989108)
72
+
73
+ **Meeting Audios**: [HuggingFace](https://huggingface.co/datasets/huuuyeah/MeetingBank)
74
+
75
+ Some scripts can be found in github repo [MeetingBank_Utils](https://github.com/YebowenHu/MeetingBank-utils)