Datasets:
Tasks:
Token Classification
Modalities:
Text
Formats:
parquet
Sub-tasks:
named-entity-recognition
Languages:
Polish
Size:
10K - 100K
License:
Update files from the datasets library (from 1.8.0)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.8.0
- dataset_infos.json +1 -1
- nkjp-ner.py +2 -0
dataset_infos.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"default": {"description": "The NKJP-NER is based on a human-annotated part of National Corpus of Polish (NKJP). We extracted sentences with named entities of exactly one type. The task is to predict the type of the named entity.\n", "citation": "@book{przepiorkowski2012narodowy,\ntitle={Narodowy korpus
|
|
|
1 |
+
{"default": {"description": "The NKJP-NER is based on a human-annotated part of National Corpus of Polish (NKJP). We extracted sentences with named entities of exactly one type. The task is to predict the type of the named entity.\n", "citation": "@book{przepiorkowski2012narodowy,\ntitle={Narodowy korpus jezyka polskiego},\nauthor={Przepi{'o}rkowski, Adam},\nyear={2012},\npublisher={Naukowe PWN}\n}\n", "homepage": "https://klejbenchmark.com/tasks/", "license": "GNU GPL v.3", "features": {"sentence": {"dtype": "string", "id": null, "_type": "Value"}, "target": {"num_classes": 6, "names": ["geogName", "noEntity", "orgName", "persName", "placeName", "time"], "names_file": null, "id": null, "_type": "ClassLabel"}}, "post_processed": null, "supervised_keys": null, "task_templates": [{"task": "text-classification", "text_column": "sentence", "label_column": "target", "labels": ["geogName", "noEntity", "orgName", "persName", "placeName", "time"]}], "builder_name": "nkjp_ner", "config_name": "default", "version": {"version_str": "1.1.0", "description": null, "major": 1, "minor": 1, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 1612125, "num_examples": 15794, "dataset_name": "nkjp_ner"}, "test": {"name": "test", "num_bytes": 221092, "num_examples": 2058, "dataset_name": "nkjp_ner"}, "validation": {"name": "validation", "num_bytes": 196652, "num_examples": 1941, "dataset_name": "nkjp_ner"}}, "download_checksums": {"https://klejbenchmark.com/static/data/klej_nkjp-ner.zip": {"num_bytes": 821629, "checksum": "4b4573219731b198d43958e347dcd3e83654c89daa980c88de3bec8d628044ac"}}, "download_size": 821629, "post_processing_size": null, "dataset_size": 2029869, "size_in_bytes": 2851498}}
|
nkjp-ner.py
CHANGED
@@ -19,6 +19,7 @@ import csv
|
|
19 |
import os
|
20 |
|
21 |
import datasets
|
|
|
22 |
|
23 |
|
24 |
_CITATION = """\
|
@@ -68,6 +69,7 @@ class NkjpNer(datasets.GeneratorBasedBuilder):
|
|
68 |
homepage=_HOMEPAGE,
|
69 |
license=_LICENSE,
|
70 |
citation=_CITATION,
|
|
|
71 |
)
|
72 |
|
73 |
def _split_generators(self, dl_manager):
|
|
|
19 |
import os
|
20 |
|
21 |
import datasets
|
22 |
+
from datasets.tasks import TextClassification
|
23 |
|
24 |
|
25 |
_CITATION = """\
|
|
|
69 |
homepage=_HOMEPAGE,
|
70 |
license=_LICENSE,
|
71 |
citation=_CITATION,
|
72 |
+
task_templates=[TextClassification(text_column="sentence", label_column="target")],
|
73 |
)
|
74 |
|
75 |
def _split_generators(self, dl_manager):
|