Datasets:
rcds
/

tbrugger commited on
Commit
bfed571
1 Parent(s): af0f917

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -3
README.md CHANGED
@@ -1138,7 +1138,7 @@ size_categories:
1138
 
1139
  ### Dataset Summary
1140
 
1141
- [More Information Needed]
1142
 
1143
  ### Supported Tasks and Leaderboards
1144
 
@@ -1146,10 +1146,22 @@ size_categories:
1146
 
1147
  ### Languages
1148
 
1149
- [More Information Needed]
1150
 
1151
  ## Dataset Structure
1152
 
 
 
 
 
 
 
 
 
 
 
 
 
1153
  ### Data Instances
1154
 
1155
  [More Information Needed]
@@ -1160,7 +1172,7 @@ size_categories:
1160
 
1161
  ### Data Splits
1162
 
1163
- [More Information Needed]
1164
 
1165
  ## Dataset Creation
1166
 
 
1138
 
1139
  ### Dataset Summary
1140
 
1141
+ This is a multilingual dataset containing ~130k annotated sentence boundaries. It contains laws and court decision in 6 different languages.
1142
 
1143
  ### Supported Tasks and Leaderboards
1144
 
 
1146
 
1147
  ### Languages
1148
 
1149
+ English, French, Italian, German, Portuguese, Spanish
1150
 
1151
  ## Dataset Structure
1152
 
1153
+ It is structured in the following format: {language}_{type}_{shard}.jsonl.xz
1154
+
1155
+ type is one of the following:
1156
+ - laws
1157
+ - judgements
1158
+
1159
+ Use the the dataset like this:
1160
+ ```
1161
+ from datasets import load_dataset
1162
+ config = 'fr_laws' #{language}_{type}
1163
+ dataset = load_dataset('rdcs/MultiLegalSBD', config)
1164
+ ```
1165
  ### Data Instances
1166
 
1167
  [More Information Needed]
 
1172
 
1173
  ### Data Splits
1174
 
1175
+ There is only one split available
1176
 
1177
  ## Dataset Creation
1178