Librarian Bot: Add base_model information to model
Browse filesThis pull request aims to enrich the metadata of your model by adding [`xlm-roberta-base`](https://huggingface.co/xlm-roberta-base) 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,10 +2,11 @@
|
|
2 |
license: mit
|
3 |
tags:
|
4 |
- generated_from_trainer
|
5 |
-
metrics:
|
6 |
-
- f1
|
7 |
datasets:
|
8 |
- wikiann
|
|
|
|
|
|
|
9 |
model-index:
|
10 |
- name: xlm-roberta-base-finetuned-panx-all
|
11 |
results:
|
@@ -18,25 +19,25 @@ model-index:
|
|
18 |
config: en
|
19 |
split: test
|
20 |
metrics:
|
21 |
-
-
|
22 |
-
type: accuracy
|
23 |
value: 0.843189280620875
|
|
|
24 |
verified: true
|
25 |
-
-
|
26 |
-
type: precision
|
27 |
value: 0.8410061269097046
|
|
|
28 |
verified: true
|
29 |
-
-
|
30 |
-
type: recall
|
31 |
value: 0.8568527450211155
|
|
|
32 |
verified: true
|
33 |
-
-
|
34 |
-
type: f1
|
35 |
value: 0.8488554853827908
|
|
|
36 |
verified: true
|
37 |
-
-
|
38 |
-
type: loss
|
39 |
value: 0.6632214784622192
|
|
|
40 |
verified: true
|
41 |
---
|
42 |
|
|
|
2 |
license: mit
|
3 |
tags:
|
4 |
- generated_from_trainer
|
|
|
|
|
5 |
datasets:
|
6 |
- wikiann
|
7 |
+
metrics:
|
8 |
+
- f1
|
9 |
+
base_model: xlm-roberta-base
|
10 |
model-index:
|
11 |
- name: xlm-roberta-base-finetuned-panx-all
|
12 |
results:
|
|
|
19 |
config: en
|
20 |
split: test
|
21 |
metrics:
|
22 |
+
- type: accuracy
|
|
|
23 |
value: 0.843189280620875
|
24 |
+
name: Accuracy
|
25 |
verified: true
|
26 |
+
- type: precision
|
|
|
27 |
value: 0.8410061269097046
|
28 |
+
name: Precision
|
29 |
verified: true
|
30 |
+
- type: recall
|
|
|
31 |
value: 0.8568527450211155
|
32 |
+
name: Recall
|
33 |
verified: true
|
34 |
+
- type: f1
|
|
|
35 |
value: 0.8488554853827908
|
36 |
+
name: F1
|
37 |
verified: true
|
38 |
+
- type: loss
|
|
|
39 |
value: 0.6632214784622192
|
40 |
+
name: loss
|
41 |
verified: true
|
42 |
---
|
43 |
|