ggfox00000 commited on
Commit
6cd8d4f
·
verified ·
1 Parent(s): c41b84d

Dataset card (AMI full mirror)

Browse files
Files changed (1) hide show
  1. README.md +164 -0
README.md ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - automatic-speech-recognition
5
+ - voice-activity-detection
6
+ language:
7
+ - en
8
+ size_categories:
9
+ - n<1K
10
+ pretty_name: AMI Meeting Corpus — full mirror (Mix-Headset + manual annotations)
11
+ tags:
12
+ - ami
13
+ - meeting
14
+ - speaker-diarization
15
+ - diarization
16
+ - asr
17
+ - rttm
18
+ - dialogue-acts
19
+ - nxt
20
+ - audio
21
+ annotations_creators:
22
+ - expert-generated
23
+ source_datasets:
24
+ - extended|ami-meeting-corpus
25
+ dataset_info:
26
+ features:
27
+ - name: audio
28
+ dtype: audio
29
+ - name: file_id
30
+ dtype: string
31
+ splits:
32
+ - name: all
33
+ num_examples: 171
34
+ ---
35
+
36
+ # AMI Meeting Corpus — Full Mirror (Mix-Headset + manual annotations)
37
+
38
+ Miroir **complet** du AMI Meeting Corpus distribué par l'AMI Consortium
39
+ (Edinburgh). Tous les fichiers sont repris *tels quels* depuis la distribution
40
+ upstream, y compris la structure de dossiers.
41
+
42
+ ## Contenu
43
+
44
+ - **171 meetings** (~100 h d'audio) — scénarios scénarisés (ES/IS/TS) et
45
+ réunions naturelles (EN/IB/IN)
46
+ - **Audio Mix-Headset** : `amicorpus/<meeting>/audio/<meeting>.Mix-Headset.wav`
47
+ — mixdown des micros serre-tête (un par speaker), c'est le flux audio
48
+ standard pour benchmark diarisation / ASR close-talk
49
+ - **Manual annotations v1.6.2** (NXT XML) dans `ami_public_manual_1.6.2/` :
50
+ segments, words, dialogueActs, topics, abstractive/extractive summaries,
51
+ namedEntities, focus, gestures (hand/head), movement, disfluency,
52
+ argumentation, participantRoles, participantSummaries, decision,
53
+ youUsages, ontologies, corpusResources…
54
+ - Langue : **anglais** (UK/EU — meetings AMI)
55
+ - Licence : **CC-BY-4.0** (cf `CCBY4.0.txt` à la racine)
56
+
57
+ ## Structure
58
+
59
+ ```
60
+ dia-AMICorpus-all/
61
+ ├── README.md
62
+ ├── CCBY4.0.txt
63
+ ├── amiBuild-*.manifest.txt
64
+ ├── amicorpus/
65
+ │ └── <meeting>/audio/<meeting>.Mix-Headset.wav # 171 WAV
66
+ └── ami_public_manual_1.6.2/ # NXT v1.6.2
67
+ ├── 00README_MANUAL.txt
68
+ ├── LICENCE.txt
69
+ ├── AMI-metadata.xml
70
+ ├── MANIFEST_MANUAL.txt
71
+ ├── manifest_1.7.html
72
+ ├── resource.xml
73
+ ├── abstractive/ # 142 fichiers
74
+ ├── argumentation/ # 3
75
+ ├── configuration/ # 2
76
+ ├── corpusResources/ # 2
77
+ ├── corpusdoc/ # 73
78
+ ├── decision/ # 1
79
+ ├── dialogueActs/ # 695
80
+ ├── disfluency/ # 160
81
+ ├── extractive/ # 274
82
+ ├── focus/ # 56
83
+ ├── handGesture/ # 61
84
+ ├── headGesture/ # 173
85
+ ├── movement/ # 498
86
+ ├── namedEntities/ # 468
87
+ ├── ontologies/ # 17
88
+ ├── participantRoles/ # 20
89
+ ├── participantSummaries/ # 323
90
+ ├── segments/ # 687
91
+ ├── topics/ # 139
92
+ ├── words/ # 687
93
+ └── youUsages/ # 63
94
+ ```
95
+
96
+ ## Meetings disponibles (171)
97
+
98
+ - Scénarios (ES/IS/TS) : ES2002–ES2016, IS1000–IS1009, TS3003–TS3012
99
+ - Naturels (EN) : EN2001–EN2009
100
+ - Instrumental / natural (IB/IN) : IB4001–IB4011, IN1001–IN1016
101
+
102
+ ## Format NXT (exemple segments)
103
+
104
+ ```xml
105
+ <?xml version="1.0" encoding="ISO-8859-1"?>
106
+ <nite:root nite:id="ES2002a.A.segs" xmlns:nite="http://nite.sourceforge.net/">
107
+ <segment nite:id="ES2002a.sync.1"
108
+ transcriber_start="12.34" transcriber_end="14.56"
109
+ participant="A">
110
+ <nite:child href="ES2002a.A.words.xml#id(ES2002a.w.12)..id(ES2002a.w.27)"/>
111
+ </segment>
112
+ ...
113
+ </nite:root>
114
+ ```
115
+
116
+ Pour construire un RTTM standard à partir des segments NXT :
117
+ ```python
118
+ from glob import glob
119
+ from xml.etree import ElementTree as ET
120
+
121
+ NS = {"nite": "http://nite.sourceforge.net/"}
122
+ for seg_xml in glob("ami_public_manual_1.6.2/segments/*.segments.xml"):
123
+ root = ET.parse(seg_xml).getroot()
124
+ meeting, spk, _ = seg_xml.split("/")[-1].split(".", 2)
125
+ for seg in root.findall("segment"):
126
+ t0 = float(seg.attrib.get("transcriber_start", seg.attrib.get("starttime", 0)))
127
+ t1 = float(seg.attrib.get("transcriber_end", seg.attrib.get("endtime", 0)))
128
+ if t1 > t0:
129
+ print(f"SPEAKER {meeting} 1 {t0:.3f} {t1-t0:.3f} <NA> <NA> {spk} <NA> <NA>")
130
+ ```
131
+
132
+ ## Utilisation
133
+
134
+ ```python
135
+ from huggingface_hub import snapshot_download
136
+
137
+ root = snapshot_download("ggfox00000/dia-AMICorpus-all", repo_type="dataset")
138
+ # root/amicorpus/<meeting>/audio/<meeting>.Mix-Headset.wav
139
+ # root/ami_public_manual_1.6.2/segments/<meeting>.<spk>.segments.xml
140
+ # root/ami_public_manual_1.6.2/words/<meeting>.<spk>.words.xml
141
+ ```
142
+
143
+ ## Source
144
+
145
+ - AMI Meeting Corpus — https://groups.inf.ed.ac.uk/ami/corpus/
146
+ - Annotations NXT v1.6.2 — AMI Consortium
147
+ - Carletta et al. 2005, *The AMI Meeting Corpus: A Pre-Announcement*, MLMI
148
+
149
+ ## Licence
150
+
151
+ **CC-BY-4.0** — voir `CCBY4.0.txt`. Distribution miroir de la distribution
152
+ officielle du AMI Consortium pour faciliter l'accès en recherche.
153
+
154
+ ## Citation
155
+
156
+ ```bibtex
157
+ @inproceedings{carletta2005ami,
158
+ author = {Carletta, Jean and Ashby, Simone and Bourban, Sebastien and Flynn, Mike and Guillemot, Mael and Hain, Thomas and Kadlec, Jaroslav and Karaiskos, Vasilis and Kraaij, Wessel and Kronenthal, Melissa and Lathoud, Guillaume and Lincoln, Mike and Lisowska, Agnes and McCowan, Iain and Post, Wilfried and Reidsma, Dennis and Wellner, Pierre},
159
+ title = {The {AMI} Meeting Corpus: A Pre-Announcement},
160
+ booktitle = {MLMI},
161
+ year = {2005},
162
+ pages = {28--39},
163
+ }
164
+ ```