librarian-bot commited on
Commit
6588c16
1 Parent(s): ed5da1a

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-large-960h-lv60-self`](https://huggingface.co/facebook/wav2vec2-large-960h-lv60-self) 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 +21 -20
README.md CHANGED
@@ -1,54 +1,55 @@
1
  ---
2
- license: apache-2.0
3
  language: en
4
- datasets:
5
- - Jzuluaga/atcosim_corpus
6
- - Jzuluaga/uwb_atcc
7
  tags:
8
  - audio
9
  - automatic-speech-recognition
10
  - en-atc
11
  - en
12
  - generated_from_trainer
 
 
 
13
  metrics:
14
  - wer
 
15
  model-index:
16
  - name: wav2vec2-large-960h-lv60-self-en-atc-uwb-atcc-and-atcosim
17
  results:
18
  - task:
19
- type: automatic-speech-recognition
20
- name: Speech Recognition
21
  dataset:
22
- type: Jzuluaga/uwb_atcc
23
- name: UWB-ATCC dataset (Air Traffic Control Communications)
24
- config: test
25
- split: test
26
  metrics:
27
  - type: wer
28
  value: 17.48
29
  name: TEST WER
30
- verified: False
31
  - type: wer
32
  value: 14.26
33
  name: TEST WER (+LM)
34
- verified: False
35
  - task:
36
- type: automatic-speech-recognition
37
- name: Speech Recognition
38
  dataset:
39
- type: Jzuluaga/atcosim_corpus
40
- name: ATCOSIM corpus (Air Traffic Control Communications)
41
- config: test
42
- split: test
43
  metrics:
44
  - type: wer
45
  value: 1.85
46
  name: TEST WER
47
- verified: False
48
  - type: wer
49
  value: 1.13
50
  name: TEST WER (+LM)
51
- verified: False
52
  ---
53
 
54
 
 
1
  ---
 
2
  language: en
3
+ license: apache-2.0
 
 
4
  tags:
5
  - audio
6
  - automatic-speech-recognition
7
  - en-atc
8
  - en
9
  - generated_from_trainer
10
+ datasets:
11
+ - Jzuluaga/atcosim_corpus
12
+ - Jzuluaga/uwb_atcc
13
  metrics:
14
  - wer
15
+ base_model: facebook/wav2vec2-large-960h-lv60-self
16
  model-index:
17
  - name: wav2vec2-large-960h-lv60-self-en-atc-uwb-atcc-and-atcosim
18
  results:
19
  - task:
20
+ type: automatic-speech-recognition
21
+ name: Speech Recognition
22
  dataset:
23
+ name: UWB-ATCC dataset (Air Traffic Control Communications)
24
+ type: Jzuluaga/uwb_atcc
25
+ config: test
26
+ split: test
27
  metrics:
28
  - type: wer
29
  value: 17.48
30
  name: TEST WER
31
+ verified: false
32
  - type: wer
33
  value: 14.26
34
  name: TEST WER (+LM)
35
+ verified: false
36
  - task:
37
+ type: automatic-speech-recognition
38
+ name: Speech Recognition
39
  dataset:
40
+ name: ATCOSIM corpus (Air Traffic Control Communications)
41
+ type: Jzuluaga/atcosim_corpus
42
+ config: test
43
+ split: test
44
  metrics:
45
  - type: wer
46
  value: 1.85
47
  name: TEST WER
48
+ verified: false
49
  - type: wer
50
  value: 1.13
51
  name: TEST WER (+LM)
52
+ verified: false
53
  ---
54
 
55