Datasets:
Tasks:
Token Classification
Sub-tasks:
named-entity-recognition
Languages:
Swati
Size:
10K<n<100K
License:
Update files from the datasets library (from 1.4.0)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.4.0
- siswati_ner_corpus.py +4 -2
siswati_ner_corpus.py
CHANGED
@@ -16,12 +16,14 @@
|
|
16 |
|
17 |
from __future__ import absolute_import, division, print_function
|
18 |
|
19 |
-
import logging
|
20 |
import os
|
21 |
|
22 |
import datasets
|
23 |
|
24 |
|
|
|
|
|
|
|
25 |
_CITATION = """\
|
26 |
@inproceedings{siswati_ner_corpus,
|
27 |
author = {B.B. Malangwane and
|
@@ -117,7 +119,7 @@ class SiswatiNerCorpus(datasets.GeneratorBasedBuilder):
|
|
117 |
]
|
118 |
|
119 |
def _generate_examples(self, filepath):
|
120 |
-
|
121 |
with open(filepath, encoding="utf-8") as f:
|
122 |
guid = 0
|
123 |
tokens = []
|
|
|
16 |
|
17 |
from __future__ import absolute_import, division, print_function
|
18 |
|
|
|
19 |
import os
|
20 |
|
21 |
import datasets
|
22 |
|
23 |
|
24 |
+
logger = datasets.logging.get_logger(__name__)
|
25 |
+
|
26 |
+
|
27 |
_CITATION = """\
|
28 |
@inproceedings{siswati_ner_corpus,
|
29 |
author = {B.B. Malangwane and
|
|
|
119 |
]
|
120 |
|
121 |
def _generate_examples(self, filepath):
|
122 |
+
logger.info("⏳ Generating examples from = %s", filepath)
|
123 |
with open(filepath, encoding="utf-8") as f:
|
124 |
guid = 0
|
125 |
tokens = []
|