Update READM.md
Browse files
README.md
CHANGED
|
@@ -91,3 +91,51 @@ configs:
|
|
| 91 |
- split: train
|
| 92 |
path: data/train-*
|
| 93 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 91 |
- split: train
|
| 92 |
path: data/train-*
|
| 93 |
---
|
| 94 |
+
|
| 95 |
+
# Dataset Card for AMI_annotation
|
| 96 |
+
|
| 97 |
+
## Dataset Details
|
| 98 |
+
|
| 99 |
+
### Dataset Description
|
| 100 |
+
**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.
|
| 101 |
+
|
| 102 |
+
- **Curated by:** Rabindra Nath Nandi
|
| 103 |
+
- **Language(s) (NLP):** English
|
| 104 |
+
- **License:** [More Information Needed]
|
| 105 |
+
|
| 106 |
+
## Dataset Structure
|
| 107 |
+
|
| 108 |
+
### Data Instances
|
| 109 |
+
Each row in the dataset represents a unique meeting instance indexed by its `meeting_id`.
|
| 110 |
+
|
| 111 |
+
### Data Fields
|
| 112 |
+
* `meeting_id` (string): Unique identifier for the meeting session (e.g., `ES2002a`).
|
| 113 |
+
* `abstractive` (struct): Meeting-level abstractive summaries containing:
|
| 114 |
+
* `abstract` (list of strings): High-level meeting summary sentences.
|
| 115 |
+
* `actions` (list of strings): Stated action items and directives.
|
| 116 |
+
* `decisions` (list of strings): Concluded decisions made by the team.
|
| 117 |
+
* `problems` (list of strings): Open issues or problems discussed.
|
| 118 |
+
* `participants_summary` (struct): Role-specific summaries for participants (`A`, `B`, `C`, `D`), tracking individual perspectives on abstract, actions, decisions, and problems.
|
| 119 |
+
* `topics` (list of strings): Chronological meeting agenda and discussion topics.
|
| 120 |
+
* `key_speakers` (list): Speaker profile records containing:
|
| 121 |
+
* `speaker_id` (string): Identifier code for the speaker.
|
| 122 |
+
* `speech` (string): Consolidated full-text monologue or contributions.
|
| 123 |
+
* `name_entities` (list): Extracted entities mapped to types (`text`, `type`).
|
| 124 |
+
* `utterance` (list): Time-aligned utterance blocks containing:
|
| 125 |
+
* `speaker` (string): Speaker label.
|
| 126 |
+
* `start_time` (float64): Utterance start timestamp in seconds.
|
| 127 |
+
* `end_time` (float64): Utterance end timestamp in seconds.
|
| 128 |
+
* `text` (string): Transcribed text segment.
|
| 129 |
+
|
| 130 |
+
## Uses
|
| 131 |
+
|
| 132 |
+
### Direct Use
|
| 133 |
+
Designed for training and evaluating Audio Large Language Models (AudioLLMs), automatic meeting summarization, multi-party dialogue analysis, and named entity recognition tasks.
|
| 134 |
+
|
| 135 |
+
## Dataset Creation
|
| 136 |
+
|
| 137 |
+
### Curation Rationale
|
| 138 |
+
Processed using automated XML parsers to structure legacy AMI corpus annotations into clean, standardized JSON table rows compatible with the Hugging Face `datasets` ecosystem.
|
| 139 |
+
|
| 140 |
+
## Bias, Risks, and Limitations
|
| 141 |
+
Corpus reflects natural multi-party meeting dynamics, containing colloquial speech patterns, interruptions, and subjective participant summaries.
|