Commit 26d59f34 authored by Leo Gao's avatar Leo Gao
Browse files

Fix MNLIMismatched

parent 49cc6f5d
......@@ -120,6 +120,10 @@ class MNLI(HFTask):
class MNLIMismatched(MNLI):
def training_docs(self):
if self.has_validation_docs():
return self.data["train_mismatched"]
def validation_docs(self):
if self.has_validation_docs():
return self.data["validation_mismatched"]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment