Commit ff3adfe2 authored by Leo Gao's avatar Leo Gao
Browse files

Undo MNLI changes

parent 70e30a52
......@@ -76,10 +76,6 @@ class MNLI(HFTask):
def has_test_docs(self):
return True
def training_docs(self):
if self.has_validation_docs():
return self.data["train_matched"]
def validation_docs(self):
if self.has_validation_docs():
return self.data["validation_matched"]
......@@ -120,10 +116,6 @@ 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