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-300m`](https://huggingface.co/facebook/wav2vec2-xls-r-300m) 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). Your input is invaluable to us!
@@ -14,45 +14,46 @@ datasets:
|
|
14 |
- ovm
|
15 |
- pscr
|
16 |
- vystadial2016
|
|
|
17 |
model-index:
|
18 |
- name: Czech comodoro Wav2Vec2 XLSR 300M 250h data
|
19 |
results:
|
20 |
- task:
|
21 |
-
name: Automatic Speech Recognition
|
22 |
type: automatic-speech-recognition
|
|
|
23 |
dataset:
|
24 |
name: Common Voice 8
|
25 |
type: mozilla-foundation/common_voice_8_0
|
26 |
args: cs
|
27 |
metrics:
|
28 |
-
-
|
29 |
-
type: wer
|
30 |
value: 7.3
|
31 |
-
|
32 |
-
|
33 |
value: 2.1
|
|
|
34 |
- task:
|
35 |
-
name: Automatic Speech Recognition
|
36 |
type: automatic-speech-recognition
|
|
|
37 |
dataset:
|
38 |
name: Robust Speech Event - Dev Data
|
39 |
type: speech-recognition-community-v2/dev_data
|
40 |
args: cs
|
41 |
metrics:
|
42 |
-
-
|
43 |
-
type: wer
|
44 |
value: 43.44
|
|
|
45 |
- task:
|
46 |
-
name: Automatic Speech Recognition
|
47 |
type: automatic-speech-recognition
|
|
|
48 |
dataset:
|
49 |
name: Robust Speech Event - Test Data
|
50 |
type: speech-recognition-community-v2/eval_data
|
51 |
args: cs
|
52 |
metrics:
|
53 |
-
-
|
54 |
-
type: wer
|
55 |
value: 38.5
|
|
|
56 |
---
|
57 |
|
58 |
# Czech wav2vec2-xls-r-300m-cs-250
|
|
|
14 |
- ovm
|
15 |
- pscr
|
16 |
- vystadial2016
|
17 |
+
base_model: facebook/wav2vec2-xls-r-300m
|
18 |
model-index:
|
19 |
- name: Czech comodoro Wav2Vec2 XLSR 300M 250h data
|
20 |
results:
|
21 |
- task:
|
|
|
22 |
type: automatic-speech-recognition
|
23 |
+
name: Automatic Speech Recognition
|
24 |
dataset:
|
25 |
name: Common Voice 8
|
26 |
type: mozilla-foundation/common_voice_8_0
|
27 |
args: cs
|
28 |
metrics:
|
29 |
+
- type: wer
|
|
|
30 |
value: 7.3
|
31 |
+
name: Test WER
|
32 |
+
- type: cer
|
33 |
value: 2.1
|
34 |
+
name: Test CER
|
35 |
- task:
|
|
|
36 |
type: automatic-speech-recognition
|
37 |
+
name: Automatic Speech Recognition
|
38 |
dataset:
|
39 |
name: Robust Speech Event - Dev Data
|
40 |
type: speech-recognition-community-v2/dev_data
|
41 |
args: cs
|
42 |
metrics:
|
43 |
+
- type: wer
|
|
|
44 |
value: 43.44
|
45 |
+
name: Test WER
|
46 |
- task:
|
|
|
47 |
type: automatic-speech-recognition
|
48 |
+
name: Automatic Speech Recognition
|
49 |
dataset:
|
50 |
name: Robust Speech Event - Test Data
|
51 |
type: speech-recognition-community-v2/eval_data
|
52 |
args: cs
|
53 |
metrics:
|
54 |
+
- type: wer
|
|
|
55 |
value: 38.5
|
56 |
+
name: Test WER
|
57 |
---
|
58 |
|
59 |
# Czech wav2vec2-xls-r-300m-cs-250
|