Update superlim-2.py
Browse files- superlim-2.py +2 -2
superlim-2.py
CHANGED
@@ -439,14 +439,14 @@ class SuperLim(datasets.GeneratorBasedBuilder):
|
|
439 |
"challenge_end":row["challenge_end"],
|
440 |
"response_begin":row["response_begin"],
|
441 |
"response_end":row["response_end"],
|
442 |
-
"label":row["label"]
|
443 |
}
|
444 |
|
445 |
elif self.config.name == "argumentation_sent":
|
446 |
yield key, {
|
447 |
"topic": row["topic"],
|
448 |
"label": row["label"],
|
449 |
-
"sentence" : row["sentence"]
|
450 |
}
|
451 |
|
452 |
else:
|
|
|
439 |
"challenge_end":row["challenge_end"],
|
440 |
"response_begin":row["response_begin"],
|
441 |
"response_end":row["response_end"],
|
442 |
+
"label":row["label"],
|
443 |
}
|
444 |
|
445 |
elif self.config.name == "argumentation_sent":
|
446 |
yield key, {
|
447 |
"topic": row["topic"],
|
448 |
"label": row["label"],
|
449 |
+
"sentence" : row["sentence"],
|
450 |
}
|
451 |
|
452 |
else:
|