sarahmiller137
commited on
Commit
•
16ac3ab
1
Parent(s):
13bc325
Add model card
Browse files
README.md
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
thumbnail: "url to a thumbnail used in social sharing"
|
5 |
+
tags:
|
6 |
+
- tag1
|
7 |
+
- tag2
|
8 |
+
license: cc
|
9 |
+
datasets:
|
10 |
+
- conll2003
|
11 |
+
---
|
12 |
+
|
13 |
+
## Model information:
|
14 |
+
distilibert-base-uncased model finetuned using the conll2003 dataset from the datasets library.
|
15 |
+
|
16 |
+
## Intended uses & limitations
|
17 |
+
This model is intended to be used for named entity recoginition tasks. The model will identify entities of persons, locations, organisations, and miscellaneous. The model will predict lables based upon the CoNLL-2003 dataset that has the following class labels - ['O', 'B-PER', 'I-PER', 'B-ORG', 'I-ORG', 'B-LOC', 'I-LOC', 'B-MISC', 'I-MISC']
|
18 |
+
|
19 |
+
Note that the dataset and model may not be fully represetative or suitable for all needs it is recommended that the paper for the dataset and base model card should be reviewed before using the model -
|
20 |
+
- [Conll2003](https://aclanthology.org/W03-0419)
|
21 |
+
- [distilbert](https://huggingface.co/distilbert-base-uncased)
|
22 |
+
|
23 |
+
|
24 |
+
## How to use
|
25 |
+
Load the model from the library
|
26 |
+
```python
|
27 |
+
from transformers import AutoTokenizer, AutoModel
|
28 |
+
tokenizer = AutoTokenizer.from_pretrained("sarahmiller137/distilbert-base-uncased-ft-conll2003")
|
29 |
+
model = AutoModel.from_pretrained("sarahmiller137/distilbert-base-uncased-ft-conll2003")
|
30 |
+
```
|
31 |
+
|
32 |
+
|
33 |
+
|