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)!
@@ -2,11 +2,6 @@
|
|
2 |
language:
|
3 |
- it
|
4 |
license: apache-2.0
|
5 |
-
datasets:
|
6 |
-
- mozilla-foundation/common_voice_8_0
|
7 |
-
metrics:
|
8 |
-
- wer
|
9 |
-
- cer
|
10 |
tags:
|
11 |
- audio
|
12 |
- automatic-speech-recognition
|
@@ -15,29 +10,35 @@ tags:
|
|
15 |
- mozilla-foundation/common_voice_8_0
|
16 |
- speech
|
17 |
- wav2vec2
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
model-index:
|
19 |
- name: XLS-R Wav2Vec2 Italian by radiogroup crits
|
20 |
results:
|
21 |
- task:
|
22 |
-
name: Speech Recognition
|
23 |
type: automatic-speech-recognition
|
|
|
24 |
dataset:
|
25 |
name: Common Voice 8.0 italian
|
26 |
type: mozilla-foundation/common_voice_8_0
|
27 |
args: it
|
28 |
metrics:
|
29 |
-
-
|
30 |
-
type: wer
|
31 |
value: 9.04
|
32 |
-
|
33 |
-
|
34 |
value: 2.2
|
35 |
-
|
36 |
-
|
37 |
value: 6.24
|
38 |
-
|
39 |
-
|
40 |
value: 1.67
|
|
|
41 |
---
|
42 |
# XLS-R-1B-ITALIAN-DOC4LM-5GRAM
|
43 |
|
|
|
2 |
language:
|
3 |
- it
|
4 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
5 |
tags:
|
6 |
- audio
|
7 |
- automatic-speech-recognition
|
|
|
10 |
- mozilla-foundation/common_voice_8_0
|
11 |
- speech
|
12 |
- wav2vec2
|
13 |
+
datasets:
|
14 |
+
- mozilla-foundation/common_voice_8_0
|
15 |
+
metrics:
|
16 |
+
- wer
|
17 |
+
- cer
|
18 |
+
base_model: facebook/wav2vec2-xls-r-1b
|
19 |
model-index:
|
20 |
- name: XLS-R Wav2Vec2 Italian by radiogroup crits
|
21 |
results:
|
22 |
- task:
|
|
|
23 |
type: automatic-speech-recognition
|
24 |
+
name: Speech Recognition
|
25 |
dataset:
|
26 |
name: Common Voice 8.0 italian
|
27 |
type: mozilla-foundation/common_voice_8_0
|
28 |
args: it
|
29 |
metrics:
|
30 |
+
- type: wer
|
|
|
31 |
value: 9.04
|
32 |
+
name: Test WER
|
33 |
+
- type: cer
|
34 |
value: 2.2
|
35 |
+
name: Test CER
|
36 |
+
- type: wer
|
37 |
value: 6.24
|
38 |
+
name: Test WER (+LM)
|
39 |
+
- type: cer
|
40 |
value: 1.67
|
41 |
+
name: Test CER (+LM)
|
42 |
---
|
43 |
# XLS-R-1B-ITALIAN-DOC4LM-5GRAM
|
44 |
|