librarian-bot commited on
Commit
3fe5d32
1 Parent(s): f3997bc

Librarian Bot: Add base_model information to model

Browse files

This pull request aims to enrich the metadata of your model by adding [`distilbert-base-uncased`](https://huggingface.co/distilbert-base-uncased) 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 +14 -12
README.md CHANGED
@@ -7,30 +7,32 @@ datasets:
7
  metrics:
8
  - accuracy
9
  - f1
 
 
 
 
 
 
 
 
 
10
  model-index:
11
  - name: distilbert_reviews_with_language_drift
12
  results:
13
  - task:
14
- name: Text Classification
15
  type: text-classification
 
16
  dataset:
17
  name: ecommerce_reviews_with_language_drift
18
  type: ecommerce_reviews_with_language_drift
19
  args: default
20
  metrics:
21
- - name: Accuracy
22
- type: accuracy
23
  value: 0.818
24
- - name: F1
25
- type: f1
26
  value: 0.8167126877417763
27
- widget:
28
- - text: "Poor quality of fabric and ridiculously tight at chest. It's way too short."
29
- example_title: "Negative"
30
- - text: "One worked perfectly, but the other one has a slight leak and we end up with water underneath the filter."
31
- example_title: "Neutral"
32
- - text: "I liked the price most! Nothing to dislike here!"
33
- example_title: "Positive"
34
  ---
35
 
36
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
 
7
  metrics:
8
  - accuracy
9
  - f1
10
+ widget:
11
+ - text: Poor quality of fabric and ridiculously tight at chest. It's way too short.
12
+ example_title: Negative
13
+ - text: One worked perfectly, but the other one has a slight leak and we end up with
14
+ water underneath the filter.
15
+ example_title: Neutral
16
+ - text: I liked the price most! Nothing to dislike here!
17
+ example_title: Positive
18
+ base_model: distilbert-base-uncased
19
  model-index:
20
  - name: distilbert_reviews_with_language_drift
21
  results:
22
  - task:
 
23
  type: text-classification
24
+ name: Text Classification
25
  dataset:
26
  name: ecommerce_reviews_with_language_drift
27
  type: ecommerce_reviews_with_language_drift
28
  args: default
29
  metrics:
30
+ - type: accuracy
 
31
  value: 0.818
32
+ name: Accuracy
33
+ - type: f1
34
  value: 0.8167126877417763
35
+ name: F1
 
 
 
 
 
 
36
  ---
37
 
38
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You