File size: 1,343 Bytes
3f0fee1 0392d05 3f0fee1 7f2f8b2 3f0fee1 7f2f8b2 7762c96 3f0fee1 7f2f8b2 7762c96 3f0fee1 7f2f8b2 3f0fee1 c4ff8f9 3f0fee1 c4ff8f9 3f0fee1 0392d05 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
---
task_categories:
- text-generation
language:
- de
- fr
- it
size_categories:
- 100K<n<1M
license: cc-by-sa-4.0
---
# Court View Generation
## Introduction
This dataset contains court views for different languages and court chambers. It includes information such as decision id, language, chamber, file name, url, and the number of tokens in the facts and considerations sections.
Full (L1) contains all the data, Origin (L2) contains only data with complete origin facts & origin considerations.
## Size
### Full (L1)
- All: 387'963
- validation: 47'576
- test: 107'563
- train: 232'824
### Origin (L2)
- All: 276
- validation: 10
- test: 240
- train: 26
## Load datasets
```python
dataset = load_dataset("rcds/court_view_generation")
dataset_origin = load_dataset("rcds/court_view_generation", "origin")
```
## Columns
- decision_id: unique identifier for the decision
- facts: facts section of the decision
- considerations: considerations section of the decision
- origin_facts: facts section of the origin decision
- origin_considerations: considerations section of the origin decision
- law_area: area of law of the decision
- language: language of the decision
- year: year of the decision
- court: court of the decision
- chamber: chamber of the decision
- canton: canton of the decision
- region: region of the decision |