Upload blood.py
Browse files
blood.py
CHANGED
|
@@ -73,7 +73,7 @@ class Blood(datasets.GeneratorBasedBuilder):
|
|
| 73 |
]
|
| 74 |
|
| 75 |
def _generate_examples(self, filepath: str):
|
| 76 |
-
data = pandas.read_csv(filepath)
|
| 77 |
data.columns = _BASE_FEATURE_NAMES
|
| 78 |
|
| 79 |
for row_id, row in data.iterrows():
|
|
|
|
| 73 |
]
|
| 74 |
|
| 75 |
def _generate_examples(self, filepath: str):
|
| 76 |
+
data = pandas.read_csv(filepath, header=None)
|
| 77 |
data.columns = _BASE_FEATURE_NAMES
|
| 78 |
|
| 79 |
for row_id, row in data.iterrows():
|