lhoestq HF staff commited on
Commit
7f4068f
1 Parent(s): 8dc8184

add dataset_info in dataset metadata

Browse files
Files changed (1) hide show
  1. README.md +59 -1
README.md CHANGED
@@ -20,6 +20,64 @@ task_ids:
20
  - named-entity-recognition
21
  paperswithcode_id: ronec
22
  pretty_name: RONEC
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  ---
24
 
25
  # Dataset Card for RONEC
@@ -208,4 +266,4 @@ MIT License
208
 
209
  ### Contributions
210
 
211
- Thanks to [@iliemihai](https://github.com/iliemihai) for adding v1.0 of the dataset.
 
20
  - named-entity-recognition
21
  paperswithcode_id: ronec
22
  pretty_name: RONEC
23
+ dataset_info:
24
+ features:
25
+ - name: id
26
+ dtype: int32
27
+ - name: tokens
28
+ sequence: string
29
+ - name: ner_ids
30
+ sequence: int32
31
+ - name: space_after
32
+ sequence: bool
33
+ - name: ner_tags
34
+ sequence:
35
+ class_label:
36
+ names:
37
+ 0: O
38
+ 1: B-PERSON
39
+ 2: I-PERSON
40
+ 3: B-ORG
41
+ 4: I-ORG
42
+ 5: B-GPE
43
+ 6: I-GPE
44
+ 7: B-LOC
45
+ 8: I-LOC
46
+ 9: B-NAT_REL_POL
47
+ 10: I-NAT_REL_POL
48
+ 11: B-EVENT
49
+ 12: I-EVENT
50
+ 13: B-LANGUAGE
51
+ 14: I-LANGUAGE
52
+ 15: B-WORK_OF_ART
53
+ 16: I-WORK_OF_ART
54
+ 17: B-DATETIME
55
+ 18: I-DATETIME
56
+ 19: B-PERIOD
57
+ 20: I-PERIOD
58
+ 21: B-MONEY
59
+ 22: I-MONEY
60
+ 23: B-QUANTITY
61
+ 24: I-QUANTITY
62
+ 25: B-NUMERIC
63
+ 26: I-NUMERIC
64
+ 27: B-ORDINAL
65
+ 28: I-ORDINAL
66
+ 29: B-FACILITY
67
+ 30: I-FACILITY
68
+ config_name: ronec
69
+ splits:
70
+ - name: test
71
+ num_bytes: 1902224
72
+ num_examples: 2000
73
+ - name: train
74
+ num_bytes: 8701577
75
+ num_examples: 9000
76
+ - name: validation
77
+ num_bytes: 1266490
78
+ num_examples: 1330
79
+ download_size: 14675943
80
+ dataset_size: 11870291
81
  ---
82
 
83
  # Dataset Card for RONEC
 
266
 
267
  ### Contributions
268
 
269
+ Thanks to [@iliemihai](https://github.com/iliemihai) for adding v1.0 of the dataset.