Update files from the datasets library (from 1.6.1)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.6.1
paws.py
CHANGED
@@ -183,7 +183,7 @@ class PAWS(datasets.GeneratorBasedBuilder):
|
|
183 |
raise NotImplementedError("{} does not exist".format(self.config.name))
|
184 |
|
185 |
def _generate_examples(self, filepath, split):
|
186 |
-
"""
|
187 |
|
188 |
with open(filepath, encoding="utf-8") as f:
|
189 |
data = csv.DictReader(f, delimiter="\t")
|
|
|
183 |
raise NotImplementedError("{} does not exist".format(self.config.name))
|
184 |
|
185 |
def _generate_examples(self, filepath, split):
|
186 |
+
"""Yields examples."""
|
187 |
|
188 |
with open(filepath, encoding="utf-8") as f:
|
189 |
data = csv.DictReader(f, delimiter="\t")
|