Datasets:
Update files from the datasets library (from 1.6.1)
Browse filesRelease notes: https://github.com/huggingface/datasets/releases/tag/1.6.1
- numeric_fused_head.py +1 -1
numeric_fused_head.py
CHANGED
|
@@ -116,7 +116,7 @@ class NumericFusedHead(datasets.GeneratorBasedBuilder):
|
|
| 116 |
]
|
| 117 |
|
| 118 |
def _generate_examples(self, filepath):
|
| 119 |
-
"""
|
| 120 |
with open(filepath, encoding="utf-8") as f:
|
| 121 |
if self.config.name == "identification":
|
| 122 |
r = csv.DictReader(f, delimiter="\t")
|
|
|
|
| 116 |
]
|
| 117 |
|
| 118 |
def _generate_examples(self, filepath):
|
| 119 |
+
"""Yields examples."""
|
| 120 |
with open(filepath, encoding="utf-8") as f:
|
| 121 |
if self.config.name == "identification":
|
| 122 |
r = csv.DictReader(f, delimiter="\t")
|