system HF staff commited on
Commit
55fa4f6
1 Parent(s): 05b128e

Update files from the datasets library (from 1.5.0)

Browse files

Release notes: https://github.com/huggingface/datasets/releases/tag/1.5.0

Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -82,8 +82,6 @@ For more details see https://www.clips.uantwerpen.be/conll2003/ner/ and https://
82
 
83
  ## Dataset Structure
84
 
85
- We show detailed information for up to 5 configurations of the dataset.
86
-
87
  ### Data Instances
88
 
89
  #### conll2003
@@ -93,18 +91,20 @@ We show detailed information for up to 5 configurations of the dataset.
93
  - **Total amount of disk used:** 14.41 MB
94
 
95
  An example of 'train' looks as follows.
96
- ```
97
- This example was too long and was cropped:
98
 
 
99
  {
100
  "chunk_tags": [11, 12, 12, 21, 13, 11, 11, 21, 13, 11, 12, 13, 11, 21, 22, 11, 12, 17, 11, 21, 17, 11, 12, 12, 21, 22, 22, 13, 11, 0],
101
  "id": "0",
102
  "ner_tags": [0, 3, 4, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
103
  "pos_tags": [12, 22, 22, 38, 15, 22, 28, 38, 15, 16, 21, 35, 24, 35, 37, 16, 21, 15, 24, 41, 15, 16, 21, 21, 20, 37, 40, 35, 21, 7],
104
- "tokens": "[\"The\", \"European\", \"Commission\", \"said\", \"on\", \"Thursday\", \"it\", \"disagreed\", \"with\", \"German\", \"advice\", \"to\", \"consumers\", \"t..."
105
  }
106
  ```
107
 
 
 
 
108
  ### Data Fields
109
 
110
  The data fields are the same among all splits.
 
82
 
83
  ## Dataset Structure
84
 
 
 
85
  ### Data Instances
86
 
87
  #### conll2003
 
91
  - **Total amount of disk used:** 14.41 MB
92
 
93
  An example of 'train' looks as follows.
 
 
94
 
95
+ ```
96
  {
97
  "chunk_tags": [11, 12, 12, 21, 13, 11, 11, 21, 13, 11, 12, 13, 11, 21, 22, 11, 12, 17, 11, 21, 17, 11, 12, 12, 21, 22, 22, 13, 11, 0],
98
  "id": "0",
99
  "ner_tags": [0, 3, 4, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
100
  "pos_tags": [12, 22, 22, 38, 15, 22, 28, 38, 15, 16, 21, 35, 24, 35, 37, 16, 21, 15, 24, 41, 15, 16, 21, 21, 20, 37, 40, 35, 21, 7],
101
+ "tokens": ["The", "European", "Commission", "said", "on", "Thursday", "it", "disagreed", "with", "German", "advice", "to", "consumers", "to", "shun", "British", "lamb", "until", "scientists", "determine", "whether", "mad", "cow", "disease", "can", "be", "transmitted", "to", "sheep", "."]
102
  }
103
  ```
104
 
105
+ The original data files have `-DOCSTART-` lines used to separate documents, but these lines are removed here.
106
+ Indeed `-DOCSTART-` is a special line that acts as a boundary between two different documents, and it is filtered out in this implementation.
107
+
108
  ### Data Fields
109
 
110
  The data fields are the same among all splits.