Update README.md
Browse files
README.md
CHANGED
@@ -19,7 +19,7 @@ should probably proofread and complete it, then remove this comment. -->
|
|
19 |
|
20 |
# bert-ner-turkish-cased
|
21 |
|
22 |
-
This model is a fine-tuned version of [dbmdz/bert-base-turkish-cased](https://huggingface.co/dbmdz/bert-base-turkish-cased) on
|
23 |
It achieves the following results on the evaluation set:
|
24 |
- Loss: 0.0987
|
25 |
- Precision: 0.9112
|
@@ -29,7 +29,14 @@ It achieves the following results on the evaluation set:
|
|
29 |
|
30 |
## Model description
|
31 |
|
32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
## Intended uses & limitations
|
35 |
|
|
|
19 |
|
20 |
# bert-ner-turkish-cased
|
21 |
|
22 |
+
This model is a fine-tuned version of [dbmdz/bert-base-turkish-cased](https://huggingface.co/dbmdz/bert-base-turkish-cased) on the a custom Turkish NER dataset.
|
23 |
It achieves the following results on the evaluation set:
|
24 |
- Loss: 0.0987
|
25 |
- Precision: 0.9112
|
|
|
29 |
|
30 |
## Model description
|
31 |
|
32 |
+
This model identifies named entities in Turkish text:
|
33 |
+
|
34 |
+
```python
|
35 |
+
LABELS = [
|
36 |
+
"O", "B-PER", "I-PER", "B-LOC", "I-LOC", "B-ORG", "I-ORG",
|
37 |
+
"B-DATE", "I-DATE", "B-MONEY", "I-MONEY", "B-MISC", "I-MISC"
|
38 |
+
]
|
39 |
+
```
|
40 |
|
41 |
## Intended uses & limitations
|
42 |
|