Librarian Bot: Add base_model information to model
Browse filesThis 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!
@@ -2,36 +2,37 @@
|
|
2 |
license: apache-2.0
|
3 |
tags:
|
4 |
- generated_from_trainer
|
|
|
|
|
5 |
metrics:
|
6 |
- accuracy
|
7 |
- f1
|
8 |
- recall
|
9 |
- precision
|
|
|
|
|
|
|
|
|
10 |
model-index:
|
11 |
- name: distilbert-base-uncased-finetuned-emotion-balanced
|
12 |
results:
|
13 |
- task:
|
14 |
-
name: Text Classification
|
15 |
type: text-classification
|
|
|
16 |
dataset:
|
17 |
name: emotion
|
18 |
type: emotion
|
19 |
args: default
|
20 |
metrics:
|
21 |
-
-
|
22 |
-
type: accuracy
|
23 |
value: 0.9521
|
24 |
-
|
25 |
-
|
26 |
value: 0.1216
|
27 |
-
|
28 |
-
|
29 |
value: 0.9520944952964783
|
30 |
-
|
31 |
-
- text: Your actions were very caring.
|
32 |
-
example_title: Test sentence
|
33 |
-
datasets:
|
34 |
-
- AdamCodd/emotion-balanced
|
35 |
---
|
36 |
|
37 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
2 |
license: apache-2.0
|
3 |
tags:
|
4 |
- generated_from_trainer
|
5 |
+
datasets:
|
6 |
+
- AdamCodd/emotion-balanced
|
7 |
metrics:
|
8 |
- accuracy
|
9 |
- f1
|
10 |
- recall
|
11 |
- precision
|
12 |
+
widget:
|
13 |
+
- text: Your actions were very caring.
|
14 |
+
example_title: Test sentence
|
15 |
+
base_model: distilbert-base-uncased
|
16 |
model-index:
|
17 |
- name: distilbert-base-uncased-finetuned-emotion-balanced
|
18 |
results:
|
19 |
- task:
|
|
|
20 |
type: text-classification
|
21 |
+
name: Text Classification
|
22 |
dataset:
|
23 |
name: emotion
|
24 |
type: emotion
|
25 |
args: default
|
26 |
metrics:
|
27 |
+
- type: accuracy
|
|
|
28 |
value: 0.9521
|
29 |
+
name: Accuracy
|
30 |
+
- type: loss
|
31 |
value: 0.1216
|
32 |
+
name: Loss
|
33 |
+
- type: f1
|
34 |
value: 0.9520944952964783
|
35 |
+
name: F1
|
|
|
|
|
|
|
|
|
36 |
---
|
37 |
|
38 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|