ninabaum commited on
Commit
4d116bd
1 Parent(s): d40217c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -1
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
- #### Multilingual use of the dataset
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