Datasets:
Upload hypo.py
Browse files
hypo.py
CHANGED
@@ -131,6 +131,7 @@ class Hypo(datasets.GeneratorBasedBuilder):
|
|
131 |
yield row_id, data_row
|
132 |
|
133 |
def preprocess(self, data: pandas.DataFrame) -> pandas.DataFrame:
|
|
|
134 |
data.drop("id", axis="columns", inplace=True)
|
135 |
data.drop("TBG", axis="columns", inplace=True)
|
136 |
|
|
|
131 |
yield row_id, data_row
|
132 |
|
133 |
def preprocess(self, data: pandas.DataFrame) -> pandas.DataFrame:
|
134 |
+
print(data.columns)
|
135 |
data.drop("id", axis="columns", inplace=True)
|
136 |
data.drop("TBG", axis="columns", inplace=True)
|
137 |
|