Librarian Bot: Add base_model information to model
Browse filesThis pull request aims to enrich the metadata of your model by adding [`google/bert_uncased_L-2_H-128_A-2`](https://huggingface.co/google/bert_uncased_L-2_H-128_A-2) 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,36 +1,34 @@
|
|
1 |
---
|
|
|
|
|
2 |
license: apache-2.0
|
3 |
tags:
|
4 |
- generated_from_trainer
|
|
|
|
|
5 |
metrics:
|
6 |
- accuracy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
model-index:
|
8 |
- name: bert_uncased_L-2_H-128_A-2-mlm-multi-emails-hq
|
9 |
results: []
|
10 |
-
datasets:
|
11 |
-
- postbot/multi-emails-hq
|
12 |
-
language:
|
13 |
-
- en
|
14 |
-
pipeline_tag: fill-mask
|
15 |
-
widget:
|
16 |
-
- text: Can you please send me the [MASK] by the end of the day?
|
17 |
-
example_title: end of day
|
18 |
-
- text: >-
|
19 |
-
I hope this email finds you well. I wanted to follow up on our [MASK]
|
20 |
-
yesterday.
|
21 |
-
example_title: follow-up
|
22 |
-
- text: The meeting has been rescheduled to [MASK].
|
23 |
-
example_title: reschedule
|
24 |
-
- text: Please let me know if you need any further [MASK] regarding the project.
|
25 |
-
example_title: further help
|
26 |
-
- text: >-
|
27 |
-
I appreciate your prompt response to my previous email. Can you provide an
|
28 |
-
update on the [MASK] by tomorrow?
|
29 |
-
example_title: provide update
|
30 |
-
- text: Paris is the [MASK] of France.
|
31 |
-
example_title: paris (default)
|
32 |
-
- text: The goal of life is [MASK].
|
33 |
-
example_title: goal of life (default)
|
34 |
---
|
35 |
|
36 |
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
license: apache-2.0
|
5 |
tags:
|
6 |
- generated_from_trainer
|
7 |
+
datasets:
|
8 |
+
- postbot/multi-emails-hq
|
9 |
metrics:
|
10 |
- accuracy
|
11 |
+
pipeline_tag: fill-mask
|
12 |
+
widget:
|
13 |
+
- text: Can you please send me the [MASK] by the end of the day?
|
14 |
+
example_title: end of day
|
15 |
+
- text: I hope this email finds you well. I wanted to follow up on our [MASK] yesterday.
|
16 |
+
example_title: follow-up
|
17 |
+
- text: The meeting has been rescheduled to [MASK].
|
18 |
+
example_title: reschedule
|
19 |
+
- text: Please let me know if you need any further [MASK] regarding the project.
|
20 |
+
example_title: further help
|
21 |
+
- text: I appreciate your prompt response to my previous email. Can you provide an
|
22 |
+
update on the [MASK] by tomorrow?
|
23 |
+
example_title: provide update
|
24 |
+
- text: Paris is the [MASK] of France.
|
25 |
+
example_title: paris (default)
|
26 |
+
- text: The goal of life is [MASK].
|
27 |
+
example_title: goal of life (default)
|
28 |
+
base_model: google/bert_uncased_L-2_H-128_A-2
|
29 |
model-index:
|
30 |
- name: bert_uncased_L-2_H-128_A-2-mlm-multi-emails-hq
|
31 |
results: []
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
---
|
33 |
|
34 |
|