yeajinmin commited on
Commit
6dc7c1d
1 Parent(s): a77ecbc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -0
README.md CHANGED
@@ -24,3 +24,30 @@ configs:
24
  - split: test
25
  path: data/test-*
26
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  - split: test
25
  path: data/test-*
26
  ---
27
+
28
+ ## dataset summary
29
+ NER-News-BIDataset is a dataset for named entity recognition (NER) in news articles, publicly released by the National Institute of Korean Language in 2023.
30
+ The dataset is labeled with named entities specifically for news data.
31
+ It consists of a total of 150,142 sentences, and entities are categorized into 150 labels for recognition.
32
+
33
+ ## Languages
34
+ korean
35
+
36
+ ## Data Structure
37
+ DatasetDict({
38
+ train: Dataset({
39
+ features: ['input_ids', 'attention_mask', 'labels'],
40
+ num_rows: 120113
41
+ })
42
+ test: Dataset({
43
+ features: ['input_ids', 'attention_mask', 'labels'],
44
+ num_rows: 30029
45
+ })
46
+ })
47
+
48
+ ### Data Instances
49
+ The dataset is provided in text format with train/test sets.
50
+ Each instance represents a news article, and if there is an entity in the sentence, it is appropriately tagged with the corresponding label.
51
+ In cases where a single entity is separated into multiple tokens, the first token is labeled as "B-entity" and the subsequent tokens are labeled as "I-entity" until the end.
52
+
53
+ ### Data Fields