mstz commited on
Commit
14d5adf
·
1 Parent(s): 99b399d

Upload madelon.py

Browse files
Files changed (1) hide show
  1. madelon.py +1 -1
madelon.py CHANGED
@@ -58,7 +58,7 @@ class Madelon(datasets.GeneratorBasedBuilder):
58
  ]
59
 
60
  def _generate_examples(self, filepath: str):
61
- data = pandas.read_csv(filepath)
62
  data = self.preprocess(data, config=self.config.name)
63
 
64
  for row_id, row in data.iterrows():
 
58
  ]
59
 
60
  def _generate_examples(self, filepath: str):
61
+ data = pandas.read_csv(filepath, sep=" ")
62
  data = self.preprocess(data, config=self.config.name)
63
 
64
  for row_id, row in data.iterrows():