mxmpl
commited on
Commit
·
9251d0f
1
Parent(s):
5e6c947
update README
Browse files
README.md
CHANGED
@@ -1,3 +1,24 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
datasets:
|
6 |
+
- openslr/librispeech_asr
|
7 |
+
base_model:
|
8 |
+
- facebook/hubert-base-ls960
|
9 |
---
|
10 |
+
|
11 |
+
# Improving Spoken Language Modeling with Phoneme Classification: A Simple Fine-tuning Approach
|
12 |
+
|
13 |
+
**Paper:** https://arxiv.org/abs/2410.00025
|
14 |
+
Presented at EMNLP 2024.
|
15 |
+
|
16 |
+
This branch contains the HuBERT model fine-tuned with phoneme classification on train-clean-100.
|
17 |
+
See the companion repository: https://github.com/bootphon/spokenlm-phoneme.
|
18 |
+
|
19 |
+
Use it like this:
|
20 |
+
```python
|
21 |
+
from phonslm import HuBERTPhoneme
|
22 |
+
|
23 |
+
model = HuBERTPhoneme.from_pretrained("coml/hubert-phoneme-classification")
|
24 |
+
```
|