gitextract_i76kzk_w/ ├── .github/ │ └── workflows/ │ ├── docs.yml │ ├── publish_package.yml │ └── tests.yml ├── .gitignore ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── Tutorial/ │ ├── 1_Using_TPOT.ipynb │ ├── 2_Search_Spaces.ipynb │ ├── 3_Feature_Set_Selector.ipynb │ ├── 4_Genetic_Feature_Selection.ipynb │ ├── 5_GraphPipeline.ipynb │ ├── 6_Symbolic_Regression_and_Classification.ipynb │ ├── 7_dask_parallelization.ipynb │ ├── 8_SH_and_cv_early_pruning.ipynb │ ├── 9_Genetic_Algorithm_Overview.ipynb │ ├── amltk_search_space_parser_example.ipynb │ └── simple_fss.csv ├── docs/ │ ├── archived/ │ │ ├── api.md │ │ ├── citing.md │ │ ├── contributing.md │ │ ├── css/ │ │ │ └── archived.css │ │ ├── examples.md │ │ ├── index.md │ │ ├── installing.md │ │ ├── related.md │ │ ├── releases.md │ │ ├── support.md │ │ └── using.md │ ├── cite.md │ ├── contribute.md │ ├── css/ │ │ └── extra.css │ ├── index.md │ ├── installation.md │ ├── related.md │ ├── requirements_docs.txt │ ├── scripts/ │ │ ├── build_docs_sources.sh │ │ ├── build_mkdocs.sh │ │ └── build_tutorial_toc_not_used.sh │ ├── support.md │ ├── tpot_api/ │ │ ├── classifier.md │ │ ├── estimator.md │ │ └── regressor.md │ └── using.md ├── mkdocs_archived.yml ├── pyproject.toml ├── tox.ini └── tpot/ ├── __init__.py ├── _version.py ├── builtin_modules/ │ ├── __init__.py │ ├── arithmetictransformer.py │ ├── column_one_hot_encoder.py │ ├── estimatortransformer.py │ ├── feature_encoding_frequency_selector.py │ ├── feature_set_selector.py │ ├── feature_transformers.py │ ├── genetic_encoders.py │ ├── imputer.py │ ├── nn.py │ ├── passkbinsdiscretizer.py │ ├── passthrough.py │ ├── tests/ │ │ └── feature_set_selector_tests.py │ └── zero_count.py ├── config/ │ ├── __init__.py │ ├── autoqtl_builtins.py │ ├── classifiers.py │ ├── classifiers_sklearnex.py │ ├── get_configspace.py │ ├── imputers.py │ ├── mdr_configs.py │ ├── regressors.py │ ├── regressors_sklearnex.py │ ├── selectors.py │ ├── special_configs.py │ ├── template_search_spaces.py │ ├── tests/ │ │ ├── __init__.py │ │ └── test_get_configspace.py │ └── transformers.py ├── evolvers/ │ ├── __init__.py │ ├── base_evolver.py │ └── steady_state_evolver.py ├── graphsklearn.py ├── individual.py ├── logbook.py ├── objectives/ │ ├── __init__.py │ ├── average_path_length.py │ ├── complexity.py │ ├── number_of_leaves.py │ ├── number_of_nodes.py │ └── tests/ │ ├── test_complexity_objective.py │ └── test_number_of_nodes.py ├── old_config_utils/ │ ├── __init__.py │ └── old_config_utils.py ├── population.py ├── search_spaces/ │ ├── __init__.py │ ├── base.py │ ├── graph_utils.py │ ├── nodes/ │ │ ├── __init__.py │ │ ├── estimator_node.py │ │ ├── estimator_node_gradual.py │ │ ├── fss_node.py │ │ └── genetic_feature_selection.py │ ├── pipelines/ │ │ ├── __init__.py │ │ ├── choice.py │ │ ├── dynamic_linear.py │ │ ├── dynamicunion.py │ │ ├── graph.py │ │ ├── sequential.py │ │ ├── tests/ │ │ │ └── test_graphspace.py │ │ ├── tree.py │ │ ├── union.py │ │ └── wrapper.py │ ├── tests/ │ │ └── test_search_spaces.py │ └── tuple_index.py ├── selectors/ │ ├── __init__.py │ ├── lexicase_selection.py │ ├── map_elites_selection.py │ ├── max_weighted_average_selector.py │ ├── nsgaii.py │ ├── random_selector.py │ ├── tournament_selection.py │ └── tournament_selection_dominated.py ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── test_estimators.py │ └── test_hello_world.py ├── tpot_estimator/ │ ├── __init__.py │ ├── cross_val_utils.py │ ├── estimator.py │ ├── estimator_utils.py │ ├── steady_state_estimator.py │ ├── templates/ │ │ ├── __init__.py │ │ ├── tpot_autoimputer.py │ │ └── tpottemplates.py │ └── tests/ │ ├── __init__.py │ └── test_estimator_utils.py └── utils/ ├── __init__.py ├── amltk_parser.py ├── eval_utils.py └── utils.py