mstz commited on
Commit
ce74f9c
·
1 Parent(s): dd32fea

Upload blood.py

Browse files
Files changed (1) hide show
  1. blood.py +1 -1
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():