MCPcopy Index your code

hub / github.com/automl/auto-sklearn / types & classes

Types & classes344 in github.com/automl/auto-sklearn

↓ 102 callersClassTrainEvaluator
autosklearn/evaluation/train_evaluator.py:178
↓ 43 callersClassSimpleClassificationPipeline
This class implements the classification task. It implements a pipeline, which includes one preprocessing step and one classification algorit
autosklearn/pipeline/classification.py:24
↓ 26 callersClassAutoSklearnClassifier
This class implements the classification task.
autosklearn/estimators.py:1384
↓ 22 callersClassSimpleRegressionPipeline
This class implements the regression task. It implements a pipeline, which includes one preprocessing step and one regression algorithm. It c
autosklearn/pipeline/regression.py:21
↓ 18 callersClassFeatureValidator
Checks the input data to Auto-Sklearn. It also determines what columns are categorical and which ones are numerical, so that the pre-pro
autosklearn/data/feature_validator.py:18
↓ 16 callersClassTargetValidator
A class to pre-process targets. It validates the data provided during fit to make sure it matches Sklearn expectation as well as encoding the
autosklearn/data/target_validator.py:23
↓ 13 callersClassExecuteTaFuncWithQueue
autosklearn/evaluation/__init__.py:141
↓ 12 callersClassFeatTypeSplit
This component is used to apply distinct transformations to categorical, numerical and text features of a dataset. It is built on top of skle
autosklearn/pipeline/components/data_preprocessing/feature_type.py:34
↓ 10 callersClassInputValidator
Makes sure the input data complies with Auto-sklearn requirements. Categorical inputs are encoded via a Label Encoder, if the input is a
autosklearn/data/validation.py:44
↓ 8 callersClassCategoricalPreprocessingPipeline
This class implements a pipeline for data preprocessing of categorical features. It assumes that the data to be transformed is made only of catego
autosklearn/pipeline/components/data_preprocessing/feature_type_categorical.py:27
↓ 8 callersClassThirdPartyComponents
autosklearn/pipeline/components/base.py:40
↓ 7 callersClassAutoSklearn2Classifier
autosklearn/experimental/askl2.py:145
↓ 7 callersClassAutoSklearnRegressor
This class implements the regression task.
autosklearn/estimators.py:1515
↓ 6 callersClassAbstractEvaluator
autosklearn/evaluation/abstract_evaluator.py:193
↓ 6 callersClassNumericalPreprocessingPipeline
This class implements a pipeline for data preprocessing of numerical features. It assumes that the data to be transformed is made only of numerica
autosklearn/pipeline/components/data_preprocessing/feature_type_numerical.py:21
↓ 6 callersClassStopWatch
Class to collect timing tasks.
autosklearn/util/stopwatch.py:71
↓ 5 callersClassBalancing
autosklearn/pipeline/components/data_preprocessing/balancing/balancing.py:20
↓ 5 callersClassCategoricalImputation
Substitute missing values by constant: When strategy == “constant”, fill_value is used to replace all occurrences of missing_valu
autosklearn/pipeline/components/data_preprocessing/imputation/categorical_imputation.py:13
↓ 5 callersClassCategoryShift
Add 3 to every category.
autosklearn/pipeline/implementations/CategoryShift.py:7
↓ 5 callersClassCounter
test/test_evaluation/test_train_evaluator.py:1076
↓ 5 callersClassDummy
test/test_evaluation/evaluation_util.py:68
↓ 5 callersClassKNearestDatasets
autosklearn/metalearning/metalearning/kNearestDatasets/kND.py:8
↓ 5 callersClassMinorityCoalescer
Group together categories which occurence is less than a specified minimum fraction. Coalesced categories get index of one.
autosklearn/pipeline/implementations/MinorityCoalescer.py:6
↓ 5 callersClassNystroem
autosklearn/pipeline/components/feature_preprocessing/nystroem_sampler.py:22
↓ 5 callersClassSelectClassificationRates
autosklearn/pipeline/components/feature_preprocessing/select_rates_classification.py:23
↓ 5 callersClassSelectPercentileClassification
autosklearn/pipeline/components/feature_preprocessing/select_percentile_classification.py:26
↓ 5 callersClassSparseOneHotEncoder
Encode categorical integer features using a one-hot aka one-of-K scheme. The input to this transformer should be a sparse matrix of integers, den
autosklearn/pipeline/implementations/SparseOneHotEncoder.py:7
↓ 4 callersClassAutoML
Base class for handling the AutoML procedure
autosklearn/automl.py:209
↓ 4 callersClassDummyDatamanager
test/test_evaluation/test_train_evaluator.py:2836
↓ 4 callersClassMetaBase
autosklearn/metalearning/metalearning/meta_base.py:32
↓ 4 callersClassOneHotEncoder
autosklearn/pipeline/components/data_preprocessing/categorical_encoding/one_hot_encoding.py:15
↓ 4 callersClassSideEffect
test/test_evaluation/test_train_evaluator.py:200
↓ 4 callersClassXYDataManager
autosklearn/data/xy_data_manager.py:19
↓ 3 callersClassBasePipelineMock
test/test_pipeline/test_base.py:15
↓ 3 callersClassCategoryShift
Add 3 to every category. Down in the pipeline, category 2 will be attribute to missing values, category 1 will be assigned to low occurence ca
autosklearn/pipeline/components/data_preprocessing/category_shift/category_shift.py:13
↓ 3 callersClassCustomStratifiedShuffleSplit
Splitter that deals with classes with too few samples
autosklearn/evaluation/splitter.py:11
↓ 3 callersClassEnsembleBuilderManager
autosklearn/ensemble_building/manager.py:25
↓ 3 callersClassEnsembleSelection
autosklearn/ensembles/ensemble_selection.py:21
↓ 3 callersClassExtraTreesRegressor
autosklearn/pipeline/components/regression/extra_trees.py:20
↓ 3 callersClassLossSideEffect
Some kind of re-used fixture for losses calculated
test/test_evaluation/test_train_evaluator.py:72
↓ 3 callersClassSelectRegressionRates
autosklearn/pipeline/components/feature_preprocessing/select_rates_regression.py:17
↓ 3 callersClassTimingTask
A task to start
autosklearn/util/stopwatch.py:13
↓ 3 callersClassTruncatedSVD
autosklearn/pipeline/components/feature_preprocessing/truncatedSVD.py:11
↓ 2 callersClassAutoMLClassifier
autosklearn/automl.py:2277
↓ 2 callersClassAutoMLSMBO
autosklearn/smbo.py:245
↓ 2 callersClassDataPreprocessorChoice
autosklearn/pipeline/components/data_preprocessing/__init__.py:30
↓ 2 callersClassEnsembleBuilder
Builds ensembles out of runs that exist in the Backend This is used by EnsembleBuilderManager and created in a dask-client every time a run f
autosklearn/ensemble_building/builder.py:35
↓ 2 callersClassExtraTreesPreprocessorClassification
autosklearn/pipeline/components/feature_preprocessing/extra_trees_preproc_for_classification.py:18
↓ 2 callersClassExtraTreesPreprocessorRegression
autosklearn/pipeline/components/feature_preprocessing/extra_trees_preproc_for_regression.py:19
↓ 2 callersClassLocalDask
autosklearn/util/dask.py:90
↓ 2 callersClassMetaFeatureValue
autosklearn/metalearning/metafeatures/metafeature.py:59
↓ 2 callersClassMinorityCoalescer
Group categories whose occurence is less than a specified minimum fraction.
autosklearn/pipeline/components/data_preprocessing/minority_coalescense/minority_coalescer.py:14
↓ 2 callersClassPolynomialFeatures
autosklearn/pipeline/components/feature_preprocessing/polynomial.py:15
↓ 2 callersClassRandomTreesEmbedding
autosklearn/pipeline/components/feature_preprocessing/random_trees_embedding.py:17
↓ 2 callersClassRun
Class for storing information about a run used during ensemble building. Note ---- This is for internal use by the EnsembleBuilder and no
autosklearn/ensemble_building/run.py:15
↓ 2 callersClassSelectPercentileRegression
autosklearn/pipeline/components/feature_preprocessing/select_percentile_regression.py:19
↓ 2 callersClassSingleModelEnsemble
Ensemble consisting of a single model. This class is used by the :class:`MultiObjectiveDummyEnsemble` to represent ensembles consisting of a
autosklearn/ensembles/singlebest_ensemble.py:171
↓ 2 callersClassSingleThreadedClient
A class to Mock the Distributed Client class, in case Auto-Sklearn is meant to run in the current Thread.
autosklearn/util/single_thread_client.py:34
↓ 2 callersClassTestEvaluator
autosklearn/evaluation/test_evaluator.py:21
↓ 2 callersClassUserDask
A dask instance created by a user
autosklearn/util/dask.py:65
↓ 2 callersClassWarningModel
Simple model that returns incorrect shape and issues warning
test/test_automl/test_model_predict.py:22
↓ 2 callersClasscounter
autosklearn/pipeline/util.py:138
↓ 1 callersClassARDRegression
autosklearn/pipeline/components/regression/ard_regression.py:15
↓ 1 callersClassAutoMLStub
test/fixtures/automl.py:88
↓ 1 callersClassAutoMLTrialsCallBack
test/test_util/test_trials_callback.py:16
↓ 1 callersClassAutoSklearnEstimator
autosklearn/estimators.py:47
↓ 1 callersClassBagOfWordChoice
autosklearn/pipeline/components/data_preprocessing/text_encoding/__init__.py:33
↓ 1 callersClassClassifierChoice
autosklearn/pipeline/components/classification/__init__.py:33
↓ 1 callersClassCoalescenseChoice
autosklearn/pipeline/components/data_preprocessing/minority_coalescense/__init__.py:32
↓ 1 callersClassCustomStratifiedKFold
Stratified K-Folds cross-validator that ensures that there is always at least 1 sample per class in the training set.
autosklearn/evaluation/splitter.py:109
↓ 1 callersClassDatasetMetafeatures
autosklearn/metalearning/metafeatures/metafeature.py:98
↓ 1 callersClassDummy
test/test_data/test_feature_validator.py:514
↓ 1 callersClassDummyDatamanager
test/test_evaluation/test_test_evaluator.py:89
↓ 1 callersClassDummyDatamanager
scripts/02_retrieve_metadata.py:192
↓ 1 callersClassDummyFuture
A class that mimics a distributed Future, the outcome of performing submit on a distributed client.
autosklearn/util/single_thread_client.py:9
↓ 1 callersClassExtraTreesClassifier
autosklearn/pipeline/components/classification/extra_trees.py:23
↓ 1 callersClassFastICA
autosklearn/pipeline/components/feature_preprocessing/fast_ica.py:18
↓ 1 callersClassFeatureAgglomeration
autosklearn/pipeline/components/feature_preprocessing/feature_agglomeration.py:20
↓ 1 callersClassFeaturePreprocessorChoice
autosklearn/pipeline/components/feature_preprocessing/__init__.py:31
↓ 1 callersClassHelperFunctions
autosklearn/metalearning/metafeatures/metafeatures.py:24
↓ 1 callersClassIncorrectPackageVersionError
autosklearn/util/dependencies.py:82
↓ 1 callersClassKernelPCA
autosklearn/pipeline/components/feature_preprocessing/kernel_pca.py:19
↓ 1 callersClassLibLinear_Preprocessor
autosklearn/pipeline/components/feature_preprocessing/liblinear_svc_preprocessor.py:17
↓ 1 callersClassLibSVM_SVC
autosklearn/pipeline/components/classification/libsvm_svc.py:22
↓ 1 callersClassLogRecordSocketReceiver
This class implement a entity that receives tcp messages on a given address For further information, please check https://docs.python.org
autosklearn/util/logging_.py:323
↓ 1 callersClassMLPClassifier
autosklearn/pipeline/components/classification/mlp.py:25
↓ 1 callersClassMLPClassifier
examples/80_extending/example_extending_classification.py:41
↓ 1 callersClassMLPRegressor
autosklearn/pipeline/components/regression/mlp.py:23
↓ 1 callersClassMetaLearningOptimizer
autosklearn/metalearning/optimizers/metalearn_optimizer/metalearner.py:14
↓ 1 callersClassMetafeatureFunctions
autosklearn/metalearning/metafeatures/metafeatures.py:74
↓ 1 callersClassMissingPackageError
autosklearn/util/dependencies.py:72
↓ 1 callersClassMockLogger
Should not be used for testing the actual loggers functionality Overwrites all methods with mock objects that can be queries * All logging me
test/mocks/logging.py:12
↓ 1 callersClassMultiObjectiveDummyEnsemble
autosklearn/ensembles/multiobjective_dummy_ensemble.py:24
↓ 1 callersClassMultinomialNB
autosklearn/pipeline/components/classification/multinomial_nb.py:16
↓ 1 callersClassMyDummyClassifier
autosklearn/evaluation/abstract_evaluator.py:44
↓ 1 callersClassMyDummyRegressor
autosklearn/evaluation/abstract_evaluator.py:109
↓ 1 callersClassNoCoalescence
autosklearn/pipeline/components/data_preprocessing/minority_coalescense/no_coalescense.py:12
↓ 1 callersClassNumericalImputation
autosklearn/pipeline/components/data_preprocessing/imputation/numerical_imputation.py:13
↓ 1 callersClassOHEChoice
autosklearn/pipeline/components/data_preprocessing/categorical_encoding/__init__.py:32
↓ 1 callersClassOrdinalEncoding
autosklearn/pipeline/components/data_preprocessing/categorical_encoding/encoding.py:14
next →1–100 of 344, ranked by callers