mstz commited on
Commit
36c60d4
·
1 Parent(s): 603ba62

Update victorian_authorship.py

Browse files
Files changed (1) hide show
  1. victorian_authorship.py +1 -2
victorian_authorship.py CHANGED
@@ -73,8 +73,7 @@ class Victorian(datasets.GeneratorBasedBuilder):
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():
80
  data_row = dict(row)
 
73
  ]
74
 
75
  def _generate_examples(self, filepath: str):
76
+ data = pandas.read_csv(filepath)
 
77
 
78
  for row_id, row in data.iterrows():
79
  data_row = dict(row)