librarian-bot commited on
Commit
9a5a91d
1 Parent(s): 3485d56

Librarian Bot: Add base_model information to model

Browse files

This pull request aims to enrich the metadata of your model by adding [`microsoft/deberta-v3-xsmall`](https://huggingface.co/microsoft/deberta-v3-xsmall) 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 was requested via the [Librarian Bot](https://huggingface.co/librarian-bot) [metadata request service](https://huggingface.co/spaces/librarian-bots/metadata_request_service) by request of [davanstrien](https://huggingface.co/davanstrien)

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: deberta-v3-xsmall-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.5894856058137782
27
-
28
- widget:
29
- - text: 'The cat sat on the mat.'
30
- example_title: Correct grammatical sentence
31
- - text: 'Me and my friend going to the store.'
32
- example_title: Incorrect subject-verb agreement
33
- - text: 'I ain''t got no money.'
34
- example_title: Incorrect verb conjugation and double negative
35
- - text: 'She don''t like pizza no more.'
36
- example_title: Incorrect verb conjugation and double negative
37
- - text: 'They is arriving tomorrow.'
38
- example_title: Incorrect verb conjugation
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: microsoft/deberta-v3-xsmall
23
  model-index:
24
  - name: deberta-v3-xsmall-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.5894856058137782
38
+ name: Matthews Correlation
 
 
 
 
 
 
 
 
 
 
 
39
  ---
40
 
41