librarian-bot commited on
Commit
e99ef3b
1 Parent(s): aa5c7b4

Librarian Bot: Add base_model information to model

Browse files

This 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). Your input is invaluable to us!

Files changed (1) hide show
  1. README.md +10 -9
README.md CHANGED
@@ -11,12 +11,13 @@ metrics:
11
  - recall
12
  - f1
13
  - accuracy
 
14
  model-index:
15
  - name: xlm-roberta-large-finetuned-lener-br
16
  results:
17
  - task:
18
- name: Token Classification
19
  type: token-classification
 
20
  dataset:
21
  name: lener_br
22
  type: lener_br
@@ -24,18 +25,18 @@ model-index:
24
  split: train
25
  args: lener_br
26
  metrics:
27
- - name: Precision
28
- type: precision
29
  value: 0.8762313715584744
30
- - name: Recall
31
- type: recall
32
  value: 0.8966141121736882
33
- - name: F1
34
- type: f1
35
  value: 0.8863055697496168
36
- - name: Accuracy
37
- type: accuracy
38
  value: 0.979500052295785
 
39
  ---
40
 
41
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
 
11
  - recall
12
  - f1
13
  - accuracy
14
+ base_model: xlm-roberta-large
15
  model-index:
16
  - name: xlm-roberta-large-finetuned-lener-br
17
  results:
18
  - task:
 
19
  type: token-classification
20
+ name: Token Classification
21
  dataset:
22
  name: lener_br
23
  type: lener_br
 
25
  split: train
26
  args: lener_br
27
  metrics:
28
+ - type: precision
 
29
  value: 0.8762313715584744
30
+ name: Precision
31
+ - type: recall
32
  value: 0.8966141121736882
33
+ name: Recall
34
+ - type: f1
35
  value: 0.8863055697496168
36
+ name: F1
37
+ - type: accuracy
38
  value: 0.979500052295785
39
+ name: Accuracy
40
  ---
41
 
42
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You