Librarian Bot: Add base_model information to model
Browse filesThis pull request aims to enrich the metadata of your model by adding [`bert-base-uncased`](https://huggingface.co/bert-base-uncased) 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!
@@ -1,8 +1,6 @@
|
|
1 |
---
|
2 |
-
license: apache-2.0
|
3 |
language: en
|
4 |
-
|
5 |
-
- Jzuluaga/atco2_corpus_1h
|
6 |
tags:
|
7 |
- text
|
8 |
- token-classification
|
@@ -11,41 +9,47 @@ tags:
|
|
11 |
- generated_from_trainer
|
12 |
- bert
|
13 |
- ner-for-atc
|
|
|
|
|
14 |
metrics:
|
15 |
- Precision
|
16 |
- Recall
|
17 |
- Accuracy
|
18 |
- F1
|
19 |
widget:
|
20 |
-
- text:
|
21 |
-
|
22 |
-
- text:
|
23 |
-
|
24 |
-
- text:
|
|
|
|
|
|
|
|
|
25 |
model-index:
|
26 |
- name: bert-base-ner-atc-en-atco2-1h
|
27 |
results:
|
28 |
- task:
|
29 |
-
|
30 |
-
|
31 |
dataset:
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
metrics:
|
37 |
- type: F1
|
38 |
value: 0.94
|
39 |
name: TEST F1 (callsign)
|
40 |
-
verified:
|
41 |
- type: F1
|
42 |
value: 0.74
|
43 |
name: TEST F1 (command)
|
44 |
-
verified:
|
45 |
- type: F1
|
46 |
value: 0.81
|
47 |
name: TEST F1 (value)
|
48 |
-
verified:
|
49 |
---
|
50 |
|
51 |
# bert-base-ner-atc-en-atco2-1h
|
|
|
1 |
---
|
|
|
2 |
language: en
|
3 |
+
license: apache-2.0
|
|
|
4 |
tags:
|
5 |
- text
|
6 |
- token-classification
|
|
|
9 |
- generated_from_trainer
|
10 |
- bert
|
11 |
- ner-for-atc
|
12 |
+
datasets:
|
13 |
+
- Jzuluaga/atco2_corpus_1h
|
14 |
metrics:
|
15 |
- Precision
|
16 |
- Recall
|
17 |
- Accuracy
|
18 |
- F1
|
19 |
widget:
|
20 |
+
- text: csa two nine six startup approved mike current qnh one zero one eight time
|
21 |
+
check one seven
|
22 |
+
- text: swiss four eight seven november runway three one cleared for takeoff wind
|
23 |
+
one three zero degrees seven knots
|
24 |
+
- text: lufthansa five yankee victor runway one three clear to land wind zero seven
|
25 |
+
zero degrees
|
26 |
+
- text: austrian seven one zulu hello to you reduce one six zero knots
|
27 |
+
- text: sky travel one nine two approaching holding point three one ready for departure
|
28 |
+
base_model: bert-base-uncased
|
29 |
model-index:
|
30 |
- name: bert-base-ner-atc-en-atco2-1h
|
31 |
results:
|
32 |
- task:
|
33 |
+
type: token-classification
|
34 |
+
name: ner
|
35 |
dataset:
|
36 |
+
name: ATCO2 corpus (Air Traffic Control Communications)
|
37 |
+
type: Jzuluaga/atco2_corpus_1h
|
38 |
+
config: test
|
39 |
+
split: test
|
40 |
metrics:
|
41 |
- type: F1
|
42 |
value: 0.94
|
43 |
name: TEST F1 (callsign)
|
44 |
+
verified: false
|
45 |
- type: F1
|
46 |
value: 0.74
|
47 |
name: TEST F1 (command)
|
48 |
+
verified: false
|
49 |
- type: F1
|
50 |
value: 0.81
|
51 |
name: TEST F1 (value)
|
52 |
+
verified: false
|
53 |
---
|
54 |
|
55 |
# bert-base-ner-atc-en-atco2-1h
|