Librarian Bot: Add base_model information to model
Browse filesThis pull request aims to enrich the metadata of your model by adding [`distilbert-base-multilingual-cased`](https://huggingface.co/distilbert-base-multilingual-cased) 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!
@@ -1,4 +1,14 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
license: apache-2.0
|
3 |
tags:
|
4 |
- generated_from_trainer
|
@@ -11,12 +21,13 @@ metrics:
|
|
11 |
- recall
|
12 |
- f1
|
13 |
- accuracy
|
|
|
14 |
model-index:
|
15 |
- name: distilbert-base-multilingual-cased-mapa_coarse-ner
|
16 |
results:
|
17 |
- task:
|
18 |
-
name: Token Classification
|
19 |
type: token-classification
|
|
|
20 |
dataset:
|
21 |
name: lextreme
|
22 |
type: lextreme
|
@@ -24,28 +35,18 @@ model-index:
|
|
24 |
split: test
|
25 |
args: mapa_coarse
|
26 |
metrics:
|
27 |
-
-
|
28 |
-
type: precision
|
29 |
value: 0.7191116088092572
|
30 |
-
|
31 |
-
|
32 |
value: 0.6452855468095796
|
33 |
-
|
34 |
-
|
35 |
value: 0.6802012534204254
|
36 |
-
|
37 |
-
|
38 |
value: 0.9878756336348935
|
39 |
-
|
40 |
-
- en
|
41 |
-
- fr
|
42 |
-
- it
|
43 |
-
- es
|
44 |
-
- de
|
45 |
-
- nl
|
46 |
-
- pl
|
47 |
-
- ru
|
48 |
-
- pt
|
49 |
---
|
50 |
|
51 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
- fr
|
5 |
+
- it
|
6 |
+
- es
|
7 |
+
- de
|
8 |
+
- nl
|
9 |
+
- pl
|
10 |
+
- ru
|
11 |
+
- pt
|
12 |
license: apache-2.0
|
13 |
tags:
|
14 |
- generated_from_trainer
|
|
|
21 |
- recall
|
22 |
- f1
|
23 |
- accuracy
|
24 |
+
base_model: distilbert-base-multilingual-cased
|
25 |
model-index:
|
26 |
- name: distilbert-base-multilingual-cased-mapa_coarse-ner
|
27 |
results:
|
28 |
- task:
|
|
|
29 |
type: token-classification
|
30 |
+
name: Token Classification
|
31 |
dataset:
|
32 |
name: lextreme
|
33 |
type: lextreme
|
|
|
35 |
split: test
|
36 |
args: mapa_coarse
|
37 |
metrics:
|
38 |
+
- type: precision
|
|
|
39 |
value: 0.7191116088092572
|
40 |
+
name: Precision
|
41 |
+
- type: recall
|
42 |
value: 0.6452855468095796
|
43 |
+
name: Recall
|
44 |
+
- type: f1
|
45 |
value: 0.6802012534204254
|
46 |
+
name: F1
|
47 |
+
- type: accuracy
|
48 |
value: 0.9878756336348935
|
49 |
+
name: Accuracy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
---
|
51 |
|
52 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|