MCPcopy Create free account

hub / github.com/automl/auto-sklearn / functions

Functions1,916 in github.com/automl/auto-sklearn

Functiontest_early_stopping
Expects ------- * Should early after fitting 2 models
test/test_automl/test_early_stopping.py:13
Functiontest_ensemble_default_resolves
()
test/test_estimators/test_estimators.py:1728
Functiontest_equality
Expects ------- * Two runs with the same id's should be considered equal * Otherwise, they should be considered different
test/test_ensemble_builder/test_run.py:134
Methodtest_eval_cv
(self)
test/test_evaluation/test_train_evaluator.py:3291
Methodtest_eval_cv_all_loss_functions
(self)
test/test_evaluation/test_train_evaluator.py:3316
Methodtest_eval_holdout
(self)
test/test_evaluation/test_train_evaluator.py:2885
Methodtest_eval_holdout_all_loss_functions
(self)
test/test_evaluation/test_train_evaluator.py:2940
Methodtest_eval_holdout_budget_iterations
(self)
test/test_evaluation/test_train_evaluator.py:3048
Methodtest_eval_holdout_budget_iterations_converged
(self)
test/test_evaluation/test_train_evaluator.py:3138
Methodtest_eval_holdout_budget_iterations_converged_multi_objective
(self)
test/test_evaluation/test_train_evaluator.py:3107
Methodtest_eval_holdout_budget_iterations_multi_objective
(self)
test/test_evaluation/test_train_evaluator.py:3075
Methodtest_eval_holdout_budget_mixed_iterations
(self)
test/test_evaluation/test_train_evaluator.py:3233
Methodtest_eval_holdout_budget_mixed_subsample
(self)
test/test_evaluation/test_train_evaluator.py:3259
Methodtest_eval_holdout_budget_subsample
(self)
test/test_evaluation/test_train_evaluator.py:3174
Methodtest_eval_holdout_budget_subsample_multi_objective
(self)
test/test_evaluation/test_train_evaluator.py:3201
Methodtest_eval_holdout_iterative_fit_no_timeout
(self)
test/test_evaluation/test_train_evaluator.py:2993
Methodtest_eval_holdout_iterative_fit_no_timeout_multi_objective
(self)
test/test_evaluation/test_train_evaluator.py:3018
Methodtest_eval_holdout_multi_objective
(self)
test/test_evaluation/test_train_evaluator.py:2910
Methodtest_eval_partial_cv
(self)
test/test_evaluation/test_train_evaluator.py:3380
Methodtest_eval_partial_cv_multi_objective
(self)
test/test_evaluation/test_train_evaluator.py:3413
Methodtest_eval_test
(self)
test/test_evaluation/test_test_evaluator.py:121
Methodtest_eval_test_all_loss_functions
(self)
test/test_evaluation/test_test_evaluator.py:172
Methodtest_eval_test_multi_objective
(self)
test/test_evaluation/test_test_evaluator.py:144
Methodtest_eval_with_limits_holdout
(self, pynisher_mock)
test/test_evaluation/test_evaluation.py:86
Methodtest_eval_with_limits_holdout_2
(self, eval_houldout_mock)
test/test_evaluation/test_evaluation.py:412
Methodtest_eval_with_limits_holdout_fail_memory_error
(self, pynisher_mock)
test/test_evaluation/test_evaluation.py:251
Methodtest_eval_with_limits_holdout_fail_silent
(self, pynisher_mock)
test/test_evaluation/test_evaluation.py:179
Methodtest_eval_with_limits_holdout_fail_timeout
(self, pynisher_mock)
test/test_evaluation/test_evaluation.py:287
Methodtest_eval_with_limits_holdout_timeout_with_results_in_queue
( self, pynisher_mock )
test/test_evaluation/test_evaluation.py:326
Methodtest_exception_in_target_function
(self, eval_holdout_mock)
test/test_evaluation/test_evaluation.py:458
Methodtest_existing_package
(self, getDistributionMock)
test/test_util/test_dependencies.py:18
Functiontest_feat_type_wrong_arguments
()
test/test_estimators/test_estimators.py:146
Functiontest_features_unsupported_calls_are_raised
Makes sure we raise a proper message to the user, when providing not supported data input or using the validator in a way that is not exp
test/test_data/test_feature_validator.py:316
Functiontest_featurevalidator_fitontypeA_transformtypeB
Check if we can fit in a given type (numpy) yet transform if the user changes the type (pandas then)
test/test_data/test_feature_validator.py:267
Functiontest_featurevalidator_new_data_after_fit
( openml_id, train_data_type, test_data_type )
test/test_data/test_feature_validator.py:384
Functiontest_featurevalidator_supported_types
(input_data_featuretest)
test/test_data/test_feature_validator.py:212
Functiontest_featurevalidator_unsupported_numpy
(input_data_featuretest)
test/test_data/test_feature_validator.py:234
Functiontest_featurevalidatorget_feat_type_from_columns
Makes sure that encoded columns are returned by get_feat_type_from_columns whereas numerical columns are not returned
test/test_data/test_feature_validator.py:289
Methodtest_file_output
(self, loss_mock, model_mock)
test/test_evaluation/test_train_evaluator.py:708
Methodtest_file_output
(self)
test/test_evaluation/test_abstract_evaluator.py:224
Methodtest_find_classifiers
Test that the classifier components can be found Expects ------- * At least two classifier components can be found *
test/test_pipeline/test_classification.py:151
Methodtest_find_components
(self)
test/test_pipeline/components/test_base.py:16
Methodtest_find_preprocessors
(self)
test/test_pipeline/test_regression.py:78
Methodtest_find_preprocessors
Test that preproccesor components can be found Expects ------- * At least 1 preprocessor component can be found * The
test/test_pipeline/test_classification.py:168
Methodtest_find_regressors
(self)
test/test_pipeline/test_regression.py:70
Methodtest_finish_up_model_predicts_NaN
Tests by handing in predictions which contain NaNs
test/test_evaluation/test_abstract_evaluator.py:58
Functiontest_fit_and_predict_with_1d_targets_as_1d
Test that all pipelines work with 1d target types Parameters ---------- regressor: RegressorChoice The regressor to test X:
test/test_pipeline/components/regression/test_base.py:348
Functiontest_fit_and_predict_with_1d_targets_as_2d
Test that all pipelines work with 1d target types when they are wrapped as 2d Parameters ---------- regressor: RegressorChoice Th
test/test_pipeline/components/regression/test_base.py:389
Functiontest_fit_and_predict_with_2d_targets
Test that all pipelines work with 2d target types Parameters ---------- regressor: RegressorChoice The regressor to test X:
test/test_pipeline/components/regression/test_base.py:439
Functiontest_fit_ensemble_kwargs_priorities
Expects ------- * Should favour 1) function kwargs, 2) function params 3) init_kwargs 4) init_params
test/test_ensemble_builder/test_ensemble_builder.py:898
Functiontest_fit_ensemble_produces_ensemble
Expects ------- * Should produce an ensemble if all runs have predictions
test/test_ensemble_builder/test_ensemble_builder.py:698
Functiontest_fit_ensemble_with_no_targets_raises
Expects ------- * If no ensemble targets can be found then `fit_ensemble` should fail
test/test_ensemble_builder/test_ensemble_builder.py:677
Methodtest_fit_instantiates_component
Make sure that if a preprocessor is added, it's fit method is called
test/test_pipeline/test_classification.py:1303
Methodtest_fit_l1_distance
(self)
test/test_metalearning/pyMetaLearn/metalearning/test_kND.py:48
Functiontest_fit_n_jobs
(tmp_dir)
test/test_estimators/test_estimators.py:57
Functiontest_fit_n_jobs_negative
(build_automl_patch)
test/test_estimators/test_estimators.py:915
Functiontest_fit_performs_dataset_compression
Parameters ---------- mock_reduce_dataset: MagicMock A mock function to view call X_type: Union[np.ndarray, csr_matrix, list
test/test_automl/test_dataset_compression.py:84
Functiontest_fit_performs_dataset_compression_without_precision_when_int
Parameters ---------- dataset_compression: Dict The dataset_compression arg with "precision" set in it Fixtures --------
test/test_automl/test_dataset_compression.py:18
Functiontest_fit_pipeline
Tests that we can query the configuration space, and from the default configuration space, fit a classification pipeline with an acceptable s
test/test_estimators/test_estimators.py:1475
Methodtest_fit_predict_and_loss_budget_2_additional_run_info
( self, mock, backend_mock, finish_up_mock, loss_mock, _ )
test/test_evaluation/test_train_evaluator.py:1235
Methodtest_fit_predict_and_loss_budget_additional_run_info
( self, mock, backend_mock, finish_up_mock, loss_mock, _,
test/test_evaluation/test_train_evaluator.py:1172
Methodtest_fit_predict_and_loss_iterative_additional_run_info
( self, mock, backend_mock, finish_up_mock, loss_mock, )
test/test_evaluation/test_train_evaluator.py:1069
Methodtest_fit_predict_and_loss_iterative_noniterativemodel_additional_run_info
( self, mock, backend_mock, finish_up_mock, loss_mock, )
test/test_evaluation/test_train_evaluator.py:1125
Methodtest_fit_predict_and_loss_standard_additional_run_info
( self, mock, backend_mock, _partial_fit_and_predict_mock, file_output
test/test_evaluation/test_train_evaluator.py:970
Functiontest_fit_roar
Parameters ---------- dataset : str The name of the dataset task : int The task type of the dataset bounds : Tu
test/test_automl/test_fit.py:16
Functiontest_fit_transform
(analyzer, per_column)
test/test_pipeline/components/data_preprocessing/test_data_preprocessing_text.py:15
Methodtest_fit_transform
(self)
test/test_pipeline/components/data_preprocessing/test_data_preprocessing_categorical.py:24
Methodtest_fit_transform
(self)
test/test_pipeline/components/data_preprocessing/test_data_preprocessing.py:96
Methodtest_fit_transform
(self)
test/test_pipeline/components/data_preprocessing/test_data_preprocessing_numerical.py:27
Methodtest_fit_transform_sparse
(self)
test/test_pipeline/components/data_preprocessing/test_data_preprocessing.py:99
Functiontest_fit_with_error_gives_no_ensemble
Expects ------- * A run without predictions will raise an error will cause `fit_ensemble` to fail as it requires all runs to have v
test/test_ensemble_builder/test_ensemble_builder.py:718
Functiontest_function
(params)
autosklearn/metalearning/optimizers/metalearn_optimizer/metalearner.py:10
Methodtest_get_all_runs
(self)
test/test_metalearning/pyMetaLearn/test_meta_base.py:30
Methodtest_get_available_components
(self)
test/test_pipeline/components/feature_preprocessing/test_choice.py:7
Methodtest_get_hyperparameter_configuration_space_3choices
(self)
test/test_pipeline/test_base.py:21
Methodtest_get_hyperparameter_search_space
(self)
test/test_pipeline/test_regression.py:317
Methodtest_get_hyperparameter_search_space
Test the configuration space returned by a SimpleClassificationPipeline Expects ------- * pipeline returns a configurations s
test/test_pipeline/test_classification.py:663
Methodtest_get_hyperparameter_search_space_dataset_properties
(self)
test/test_pipeline/test_regression.py:402
Methodtest_get_hyperparameter_search_space_dataset_properties
(self)
test/test_pipeline/test_classification.py:811
Methodtest_get_hyperparameter_search_space_feat_type
(self)
test/test_pipeline/test_classification.py:1337
Methodtest_get_hyperparameter_search_space_include_exclude_models
(self)
test/test_pipeline/test_regression.py:327
Methodtest_get_hyperparameter_search_space_include_exclude_models
Test the configuration space when using include and exclude Expects ------- * Including a classifier has pipeline give back m
test/test_pipeline/test_classification.py:710
Methodtest_get_hyperparameter_search_space_only_forbidden_combinations
(self)
test/test_pipeline/test_regression.py:374
Methodtest_get_hyperparameter_search_space_only_forbidden_combinations
Test that invalid pipeline configurations raise errors Expects ------- * 0 combinations are found with 'multinomial_nb' and '
test/test_pipeline/test_classification.py:781
Methodtest_get_hyperparameter_search_space_preprocessor_contradicts_default
( self, )
test/test_pipeline/test_regression.py:353
Methodtest_get_hyperparameter_search_space_preprocessor_contradicts_default
Test that the default classifier gets updated based on the legal feature preprocessors that come before. Expects -------
test/test_pipeline/test_classification.py:753
Methodtest_get_match_array_signed_unsigned_and_binary
(self)
test/test_pipeline/test_create_searchspace_util_classification.py:120
Methodtest_get_match_array_sparse_and_dense
(self)
test/test_pipeline/test_create_searchspace_util_classification.py:27
Methodtest_get_max_iter
(self)
test/test_pipeline/components/classification/test_base.py:47
Methodtest_get_metafeatures_multiple_datasets
(self)
test/test_metalearning/pyMetaLearn/test_meta_base.py:57
Methodtest_get_metafeatures_multiple_features
(self)
test/test_metalearning/pyMetaLearn/test_meta_base.py:62
Methodtest_get_metafeatures_single_dataset
(self)
test/test_metalearning/pyMetaLearn/test_meta_base.py:42
Methodtest_get_metafeatures_single_dataset_and_single_feature
(self)
test/test_metalearning/pyMetaLearn/test_meta_base.py:53
Methodtest_get_metafeatures_single_feature
(self)
test/test_metalearning/pyMetaLearn/test_meta_base.py:48
Functiontest_get_number_of_available_cores
()
test/test_estimators/test_estimators.py:922
Methodtest_get_params
(self)
test/test_pipeline/test_regression.py:520
Methodtest_get_params
(self)
test/test_pipeline/test_classification.py:1066
Methodtest_get_results
(self)
test/test_evaluation/test_train_evaluator.py:1275
Methodtest_get_runs
(self)
test/test_metalearning/pyMetaLearn/test_meta_base.py:36
Methodtest_get_splitter
(self, te_mock)
test/test_evaluation/test_train_evaluator.py:1323
← previousnext →1,501–1,600 of 1,916, ranked by callers