Datasets:
rcds
/

ninabaum commited on
Commit
3289f4f
·
1 Parent(s): d4a532d

Update occlusion_swiss_judgment_prediction.py

Browse files
occlusion_swiss_judgment_prediction.py CHANGED
@@ -110,6 +110,30 @@ class OcclusionSwissJudgmentPrediction(datasets.GeneratorBasedBuilder):
110
  "filepath": filepath_test_1,
111
  "split": "test_1"
112
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  )
114
  ]
115
 
 
110
  "filepath": filepath_test_1,
111
  "split": "test_1"
112
  },
113
+ ),
114
+ datasets.SplitGenerator(
115
+ name=datasets.Split.TEST,
116
+ # These kwargs will be passed to _generate_examples
117
+ gen_kwargs={
118
+ "filepath": filepath_test_2,
119
+ "split": "test_2"
120
+ },
121
+ ),
122
+ datasets.SplitGenerator(
123
+ name=datasets.Split.TEST,
124
+ # These kwargs will be passed to _generate_examples
125
+ gen_kwargs={
126
+ "filepath": filepath_test_3,
127
+ "split": "test_3"
128
+ },
129
+ ),
130
+ datasets.SplitGenerator(
131
+ name=datasets.Split.TEST,
132
+ # These kwargs will be passed to _generate_examples
133
+ gen_kwargs={
134
+ "filepath": filepath_test_4,
135
+ "split": "test_4"
136
+ },
137
  )
138
  ]
139