@@ -753,6 +753,7 @@ def setUpClass(cls):
753753 "field_separator" : "\t " ,
754754 "detect_format" : False ,
755755 "header_line" : True ,
756+ "max_constructed_variables" : 333 ,
756757 "max_pairs" : 1 ,
757758 "max_trees" : 5 ,
758759 "max_text_features" : 300000 ,
@@ -785,6 +786,7 @@ def setUpClass(cls):
785786 "field_separator" : "\t " ,
786787 "detect_format" : False ,
787788 "header_line" : True ,
789+ "max_constructed_variables" : 555 ,
788790 "max_trees" : 0 ,
789791 "max_text_features" : 300000 ,
790792 "text_features" : "ngrams" ,
@@ -813,6 +815,7 @@ def setUpClass(cls):
813815 "field_separator" : "\t " ,
814816 "detect_format" : False ,
815817 "header_line" : True ,
818+ "max_constructed_variables" : 777 ,
816819 "max_pairs" : 1 ,
817820 "max_trees" : 5 ,
818821 "max_text_features" : 300000 ,
@@ -1432,6 +1435,7 @@ def test_parameter_transfer_classifier_fit_from_monotable_dataframe(self):
14321435 schema_type = "monotable" ,
14331436 source_type = "dataframe" ,
14341437 extra_estimator_kwargs = {
1438+ "n_features" : 333 ,
14351439 "n_pairs" : 1 ,
14361440 "n_trees" : 5 ,
14371441 "n_text_features" : 300000 ,
@@ -1456,6 +1460,7 @@ def test_parameter_transfer_classifier_fit_from_monotable_dataframe_with_df_y(
14561460 schema_type = "monotable" ,
14571461 source_type = "dataframe_xy" ,
14581462 extra_estimator_kwargs = {
1463+ "n_features" : 333 ,
14591464 "n_pairs" : 1 ,
14601465 "n_trees" : 5 ,
14611466 "n_text_features" : 300000 ,
@@ -1519,6 +1524,7 @@ def test_parameter_transfer_encoder_fit_from_monotable_dataframe(self):
15191524 schema_type = "monotable" ,
15201525 source_type = "dataframe" ,
15211526 extra_estimator_kwargs = {
1527+ "n_features" : 777 ,
15221528 "n_pairs" : 1 ,
15231529 "n_trees" : 5 ,
15241530 "n_text_features" : 300000 ,
@@ -1546,6 +1552,7 @@ def test_parameter_transfer_encoder_fit_from_monotable_dataframe_with_df_y(
15461552 schema_type = "monotable" ,
15471553 source_type = "dataframe_xy" ,
15481554 extra_estimator_kwargs = {
1555+ "n_features" : 777 ,
15491556 "n_pairs" : 1 ,
15501557 "n_trees" : 5 ,
15511558 "n_text_features" : 300000 ,
@@ -1615,6 +1622,7 @@ def test_parameter_transfer_regressor_fit_from_monotable_dataframe(self):
16151622 schema_type = "monotable" ,
16161623 source_type = "dataframe" ,
16171624 extra_estimator_kwargs = {
1625+ "n_features" : 555 ,
16181626 "n_selected_features" : 1 ,
16191627 "n_evaluated_features" : 3 ,
16201628 "n_text_features" : 300000 ,
@@ -1634,6 +1642,7 @@ def test_parameter_transfer_regressor_fit_from_monotable_dataframe_with_df_y(
16341642 schema_type = "monotable" ,
16351643 source_type = "dataframe_xy" ,
16361644 extra_estimator_kwargs = {
1645+ "n_features" : 555 ,
16371646 "n_selected_features" : 1 ,
16381647 "n_evaluated_features" : 3 ,
16391648 "n_text_features" : 300000 ,
0 commit comments