Update README.md
Browse files
README.md
CHANGED
@@ -74,7 +74,7 @@ tags:
|
|
74 |
- speaker-segmentation
|
75 |
---
|
76 |
|
77 |
-
|
78 |
|
79 |
The AMI Meeting Corpus consists of 100 hours of meeting recordings. The recordings use a range of signals
|
80 |
synchronized to a common timeline. These include close-talking and far-field microphones, individual and
|
@@ -84,5 +84,78 @@ were recorded in English using three different rooms with different acoustic pro
|
|
84 |
non-native speakers.
|
85 |
|
86 |
**Note**: This dataset has been preprocessed using [diarizers](https://github.com/kamilakesbi/diarizers/tree/main/datasets).
|
87 |
-
It makes the dataset compatible with `diarizers` scripts to fine-tune `pyannote` segmentation models.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
|
|
|
74 |
- speaker-segmentation
|
75 |
---
|
76 |
|
77 |
+
# Dataset Card for the AMI dataset for speaker diarization
|
78 |
|
79 |
The AMI Meeting Corpus consists of 100 hours of meeting recordings. The recordings use a range of signals
|
80 |
synchronized to a common timeline. These include close-talking and far-field microphones, individual and
|
|
|
84 |
non-native speakers.
|
85 |
|
86 |
**Note**: This dataset has been preprocessed using [diarizers](https://github.com/kamilakesbi/diarizers/tree/main/datasets).
|
87 |
+
It makes the dataset compatible with the `diarizers` repository scripts to fine-tune `pyannote` segmentation models.
|
88 |
+
|
89 |
+
|
90 |
+
## Motivation
|
91 |
+
|
92 |
+
|
93 |
+
|
94 |
+
|
95 |
+
|
96 |
+
### Example Usage
|
97 |
+
|
98 |
+
|
99 |
+
```python
|
100 |
+
from datasets import load_dataset
|
101 |
+
ds = load_dataset("diarizers-community/ami", "ihm")
|
102 |
+
|
103 |
+
print(ds)
|
104 |
+
```
|
105 |
+
gives:
|
106 |
+
```
|
107 |
+
DatasetDict({
|
108 |
+
train: Dataset({
|
109 |
+
features: ['audio', 'timestamps_start', 'timestamps_end', 'speakers'],
|
110 |
+
num_rows: 136
|
111 |
+
})
|
112 |
+
validation: Dataset({
|
113 |
+
features: ['audio', 'timestamps_start', 'timestamps_end', 'speakers'],
|
114 |
+
num_rows: 18
|
115 |
+
})
|
116 |
+
test: Dataset({
|
117 |
+
features: ['audio', 'timestamps_start', 'timestamps_end', 'speakers'],
|
118 |
+
num_rows: 16
|
119 |
+
})
|
120 |
+
})
|
121 |
+
```
|
122 |
+
|
123 |
+
### Dataset Description
|
124 |
+
|
125 |
+
- **License:** CC BY 4.0
|
126 |
+
|
127 |
+
|
128 |
+
## Dataset source
|
129 |
+
|
130 |
+
- **Homepage:** https://groups.inf.ed.ac.uk/ami/corpus/
|
131 |
+
- **Repository:** https://github.com/kamilakesbi/diarizers/tree/main/datasets
|
132 |
+
- **Paper:**
|
133 |
+
- **Leaderboard:**
|
134 |
+
- **Point of Contact:** [[email protected]](mailto:[email protected])
|
135 |
+
|
136 |
+
## Citation
|
137 |
+
|
138 |
+
```
|
139 |
+
@misc{akesbi-diarizers,
|
140 |
+
author = {Kamil Akesbi and Sanchit Gandhi},
|
141 |
+
title = {"Diarizers: A repository for fine-tuning speaker diarization models"},
|
142 |
+
year = {2024},
|
143 |
+
publisher = {GitHub},
|
144 |
+
journal = {GitHub repository},
|
145 |
+
howpublished = {\url{https://github.com/huggingface/diarizers}}
|
146 |
+
}
|
147 |
+
```
|
148 |
+
|
149 |
+
```
|
150 |
+
@article{article,
|
151 |
+
author = {Mccowan, Iain and Carletta, J and Kraaij, Wessel and Ashby, Simone and Bourban, S and Flynn, M and Guillemot, M and Hain, Thomas and Kadlec, J and Karaiskos, V and Kronenthal, M and Lathoud, Guillaume and Lincoln, Mike and Lisowska Masson, Agnes and Post, Wilfried and Reidsma, Dennis and Wellner, P},
|
152 |
+
year = {2005},
|
153 |
+
month = {01},
|
154 |
+
pages = {},
|
155 |
+
title = {The AMI meeting corpus},
|
156 |
+
journal = {Int'l. Conf. on Methods and Techniques in Behavioral Research}
|
157 |
+
}
|
158 |
+
```
|
159 |
+
|
160 |
+
|
161 |
|