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!
|
@@ -9,60 +9,61 @@ tags:
|
|
| 9 |
datasets:
|
| 10 |
- mozilla-foundation/common_voice_8_0
|
| 11 |
- gigant/romanian_speech_synthesis_0_8_1
|
|
|
|
| 12 |
model-index:
|
| 13 |
- name: wav2vec2-ro-300m_01
|
| 14 |
results:
|
| 15 |
- task:
|
| 16 |
-
name: Automatic Speech Recognition
|
| 17 |
type: automatic-speech-recognition
|
|
|
|
| 18 |
dataset:
|
| 19 |
name: Robust Speech Event
|
| 20 |
type: speech-recognition-community-v2/dev_data
|
| 21 |
args: ro
|
| 22 |
metrics:
|
| 23 |
-
-
|
| 24 |
-
type: wer
|
| 25 |
value: 46.99
|
| 26 |
-
|
| 27 |
-
|
| 28 |
value: 16.04
|
| 29 |
-
|
| 30 |
-
|
| 31 |
value: 38.63
|
| 32 |
-
|
| 33 |
-
|
| 34 |
value: 14.52
|
|
|
|
| 35 |
- task:
|
| 36 |
-
name: Automatic Speech Recognition
|
| 37 |
type: automatic-speech-recognition
|
|
|
|
| 38 |
dataset:
|
| 39 |
name: Common Voice
|
| 40 |
type: mozilla-foundation/common_voice_8_0
|
| 41 |
args: ro
|
| 42 |
metrics:
|
| 43 |
-
-
|
| 44 |
-
type: wer
|
| 45 |
value: 11.73
|
| 46 |
-
|
| 47 |
-
|
| 48 |
value: 2.93
|
| 49 |
-
|
| 50 |
-
|
| 51 |
value: 7.31
|
| 52 |
-
|
| 53 |
-
|
| 54 |
value: 2.17
|
|
|
|
| 55 |
- task:
|
| 56 |
-
name: Automatic Speech Recognition
|
| 57 |
type: automatic-speech-recognition
|
|
|
|
| 58 |
dataset:
|
| 59 |
name: Robust Speech Event - Test Data
|
| 60 |
type: speech-recognition-community-v2/eval_data
|
| 61 |
args: ro
|
| 62 |
metrics:
|
| 63 |
-
-
|
| 64 |
-
type: wer
|
| 65 |
value: 43.23
|
|
|
|
| 66 |
---
|
| 67 |
|
| 68 |
You can test this model online with the [**Space for Romanian Speech Recognition**](https://huggingface.co/spaces/gigant/romanian-speech-recognition)
|
|
|
|
| 9 |
datasets:
|
| 10 |
- mozilla-foundation/common_voice_8_0
|
| 11 |
- gigant/romanian_speech_synthesis_0_8_1
|
| 12 |
+
base_model: facebook/wav2vec2-xls-r-300m
|
| 13 |
model-index:
|
| 14 |
- name: wav2vec2-ro-300m_01
|
| 15 |
results:
|
| 16 |
- task:
|
|
|
|
| 17 |
type: automatic-speech-recognition
|
| 18 |
+
name: Automatic Speech Recognition
|
| 19 |
dataset:
|
| 20 |
name: Robust Speech Event
|
| 21 |
type: speech-recognition-community-v2/dev_data
|
| 22 |
args: ro
|
| 23 |
metrics:
|
| 24 |
+
- type: wer
|
|
|
|
| 25 |
value: 46.99
|
| 26 |
+
name: Dev WER (without LM)
|
| 27 |
+
- type: cer
|
| 28 |
value: 16.04
|
| 29 |
+
name: Dev CER (without LM)
|
| 30 |
+
- type: wer
|
| 31 |
value: 38.63
|
| 32 |
+
name: Dev WER (with LM)
|
| 33 |
+
- type: cer
|
| 34 |
value: 14.52
|
| 35 |
+
name: Dev CER (with LM)
|
| 36 |
- task:
|
|
|
|
| 37 |
type: automatic-speech-recognition
|
| 38 |
+
name: Automatic Speech Recognition
|
| 39 |
dataset:
|
| 40 |
name: Common Voice
|
| 41 |
type: mozilla-foundation/common_voice_8_0
|
| 42 |
args: ro
|
| 43 |
metrics:
|
| 44 |
+
- type: wer
|
|
|
|
| 45 |
value: 11.73
|
| 46 |
+
name: Test WER (without LM)
|
| 47 |
+
- type: cer
|
| 48 |
value: 2.93
|
| 49 |
+
name: Test CER (without LM)
|
| 50 |
+
- type: wer
|
| 51 |
value: 7.31
|
| 52 |
+
name: Test WER (with LM)
|
| 53 |
+
- type: cer
|
| 54 |
value: 2.17
|
| 55 |
+
name: Test CER (with LM)
|
| 56 |
- task:
|
|
|
|
| 57 |
type: automatic-speech-recognition
|
| 58 |
+
name: Automatic Speech Recognition
|
| 59 |
dataset:
|
| 60 |
name: Robust Speech Event - Test Data
|
| 61 |
type: speech-recognition-community-v2/eval_data
|
| 62 |
args: ro
|
| 63 |
metrics:
|
| 64 |
+
- type: wer
|
|
|
|
| 65 |
value: 43.23
|
| 66 |
+
name: Test WER
|
| 67 |
---
|
| 68 |
|
| 69 |
You can test this model online with the [**Space for Romanian Speech Recognition**](https://huggingface.co/spaces/gigant/romanian-speech-recognition)
|