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