Muhammad Farrukh Mehmood commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Model Card: BERT for Named Entity Recognition (NER)
|
| 2 |
|
| 3 |
## Model Overview
|
| 4 |
|
| 5 |
-
This model, **
|
| 6 |
|
| 7 |
### Model Architecture
|
| 8 |
- **Base Model**: BERT (Bidirectional Encoder Representations from Transformers) with the `bert-base-uncased` architecture.
|
|
@@ -99,6 +112,4 @@ print(result)
|
|
| 99 |
|
| 100 |
- **Transformers Library**: Hugging Face
|
| 101 |
- **Dataset**: CoNLL-2003
|
| 102 |
-
- **Base Model**: `bert-base-uncased` by Google
|
| 103 |
-
|
| 104 |
-
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
datasets:
|
| 4 |
+
- eriktks/conll2003
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
base_model:
|
| 8 |
+
- google-bert/bert-base-chinese
|
| 9 |
+
pipeline_tag: token-classification
|
| 10 |
+
library_name: transformers
|
| 11 |
+
tags:
|
| 12 |
+
- ner
|
| 13 |
+
---
|
| 14 |
# Model Card: BERT for Named Entity Recognition (NER)
|
| 15 |
|
| 16 |
## Model Overview
|
| 17 |
|
| 18 |
+
This model, **bert-conll-ner**, is a fine-tuned version of `bert-base-uncased` trained for the task of Named Entity Recognition (NER) using the CoNLL-2003 dataset. It is designed to identify and classify entities in text, such as **person names (PER)**, **organizations (ORG)**, **locations (LOC)**, and **miscellaneous (MISC)** entities.
|
| 19 |
|
| 20 |
### Model Architecture
|
| 21 |
- **Base Model**: BERT (Bidirectional Encoder Representations from Transformers) with the `bert-base-uncased` architecture.
|
|
|
|
| 112 |
|
| 113 |
- **Transformers Library**: Hugging Face
|
| 114 |
- **Dataset**: CoNLL-2003
|
| 115 |
+
- **Base Model**: `bert-base-uncased` by Google
|
|
|
|
|
|