librarian-bot commited on
Commit
0dfb46a
1 Parent(s): 4bdb04c

Librarian Bot: Add base_model information to model

Browse files

This pull request aims to enrich the metadata of your model by adding [`bert-base-cased`](https://huggingface.co/bert-base-cased) 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 was requested via the [Librarian Bot](https://huggingface.co/librarian-bot) [metadata request service](https://huggingface.co/spaces/librarian-bots/metadata_request_service) by request of [davanstrien](https://huggingface.co/davanstrien)

Files changed (1) hide show
  1. README.md +7 -6
README.md CHANGED
@@ -1,21 +1,22 @@
1
  ---
 
 
2
  license: apache-2.0
 
3
  tags:
4
  - generated_from_keras_callback
5
  - named entity recognition
6
  - bert-base finetuned
7
  - umair akram
8
- model-index:
9
- - name: MUmairAB/bert-ner
10
- results: []
11
  datasets:
12
  - conll2003
13
- language:
14
- - en
15
  metrics:
16
  - seqeval
17
- library_name: transformers
18
  pipeline_tag: token-classification
 
 
 
 
19
  ---
20
 
21
 
 
1
  ---
2
+ language:
3
+ - en
4
  license: apache-2.0
5
+ library_name: transformers
6
  tags:
7
  - generated_from_keras_callback
8
  - named entity recognition
9
  - bert-base finetuned
10
  - umair akram
 
 
 
11
  datasets:
12
  - conll2003
 
 
13
  metrics:
14
  - seqeval
 
15
  pipeline_tag: token-classification
16
+ base_model: bert-base-cased
17
+ model-index:
18
+ - name: MUmairAB/bert-ner
19
+ results: []
20
  ---
21
 
22