Librarian Bot: Add base_model information to model
Browse filesThis pull request aims to enrich the metadata of your model by adding [`bert-base-uncased`](https://huggingface.co/bert-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!
@@ -1,4 +1,6 @@
|
|
1 |
---
|
|
|
|
|
2 |
license: apache-2.0
|
3 |
tags:
|
4 |
- generated_from_trainer
|
@@ -9,12 +11,20 @@ metrics:
|
|
9 |
- recall
|
10 |
- f1
|
11 |
- accuracy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
model-index:
|
13 |
- name: bert-base-uncased-de-ner
|
14 |
results:
|
15 |
- task:
|
16 |
-
name: Token Classification
|
17 |
type: token-classification
|
|
|
18 |
dataset:
|
19 |
name: germeval_14
|
20 |
type: germeval_14
|
@@ -22,27 +32,18 @@ model-index:
|
|
22 |
split: test
|
23 |
args: germeval_14
|
24 |
metrics:
|
25 |
-
-
|
26 |
-
type: precision
|
27 |
value: 0.8109431552054502
|
28 |
-
|
29 |
-
|
30 |
value: 0.771990271584921
|
31 |
-
|
32 |
-
|
33 |
value: 0.7909874364032811
|
34 |
-
|
35 |
-
|
36 |
value: 0.9786213727432309
|
37 |
-
|
38 |
-
- de
|
39 |
-
widget:
|
40 |
-
- text: Mein Name ist Wolfgang und ich lebe in Berlin
|
41 |
-
example_title: Example 1
|
42 |
-
- text: Mein Name ist Sarah und ich lebe in London
|
43 |
-
example_title: Example 2
|
44 |
-
- text: Mein Name ist Clara und ich lebe in Berkeley, California.
|
45 |
-
example_title: Example 3
|
46 |
---
|
47 |
|
48 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- de
|
4 |
license: apache-2.0
|
5 |
tags:
|
6 |
- generated_from_trainer
|
|
|
11 |
- recall
|
12 |
- f1
|
13 |
- accuracy
|
14 |
+
widget:
|
15 |
+
- text: Mein Name ist Wolfgang und ich lebe in Berlin
|
16 |
+
example_title: Example 1
|
17 |
+
- text: Mein Name ist Sarah und ich lebe in London
|
18 |
+
example_title: Example 2
|
19 |
+
- text: Mein Name ist Clara und ich lebe in Berkeley, California.
|
20 |
+
example_title: Example 3
|
21 |
+
base_model: bert-base-uncased
|
22 |
model-index:
|
23 |
- name: bert-base-uncased-de-ner
|
24 |
results:
|
25 |
- task:
|
|
|
26 |
type: token-classification
|
27 |
+
name: Token Classification
|
28 |
dataset:
|
29 |
name: germeval_14
|
30 |
type: germeval_14
|
|
|
32 |
split: test
|
33 |
args: germeval_14
|
34 |
metrics:
|
35 |
+
- type: precision
|
|
|
36 |
value: 0.8109431552054502
|
37 |
+
name: Precision
|
38 |
+
- type: recall
|
39 |
value: 0.771990271584921
|
40 |
+
name: Recall
|
41 |
+
- type: f1
|
42 |
value: 0.7909874364032811
|
43 |
+
name: F1
|
44 |
+
- type: accuracy
|
45 |
value: 0.9786213727432309
|
46 |
+
name: Accuracy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
---
|
48 |
|
49 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|