Librarian Bot: Add base_model information to model
Browse filesThis pull request aims to enrich the metadata of your model by adding [`xlm-roberta-large`](https://huggingface.co/xlm-roberta-large) 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).
If you want to automatically add `base_model` metadata to more of your modes you can use the [Librarian Bot](https://huggingface.co/librarian-bot) [Metadata Request Service](https://huggingface.co/spaces/librarian-bots/metadata_request_service)!
@@ -1,5 +1,6 @@
|
|
1 |
-
|
2 |
---
|
|
|
|
|
3 |
license: apache-2.0
|
4 |
library_name: span-marker
|
5 |
tags:
|
@@ -7,42 +8,39 @@ tags:
|
|
7 |
- token-classification
|
8 |
- ner
|
9 |
- named-entity-recognition
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
pipeline_tag: token-classification
|
11 |
widget:
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
model-index:
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
name: Recall
|
38 |
-
datasets:
|
39 |
-
- conll2003
|
40 |
-
language:
|
41 |
-
- en
|
42 |
-
metrics:
|
43 |
-
- f1
|
44 |
-
- recall
|
45 |
-
- precision
|
46 |
---
|
47 |
|
48 |
# SpanMarker for Named Entity Recognition
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
license: apache-2.0
|
5 |
library_name: span-marker
|
6 |
tags:
|
|
|
8 |
- token-classification
|
9 |
- ner
|
10 |
- named-entity-recognition
|
11 |
+
datasets:
|
12 |
+
- conll2003
|
13 |
+
metrics:
|
14 |
+
- f1
|
15 |
+
- recall
|
16 |
+
- precision
|
17 |
pipeline_tag: token-classification
|
18 |
widget:
|
19 |
+
- text: Amelia Earhart flew her single engine Lockheed Vega 5B across the Atlantic
|
20 |
+
to Paris.
|
21 |
+
example_title: Amelia Earhart
|
22 |
+
base_model: xlm-roberta-large
|
23 |
model-index:
|
24 |
+
- name: SpanMarker w. xlm-roberta-large on CoNLL03 by Tom Aarsen
|
25 |
+
results:
|
26 |
+
- task:
|
27 |
+
type: token-classification
|
28 |
+
name: Named Entity Recognition
|
29 |
+
dataset:
|
30 |
+
name: CoNLL03
|
31 |
+
type: conll2003
|
32 |
+
split: test
|
33 |
+
revision: 01ad4ad271976c5258b9ed9b910469a806ff3288
|
34 |
+
metrics:
|
35 |
+
- type: f1
|
36 |
+
value: 0.9307
|
37 |
+
name: F1
|
38 |
+
- type: precision
|
39 |
+
value: 0.9264
|
40 |
+
name: Precision
|
41 |
+
- type: recall
|
42 |
+
value: 0.935
|
43 |
+
name: Recall
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
---
|
45 |
|
46 |
# SpanMarker for Named Entity Recognition
|