File size: 4,406 Bytes
225951d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8fc16c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
---
dataset_info:
  features:
  - name: meeting_id
    dtype: string
  - name: abstractive
    struct:
    - name: abstract
      list: string
    - name: actions
      list: string
    - name: decisions
      list: string
    - name: problems
      list: string
  - name: participants_summary
    struct:
    - name: A
      struct:
      - name: abstract
        list: string
      - name: actions
        list: string
      - name: decisions
        list: string
      - name: problems
        list: string
    - name: B
      struct:
      - name: abstract
        list: string
      - name: actions
        list: string
      - name: decisions
        list: string
      - name: problems
        list: string
    - name: C
      struct:
      - name: abstract
        list: string
      - name: actions
        list: string
      - name: decisions
        list: string
      - name: problems
        list: string
    - name: D
      struct:
      - name: abstract
        list: string
      - name: actions
        list: string
      - name: decisions
        list: string
      - name: problems
        list: string
  - name: topics
    list: string
  - name: key_speakers
    list:
    - name: speaker_id
      dtype: string
    - name: speech
      dtype: string
    - name: name_entities
      list:
      - name: text
        dtype: string
      - name: type
        dtype: string
  - name: utterance
    list:
    - name: speaker
      dtype: string
    - name: start_time
      dtype: float64
    - name: end_time
      dtype: float64
    - name: text
      dtype: string
  splits:
  - name: train
    num_bytes: 9648986
    num_examples: 139
  download_size: 9666002
  dataset_size: 9648986
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# Dataset Card for AMI_annotation

## Dataset Details

### Dataset Description
**AMI_annotation** is a structurally parsed and annotated multi-modal meeting corpus derived from the AMI Meeting Corpus manual annotations. It features detailed meeting-level metadata, abstractive meeting summaries, individual participant summaries mapped by roles/speakers, segmented timestamps, speaker-specific text transcriptions, integrated Named Entity Recognition (NER), and discussion topic vectors.

- **Curated by:** Rabindra Nath Nandi
- **Language(s) (NLP):** English
- **License:** [More Information Needed]

## Dataset Structure

### Data Instances
Each row in the dataset represents a unique meeting instance indexed by its `meeting_id`. 

### Data Fields
* `meeting_id` (string): Unique identifier for the meeting session (e.g., `ES2002a`).
* `abstractive` (struct): Meeting-level abstractive summaries containing:
  * `abstract` (list of strings): High-level meeting summary sentences.
  * `actions` (list of strings): Stated action items and directives.
  * `decisions` (list of strings): Concluded decisions made by the team.
  * `problems` (list of strings): Open issues or problems discussed.
* `participants_summary` (struct): Role-specific summaries for participants (`A`, `B`, `C`, `D`), tracking individual perspectives on abstract, actions, decisions, and problems.
* `topics` (list of strings): Chronological meeting agenda and discussion topics.
* `key_speakers` (list): Speaker profile records containing:
  * `speaker_id` (string): Identifier code for the speaker.
  * `speech` (string): Consolidated full-text monologue or contributions.
  * `name_entities` (list): Extracted entities mapped to types (`text`, `type`).
* `utterance` (list): Time-aligned utterance blocks containing:
  * `speaker` (string): Speaker label.
  * `start_time` (float64): Utterance start timestamp in seconds.
  * `end_time` (float64): Utterance end timestamp in seconds.
  * `text` (string): Transcribed text segment.

## Uses

### Direct Use
Designed for training and evaluating Audio Large Language Models (AudioLLMs), automatic meeting summarization, multi-party dialogue analysis, and named entity recognition tasks.

## Dataset Creation

### Curation Rationale
Processed using automated XML parsers to structure legacy AMI corpus annotations into clean, standardized JSON table rows compatible with the Hugging Face `datasets` ecosystem.

## Bias, Risks, and Limitations
Corpus reflects natural multi-party meeting dynamics, containing colloquial speech patterns, interruptions, and subjective participant summaries.