Datasets:
Tasks:
Token Classification
Modalities:
Text
Formats:
parquet
Sub-tasks:
named-entity-recognition
Languages:
Tagalog
Size:
1K - 10K
ArXiv:
DOI:
License:
ljvmiranda921
commited on
Commit
·
5cee948
1
Parent(s):
790e34d
Add description in the dataset
Browse files- tlunified-ner.py +7 -2
tlunified-ner.py
CHANGED
@@ -1,11 +1,16 @@
|
|
1 |
-
import os
|
2 |
from typing import List
|
3 |
|
4 |
import datasets
|
5 |
|
6 |
logger = datasets.logging.get_logger(__name__)
|
7 |
|
8 |
-
_DESCRIPTION = """
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
_LICENSE = """GNU GPL v3.0"""
|
10 |
_URL = "https://huggingface.co/ljvmiranda921/tlunified-ner"
|
11 |
_CLASSES = ["O", "B-PER", "I-PER", "B-ORG", "I-ORG", "B-LOC", "I-LOC"]
|
|
|
|
|
1 |
from typing import List
|
2 |
|
3 |
import datasets
|
4 |
|
5 |
logger = datasets.logging.get_logger(__name__)
|
6 |
|
7 |
+
_DESCRIPTION = """
|
8 |
+
This dataset contains the annotated TLUnified corpora from Cruz and Cheng
|
9 |
+
(2021). It consists of a curated sample of around 7,000 documents for the
|
10 |
+
named entity recognition (NER) task. The majority of the corpus are news
|
11 |
+
reports in Tagalog, resembling the domain of the original ConLL 2003. There
|
12 |
+
are three entity types: Person (PER), Organization (ORG), and Location (LOC).
|
13 |
+
"""
|
14 |
_LICENSE = """GNU GPL v3.0"""
|
15 |
_URL = "https://huggingface.co/ljvmiranda921/tlunified-ner"
|
16 |
_CLASSES = ["O", "B-PER", "I-PER", "B-ORG", "I-ORG", "B-LOC", "I-LOC"]
|