librarian-bot commited on
Commit
c55ea75
1 Parent(s): 72fa8b5

Librarian Bot: Add base_model information to model

Browse files

This 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!

Files changed (1) hide show
  1. README.md +29 -28
README.md CHANGED
@@ -14,76 +14,77 @@ datasets:
14
  - mozilla-foundation/common_voice_8_0
15
  - collectivat/tv3_parla
16
  - projecte-aina/parlament_parla
 
17
  model-index:
18
  - name: wav2vec2-xls-r-1b-ca-lm
19
  results:
20
  - task:
21
- name: Speech Recognition
22
  type: automatic-speech-recognition
 
23
  dataset:
24
  name: mozilla-foundation/common_voice_8_0 ca
25
  type: mozilla-foundation/common_voice_8_0
26
  args: ca
27
  metrics:
28
- - name: Test WER
29
- type: wer
30
- value: 6.0722669958130644
31
- - name: Test CER
32
- type: cer
33
- value: 1.9180697705166526
34
  - task:
35
- name: Speech Recognition
36
  type: automatic-speech-recognition
 
37
  dataset:
38
  name: projecte-aina/parlament_parla ca
39
  type: projecte-aina/parlament_parla
40
  args: clean
41
  metrics:
42
- - name: Test WER
43
- type: wer
44
  value: 5.139820371024042
45
- - name: Test CER
46
- type: cer
47
- value: 2.0163620128164722
 
48
  - task:
49
- name: Speech Recognition
50
  type: automatic-speech-recognition
 
51
  dataset:
52
  name: collectivat/tv3_parla ca
53
  type: collectivat/tv3_parla
54
  args: ca
55
  metrics:
56
- - name: Test WER
57
- type: wer
58
- value: 11.207991684952073
59
- - name: Test CER
60
- type: cer
61
  value: 7.32119307305963
 
62
  - task:
63
- name: Speech Recognition
64
  type: automatic-speech-recognition
 
65
  dataset:
66
  name: Robust Speech Event - Catalan Dev Data
67
  type: speech-recognition-community-v2/dev_data
68
  args: ca
69
  metrics:
70
- - name: Test WER
71
- type: wer
72
- value: 22.870153690468661
73
- - name: Test CER
74
- type: cer
75
  value: 13.59039190897598
 
76
  - task:
77
- name: Automatic Speech Recognition
78
  type: automatic-speech-recognition
 
79
  dataset:
80
  name: Robust Speech Event - Test Data
81
  type: speech-recognition-community-v2/eval_data
82
  args: ca
83
  metrics:
84
- - name: Test WER
85
- type: wer
86
  value: 15.41
 
87
  ---
88
 
89
  # wav2vec2-xls-r-1b-ca-lm
 
14
  - mozilla-foundation/common_voice_8_0
15
  - collectivat/tv3_parla
16
  - projecte-aina/parlament_parla
17
+ base_model: facebook/wav2vec2-xls-r-300m
18
  model-index:
19
  - name: wav2vec2-xls-r-1b-ca-lm
20
  results:
21
  - task:
 
22
  type: automatic-speech-recognition
23
+ name: Speech Recognition
24
  dataset:
25
  name: mozilla-foundation/common_voice_8_0 ca
26
  type: mozilla-foundation/common_voice_8_0
27
  args: ca
28
  metrics:
29
+ - type: wer
30
+ value: 6.072266995813065
31
+ name: Test WER
32
+ - type: cer
33
+ value: 1.9180697705166525
34
+ name: Test CER
35
  - task:
 
36
  type: automatic-speech-recognition
37
+ name: Speech Recognition
38
  dataset:
39
  name: projecte-aina/parlament_parla ca
40
  type: projecte-aina/parlament_parla
41
  args: clean
42
  metrics:
43
+ - type: wer
 
44
  value: 5.139820371024042
45
+ name: Test WER
46
+ - type: cer
47
+ value: 2.0163620128164723
48
+ name: Test CER
49
  - task:
 
50
  type: automatic-speech-recognition
51
+ name: Speech Recognition
52
  dataset:
53
  name: collectivat/tv3_parla ca
54
  type: collectivat/tv3_parla
55
  args: ca
56
  metrics:
57
+ - type: wer
58
+ value: 11.207991684952074
59
+ name: Test WER
60
+ - type: cer
 
61
  value: 7.32119307305963
62
+ name: Test CER
63
  - task:
 
64
  type: automatic-speech-recognition
65
+ name: Speech Recognition
66
  dataset:
67
  name: Robust Speech Event - Catalan Dev Data
68
  type: speech-recognition-community-v2/dev_data
69
  args: ca
70
  metrics:
71
+ - type: wer
72
+ value: 22.870153690468662
73
+ name: Test WER
74
+ - type: cer
 
75
  value: 13.59039190897598
76
+ name: Test CER
77
  - task:
 
78
  type: automatic-speech-recognition
79
+ name: Automatic Speech Recognition
80
  dataset:
81
  name: Robust Speech Event - Test Data
82
  type: speech-recognition-community-v2/eval_data
83
  args: ca
84
  metrics:
85
+ - type: wer
 
86
  value: 15.41
87
+ name: Test WER
88
  ---
89
 
90
  # wav2vec2-xls-r-1b-ca-lm