Update README.md
Browse files
README.md
CHANGED
@@ -5,13 +5,17 @@ tags: []
|
|
5 |
# MSA-ASR
|
6 |
Multilingual Speaker-Attributed Automatic Speech Recognition
|
7 |
|
|
|
|
|
|
|
|
|
8 |
### Introduction
|
9 |
|
10 |
This repository provides an implementation of a Speaker-Attributed Automatic Speech Recognition model. The model performs both multilingual speech recognition and speaker embedding extraction, enabling speaker differentiation.
|
11 |
|
12 |
Model architecture
|
13 |
|
14 |
-

|
19 |
|
20 |
|
21 |
### Setup
|
|
|
34 |
python infer.py
|
35 |
```
|
36 |
|
37 |
+
### Training Dataset
|
38 |
+
|
39 |
+
*From ASR to SA-ASR dataset:*
|
40 |
+
|
41 |
+
- Segment ASR data into single-speaker turns.
|
42 |
+
- Match turns into group which may come from the same speaker by using speaker embedding cosine similarity.
|
43 |
+
- Pick a few groups, each group a few turns.
|
44 |
+
- Concatenate turns in random order.
|
45 |
+
|
46 |
+

|
47 |
+
|
48 |
+
*In total:*
|
49 |
+
|
50 |
+
- 15.5M turns
|
51 |
+
- 14k audio hours
|
52 |
+
- English only
|
53 |
+
|
54 |
+
Dataset is open available in [HF Dataset](https://huggingface.co/datasets/nguyenvulebinh/spk-attribute)
|
55 |
+
|
56 |
### Citation
|
57 |
|
58 |
```bibtex
|
59 |
+
@INPROCEEDINGS{10889116,
|
60 |
+
author={Nguyen, Thai-Binh and Waibel, Alexander},
|
61 |
+
booktitle={ICASSP 2025 - 2025 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
|
62 |
+
title={MSA-ASR: Efficient Multilingual Speaker Attribution with frozen ASR Models},
|
63 |
+
year={2025},
|
64 |
+
volume={},
|
65 |
+
number={},
|
66 |
+
pages={1-5},
|
67 |
+
keywords={Training;Adaptation models;Limiting;Predictive models;Data models;Robustness;Multilingual;Data mining;Speech processing;Standards;speaker-attributed;asr;multilingual},
|
68 |
+
doi={10.1109/ICASSP49660.2025.10889116}}
|
69 |
+
|
70 |
```
|
71 |
|
72 |
### License
|