Datasets:
Upload nbfi.py
Browse files
nbfi.py
CHANGED
@@ -237,9 +237,13 @@ class NBFI(datasets.GeneratorBasedBuilder):
|
|
237 |
data = data[data.Registration_Days != "x"]
|
238 |
data = data[data.ID_Days != "x"]
|
239 |
|
|
|
240 |
print(len(data.columns))
|
|
|
241 |
print(len(_BASE_FEATURE_NAMES))
|
|
|
242 |
print(len(features_types_per_config[config].keys()))
|
|
|
243 |
for f, ft, fb in zip(data.columns, features_types_per_config[config].keys(), _BASE_FEATURE_NAMES):
|
244 |
print(f, ft, fb)
|
245 |
|
|
|
237 |
data = data[data.Registration_Days != "x"]
|
238 |
data = data[data.ID_Days != "x"]
|
239 |
|
240 |
+
print("len(data.columns)")
|
241 |
print(len(data.columns))
|
242 |
+
print("len(_BASE_FEATURE_NAMES)")
|
243 |
print(len(_BASE_FEATURE_NAMES))
|
244 |
+
print("len(features_types_per_config[config].keys())")
|
245 |
print(len(features_types_per_config[config].keys()))
|
246 |
+
print("data.columns, features_types_per_config, _BASE_FEATURE_NAMES")
|
247 |
for f, ft, fb in zip(data.columns, features_types_per_config[config].keys(), _BASE_FEATURE_NAMES):
|
248 |
print(f, ft, fb)
|
249 |
|