Datasets:
Update victorian_authorship.py
Browse files- victorian_authorship.py +1 -1
victorian_authorship.py
CHANGED
@@ -74,7 +74,7 @@ class Victorian(datasets.GeneratorBasedBuilder):
|
|
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():
|
|
|
74 |
|
75 |
def _generate_examples(self, filepath: str):
|
76 |
print(f"reading {filepath}")
|
77 |
+
data = pandas.read_csv(filepath, encoding="latin-1")
|
78 |
print(data.columns)
|
79 |
|
80 |
for row_id, row in data.iterrows():
|