Datasets:
Size:
10K - 100K
License:
Update README.md
Browse files
README.md
CHANGED
@@ -69,8 +69,25 @@ Switzerland has four official languages with 3 languages (German, French and Ita
|
|
69 |
## Dataset structure
|
70 |
|
71 |
### Data Instances
|
72 |
-
|
73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
### Data Fields
|
76 |
|
|
|
69 |
## Dataset structure
|
70 |
|
71 |
### Data Instances
|
72 |
+
## Data Instances
|
73 |
|
74 |
+
**Multilingual use of the dataset**
|
75 |
+
|
76 |
+
When the dataset is used in a multilingual setting selecting the the 'all_languages' flag:
|
77 |
+
|
78 |
+
```python
|
79 |
+
from datasets import load_dataset
|
80 |
+
dataset = load_dataset('occlusion_swiss_judgment_prediction', 'all_languages')
|
81 |
+
```
|
82 |
+
|
83 |
+
**Monolingual use of the dataset**
|
84 |
+
|
85 |
+
When the dataset is used in a monolingual setting selecting the ISO language code for one of the 3 supported languages. For example:
|
86 |
+
|
87 |
+
```python
|
88 |
+
from datasets import load_dataset
|
89 |
+
dataset = load_dataset('occlusion_swiss_judgment_prediction', 'de')
|
90 |
+
```
|
91 |
|
92 |
### Data Fields
|
93 |
|