Skip to content
This repository was archived by the owner on Apr 15, 2022. It is now read-only.

Commit bda0936

Browse files
committed
case sensitivity on features
1 parent 3cbccd9 commit bda0936

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
setup(
3131
name="splicemachine",
32-
version="2.7.0.dev2",
32+
version="2.8.0",
3333
install_requires=DEPENDENCIES,
3434
extras_require={
3535
'notebook': NOTEBOOK_DEPS,

splicemachine/features/utils/drift_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ def build_feature_drift_plot(features, training_set_df, model_table_df):
7777
:param model_table_df: the dataframe with the content of the model table containing all input features
7878
:return: None
7979
"""
80-
final_features = [f for f in features if f in model_table_df.columns]
80+
upper_features = [f.upper() for f in features]
81+
final_features = [f for f in upper_features if f in model_table_df.columns]
8182
# prep plot area
8283
n_bins = 15
8384
num_features = len(final_features)

0 commit comments

Comments
 (0)