@@ -1057,7 +1057,6 @@ def get_top_features(
10571057 inst_name = f"{ query_result [0 ][0 ].name } " ,
10581058 table_name = f"sample_inference_{ run_id } _features_with_most_impact" ,
10591059 warehouse_id = env_vars ["SQL_WAREHOUSE_ID" ],
1060- limit = 500 ,
10611060 )
10621061
10631062 return rows
@@ -1101,7 +1100,6 @@ def get_support_overview(
11011100 inst_name = f"{ query_result [0 ][0 ].name } " ,
11021101 table_name = f"sample_inference_{ run_id } _support_overview" ,
11031102 warehouse_id = env_vars ["SQL_WAREHOUSE_ID" ],
1104- limit = 500 ,
11051103 )
11061104
11071105 return rows
@@ -1144,7 +1142,6 @@ def get_training_support_overview(
11441142 inst_name = f"{ query_result [0 ][0 ].name } " ,
11451143 table_name = f"sample_training_{ run_id } _support_overview" ,
11461144 warehouse_id = env_vars ["SQL_WAREHOUSE_ID" ],
1147- limit = 500 ,
11481145 )
11491146
11501147 return rows
@@ -1187,7 +1184,6 @@ def get_feature_value(
11871184 inst_name = f"{ query_result [0 ][0 ].name } " ,
11881185 table_name = f"sample_inference_{ run_id } _shap_feature_importance" ,
11891186 warehouse_id = env_vars ["SQL_WAREHOUSE_ID" ],
1190- limit = 500 ,
11911187 )
11921188
11931189 return rows
@@ -1230,7 +1226,6 @@ def get_confusion_matrix(
12301226 inst_name = f"{ query_result [0 ][0 ].name } " ,
12311227 table_name = f"sample_training_{ run_id } _confusion_matrix" ,
12321228 warehouse_id = env_vars ["SQL_WAREHOUSE_ID" ],
1233- limit = 500 ,
12341229 )
12351230
12361231 return rows
@@ -1273,7 +1268,6 @@ def get_roc_curve(
12731268 inst_name = f"{ query_result [0 ][0 ].name } " ,
12741269 table_name = f"sample_training_{ run_id } _roc_curve" ,
12751270 warehouse_id = env_vars ["SQL_WAREHOUSE_ID" ],
1276- limit = 500 ,
12771271 )
12781272
12791273 return rows
0 commit comments