mstz commited on
Commit
7f9f8aa
1 Parent(s): d9a754c

Upload australian_credit.py

Browse files
Files changed (1) hide show
  1. 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():