librarian-bot commited on
Commit
e0dff7a
1 Parent(s): 499828f

Librarian Bot: Add base_model information to model

Browse files

This pull request aims to enrich the metadata of your model by adding [`google/electra-small-discriminator`](https://huggingface.co/google/electra-small-discriminator) 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)!

Files changed (1) hide show
  1. README.md +15 -15
README.md CHANGED
@@ -8,12 +8,24 @@ datasets:
8
  - glue
9
  metrics:
10
  - matthews_correlation
 
 
 
 
 
 
 
 
 
 
 
 
11
  model-index:
12
  - name: electra-small-discriminator-CoLA
13
  results:
14
  - task:
15
- name: Text Classification
16
  type: text-classification
 
17
  dataset:
18
  name: GLUE COLA
19
  type: glue
@@ -21,21 +33,9 @@ model-index:
21
  split: validation
22
  args: cola
23
  metrics:
24
- - name: Matthews Correlation
25
- type: matthews_correlation
26
  value: 0.5510400717227824
27
- widget:
28
- - text: The cat sat on the mat.
29
- example_title: Correct grammatical sentence
30
- - text: Me and my friend going to the store.
31
- example_title: Incorrect subject-verb agreement
32
- - text: I ain't got no money.
33
- example_title: Incorrect verb conjugation and double negative
34
- - text: She don't like pizza no more.
35
- example_title: Incorrect verb conjugation and double negative
36
- - text: They is arriving tomorrow.
37
- example_title: Incorrect verb conjugation
38
-
39
  ---
40
 
41
 
 
8
  - glue
9
  metrics:
10
  - matthews_correlation
11
+ widget:
12
+ - text: The cat sat on the mat.
13
+ example_title: Correct grammatical sentence
14
+ - text: Me and my friend going to the store.
15
+ example_title: Incorrect subject-verb agreement
16
+ - text: I ain't got no money.
17
+ example_title: Incorrect verb conjugation and double negative
18
+ - text: She don't like pizza no more.
19
+ example_title: Incorrect verb conjugation and double negative
20
+ - text: They is arriving tomorrow.
21
+ example_title: Incorrect verb conjugation
22
+ base_model: google/electra-small-discriminator
23
  model-index:
24
  - name: electra-small-discriminator-CoLA
25
  results:
26
  - task:
 
27
  type: text-classification
28
+ name: Text Classification
29
  dataset:
30
  name: GLUE COLA
31
  type: glue
 
33
  split: validation
34
  args: cola
35
  metrics:
36
+ - type: matthews_correlation
 
37
  value: 0.5510400717227824
38
+ name: Matthews Correlation
 
 
 
 
 
 
 
 
 
 
 
39
  ---
40
 
41