Datasets:
Update victorian_authorship.py
Browse files- 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)
|