Datasets:
Upload australian_credit.py
Browse files- australian_credit.py +1 -1
australian_credit.py
CHANGED
@@ -76,7 +76,7 @@ class AustralianCredit(datasets.GeneratorBasedBuilder):
|
|
76 |
]
|
77 |
|
78 |
def _generate_examples(self, filepath: str):
|
79 |
-
data = pandas.read_csv(filepath, header=None)
|
80 |
data = self.preprocess(data)
|
81 |
|
82 |
for row_id, row in data.iterrows():
|
|
|
76 |
]
|
77 |
|
78 |
def _generate_examples(self, filepath: str):
|
79 |
+
data = pandas.read_csv(filepath, header=None, sep=" ")
|
80 |
data = self.preprocess(data)
|
81 |
|
82 |
for row_id, row in data.iterrows():
|