Librarian Bot: Add base_model information to model
Browse filesThis pull request aims to enrich the metadata of your model by adding [`facebook/wav2vec2-xls-r-1b`](https://huggingface.co/facebook/wav2vec2-xls-r-1b) as a `base_model` field, situated in the `YAML` block of your model's `README.md`.
How did we find this information? We performed a regular expression match on your `README.md` file to determine the connection.
**Why add this?** Enhancing your model's metadata in this way:
- **Boosts Discoverability** - It becomes straightforward to trace the relationships between various models on the Hugging Face Hub.
- **Highlights Impact** - It showcases the contributions and influences different models have within the community.
For a hands-on example of how such metadata can play a pivotal role in mapping model connections, take a look at [librarian-bots/base_model_explorer](https://huggingface.co/spaces/librarian-bots/base_model_explorer).
This PR comes courtesy of [Librarian Bot](https://huggingface.co/librarian-bot). If you have any feedback, queries, or need assistance, please don't hesitate to reach out to [@davanstrien](https://huggingface.co/davanstrien).
If you want to automatically add `base_model` metadata to more of your modes you can use the [Librarian Bot](https://huggingface.co/librarian-bot) [Metadata Request Service](https://huggingface.co/spaces/librarian-bots/metadata_request_service)!
@@ -10,60 +10,61 @@ tags:
|
|
10 |
- ru
|
11 |
datasets:
|
12 |
- mozilla-foundation/common_voice_8_0
|
|
|
13 |
model-index:
|
14 |
- name: XLS-R Wav2Vec2 Russian by Jonatas Grosman
|
15 |
results:
|
16 |
- task:
|
17 |
-
name: Automatic Speech Recognition
|
18 |
type: automatic-speech-recognition
|
|
|
19 |
dataset:
|
20 |
name: Common Voice 8
|
21 |
type: mozilla-foundation/common_voice_8_0
|
22 |
args: ru
|
23 |
metrics:
|
24 |
-
-
|
25 |
-
type: wer
|
26 |
value: 9.82
|
27 |
-
|
28 |
-
|
29 |
value: 2.3
|
30 |
-
|
31 |
-
|
32 |
value: 7.08
|
33 |
-
|
34 |
-
|
35 |
value: 1.87
|
|
|
36 |
- task:
|
37 |
-
name: Automatic Speech Recognition
|
38 |
type: automatic-speech-recognition
|
|
|
39 |
dataset:
|
40 |
name: Robust Speech Event - Dev Data
|
41 |
type: speech-recognition-community-v2/dev_data
|
42 |
args: ru
|
43 |
metrics:
|
44 |
-
-
|
45 |
-
type: wer
|
46 |
value: 23.96
|
47 |
-
|
48 |
-
|
49 |
value: 8.88
|
50 |
-
|
51 |
-
|
52 |
value: 15.88
|
53 |
-
|
54 |
-
|
55 |
value: 7.42
|
|
|
56 |
- task:
|
57 |
-
name: Automatic Speech Recognition
|
58 |
type: automatic-speech-recognition
|
|
|
59 |
dataset:
|
60 |
name: Robust Speech Event - Test Data
|
61 |
type: speech-recognition-community-v2/eval_data
|
62 |
args: ru
|
63 |
metrics:
|
64 |
-
-
|
65 |
-
type: wer
|
66 |
value: 14.23
|
|
|
67 |
---
|
68 |
|
69 |
# Fine-tuned XLS-R 1B model for speech recognition in Russian
|
|
|
10 |
- ru
|
11 |
datasets:
|
12 |
- mozilla-foundation/common_voice_8_0
|
13 |
+
base_model: facebook/wav2vec2-xls-r-1b
|
14 |
model-index:
|
15 |
- name: XLS-R Wav2Vec2 Russian by Jonatas Grosman
|
16 |
results:
|
17 |
- task:
|
|
|
18 |
type: automatic-speech-recognition
|
19 |
+
name: Automatic Speech Recognition
|
20 |
dataset:
|
21 |
name: Common Voice 8
|
22 |
type: mozilla-foundation/common_voice_8_0
|
23 |
args: ru
|
24 |
metrics:
|
25 |
+
- type: wer
|
|
|
26 |
value: 9.82
|
27 |
+
name: Test WER
|
28 |
+
- type: cer
|
29 |
value: 2.3
|
30 |
+
name: Test CER
|
31 |
+
- type: wer
|
32 |
value: 7.08
|
33 |
+
name: Test WER (+LM)
|
34 |
+
- type: cer
|
35 |
value: 1.87
|
36 |
+
name: Test CER (+LM)
|
37 |
- task:
|
|
|
38 |
type: automatic-speech-recognition
|
39 |
+
name: Automatic Speech Recognition
|
40 |
dataset:
|
41 |
name: Robust Speech Event - Dev Data
|
42 |
type: speech-recognition-community-v2/dev_data
|
43 |
args: ru
|
44 |
metrics:
|
45 |
+
- type: wer
|
|
|
46 |
value: 23.96
|
47 |
+
name: Dev WER
|
48 |
+
- type: cer
|
49 |
value: 8.88
|
50 |
+
name: Dev CER
|
51 |
+
- type: wer
|
52 |
value: 15.88
|
53 |
+
name: Dev WER (+LM)
|
54 |
+
- type: cer
|
55 |
value: 7.42
|
56 |
+
name: Dev CER (+LM)
|
57 |
- task:
|
|
|
58 |
type: automatic-speech-recognition
|
59 |
+
name: Automatic Speech Recognition
|
60 |
dataset:
|
61 |
name: Robust Speech Event - Test Data
|
62 |
type: speech-recognition-community-v2/eval_data
|
63 |
args: ru
|
64 |
metrics:
|
65 |
+
- type: wer
|
|
|
66 |
value: 14.23
|
67 |
+
name: Test WER
|
68 |
---
|
69 |
|
70 |
# Fine-tuned XLS-R 1B model for speech recognition in Russian
|