Datasets:
Upload post_operative.py
Browse files- post_operative.py +1 -0
post_operative.py
CHANGED
@@ -138,6 +138,7 @@ class PostOperative(datasets.GeneratorBasedBuilder):
|
|
138 |
|
139 |
data = data.reset_index()
|
140 |
data.drop("index", axis="columns", inplace=True)
|
|
|
141 |
|
142 |
return data[list(features_types_per_config[self.config.name].keys())]
|
143 |
|
|
|
138 |
|
139 |
data = data.reset_index()
|
140 |
data.drop("index", axis="columns", inplace=True)
|
141 |
+
data = data[data.perceived_comfort != "?"]
|
142 |
|
143 |
return data[list(features_types_per_config[self.config.name].keys())]
|
144 |
|