eustlb HF staff commited on
Commit
d9077dc
β€’
1 Parent(s): cf885e8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -2
README.md CHANGED
@@ -296,8 +296,35 @@ English
296
  }
297
 
298
  ### Data Splits
299
-
300
- We provide the following configurations for the dataset: `cc-by-clean`, `cc-by-dirty`, `cc-by-sa-clean`, `cc-by-sa-dirty`, and `microset`. We don't provide splits for any of the configurations.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
 
302
  ## Dataset Creation
303
 
 
296
  }
297
 
298
  ### Data Splits
299
+ We provide the following configurations for the dataset: `cc-by-clean` (`"clean"`), `cc-by-dirty` (`"dirty"`), `cc-by-sa-clean` (`"clean_sa"`), `cc-by-sa-dirty` (`"dirty_sa"`), and `microset` (`"microset"`).
300
+ We also provide validation and test configurations, which are not only available as standalone configurations but are also included as validation and test splits within each of the above configurations for ease of use.
301
+ Specifically:
302
+ - Setting `config_name="validation"` and `split="validation"` corresponds to the validation split of any of the configurations: `"clean"`, `"clean_sa"`, `"dirty"`, or `"dirty_sa"`.
303
+ - Similarly, setting `config_name="test"` and `split="test"` corresponds to the test split of these configurations.
304
+ ```
305
+ β”œβ”€β”€ clean
306
+ β”‚ β”œβ”€β”€ train
307
+ β”‚ β”œβ”€β”€ validation
308
+ β”‚ └── test
309
+ β”œβ”€β”€ clean_sa
310
+ β”‚ β”œβ”€β”€ train
311
+ β”‚ β”œβ”€β”€ validation
312
+ β”‚ └── test
313
+ β”œβ”€β”€ dirty
314
+ β”‚ β”œβ”€β”€ train
315
+ β”‚ β”œβ”€β”€ validation
316
+ β”‚ └── test
317
+ β”œβ”€β”€ dirty_sa
318
+ β”‚ β”œβ”€β”€ train
319
+ β”‚ β”œβ”€β”€ validation
320
+ β”‚ └── test
321
+ β”œβ”€β”€ microset
322
+ β”‚ └── train
323
+ β”œβ”€β”€ validation
324
+ β”‚ └── validation
325
+ └── test
326
+ └── test
327
+ ```
328
 
329
  ## Dataset Creation
330