Datasets:
Upload madelon.py
Browse files- madelon.py +3 -0
madelon.py
CHANGED
@@ -62,6 +62,9 @@ class Madelon(datasets.GeneratorBasedBuilder):
|
|
62 |
print(f"loading {filepath}")
|
63 |
data = self.preprocess(data, config=self.config.name)
|
64 |
print("\n\n\npreprocessed\n\n\n")
|
|
|
|
|
|
|
65 |
|
66 |
for row_id, row in data.iterrows():
|
67 |
data_row = dict(row)
|
|
|
62 |
print(f"loading {filepath}")
|
63 |
data = self.preprocess(data, config=self.config.name)
|
64 |
print("\n\n\npreprocessed\n\n\n")
|
65 |
+
print(data.head())
|
66 |
+
print(data.columns)
|
67 |
+
print(data["500"])
|
68 |
|
69 |
for row_id, row in data.iterrows():
|
70 |
data_row = dict(row)
|