librarian-bot commited on
Commit
097986b
1 Parent(s): 746e591

Librarian Bot: Add base_model information to model

Browse files

This pull request aims to enrich the metadata of your model by adding [`google/bert_uncased_L-2_H-256_A-4`](https://huggingface.co/google/bert_uncased_L-2_H-256_A-4) 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)!

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