Jean-Baptiste commited on
Commit
94a7af9
1 Parent(s): bedb010

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -82
README.md CHANGED
@@ -25,23 +25,8 @@ task_ids:
25
  - [Supported Tasks](#supported-tasks-and-leaderboards)
26
  - [Languages](#languages)
27
  - [Dataset Structure](#dataset-structure)
28
- - [Data Instances](#data-instances)
29
  - [Data Fields](#data-instances)
30
  - [Data Splits](#data-instances)
31
- - [Dataset Creation](#dataset-creation)
32
- - [Curation Rationale](#curation-rationale)
33
- - [Source Data](#source-data)
34
- - [Annotations](#annotations)
35
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
36
- - [Considerations for Using the Data](#considerations-for-using-the-data)
37
- - [Social Impact of Dataset](#social-impact-of-dataset)
38
- - [Discussion of Biases](#discussion-of-biases)
39
- - [Other Known Limitations](#other-known-limitations)
40
- - [Additional Information](#additional-information)
41
- - [Dataset Curators](#dataset-curators)
42
- - [Licensing Information](#licensing-information)
43
- - [Citation Information](#citation-information)
44
- - [Contributions](#contributions)
45
 
46
  ## Dataset Description
47
 
@@ -53,86 +38,38 @@ task_ids:
53
 
54
  ### Dataset Summary
55
 
56
- [More Information Needed]
 
 
 
 
 
57
 
58
  ### Supported Tasks and Leaderboards
59
 
60
- [More Information Needed]
61
 
62
  ### Languages
63
 
64
- [More Information Needed]
65
 
66
  ## Dataset Structure
67
 
68
- ### Data Instances
69
-
70
- [More Information Needed]
71
-
72
  ### Data Fields
73
 
74
- [More Information Needed]
75
-
76
- ### Data Splits
77
-
78
- [More Information Needed]
79
-
80
- ## Dataset Creation
81
-
82
- ### Curation Rationale
83
-
84
- [More Information Needed]
85
-
86
- ### Source Data
87
-
88
- #### Initial Data Collection and Normalization
89
-
90
- [More Information Needed]
91
-
92
- #### Who are the source language producers?
93
-
94
- [More Information Needed]
95
-
96
- ### Annotations
97
-
98
- #### Annotation process
99
-
100
- [More Information Needed]
101
-
102
- #### Who are the annotators?
103
-
104
- [More Information Needed]
105
-
106
- ### Personal and Sensitive Information
107
-
108
- [More Information Needed]
109
-
110
- ## Considerations for Using the Data
111
-
112
- ### Social Impact of Dataset
113
-
114
- [More Information Needed]
115
-
116
- ### Discussion of Biases
117
-
118
- [More Information Needed]
119
-
120
- ### Other Known Limitations
121
-
122
- [More Information Needed]
123
-
124
- ## Additional Information
125
-
126
- ### Dataset Curators
127
-
128
- [More Information Needed]
129
 
130
- ### Licensing Information
 
 
 
131
 
132
- [More Information Needed]
133
 
134
- ### Citation Information
 
135
 
136
- [More Information Needed]
137
 
138
- ### Contributions
 
25
  - [Supported Tasks](#supported-tasks-and-leaderboards)
26
  - [Languages](#languages)
27
  - [Dataset Structure](#dataset-structure)
 
28
  - [Data Fields](#data-instances)
29
  - [Data Splits](#data-instances)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
  ## Dataset Description
32
 
 
38
 
39
  ### Dataset Summary
40
 
41
+ French sentences tagged with 4 entities:
42
+ _PER
43
+ _ORG
44
+ _LOC
45
+ _MISC
46
+
47
 
48
  ### Supported Tasks and Leaderboards
49
 
50
+ NER
51
 
52
  ### Languages
53
 
54
+ French
55
 
56
  ## Dataset Structure
57
 
 
 
 
 
58
  ### Data Fields
59
 
60
+ Features:
61
+ _'id': int
62
+ _'ner_tags': list(int)
63
+ _'tokens': List(string)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
 
65
+ Example:
66
+ {'id': 254569,
67
+ 'tokens': ['Le', 'MEDEF', 'a', 'une', 'organisation', 'sur', 'plusieurs', 'niveaux',':'],
68
+ 'ner_tags': [0, 4, 0, 0, 0, 0, 0, 0, 0]}
69
 
70
+ ### Data Splits
71
 
72
+ 239714 sentences for training
73
+ 26635 sentences for testing
74
 
 
75