mstz commited on
Commit
18c19a1
·
1 Parent(s): 14d5adf

Upload madelon.py

Browse files
Files changed (1) hide show
  1. madelon.py +3 -1
madelon.py CHANGED
@@ -58,7 +58,9 @@ class Madelon(datasets.GeneratorBasedBuilder):
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():
 
58
  ]
59
 
60
  def _generate_examples(self, filepath: str):
61
+ data = pandas.read_csv(filepath)
62
+ print("data.columns")
63
+ print(data.columns)
64
  data = self.preprocess(data, config=self.config.name)
65
 
66
  for row_id, row in data.iterrows():