mstz commited on
Commit
3c0e657
1 Parent(s): 36c60d4

Update victorian_authorship.py

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