.clinerules
.gitattributes
.gitignore
.pre-commit-config.yaml
CHANGELOG.md
CONTRIBUTING.md
CONTRIBUTORS.md
LICENSE.txt
README.md
mkdocs.yml
pydoclint.toml
pyproject.toml
ruff.toml
test_like_ci.sh
typos.toml
uv.lock
.github/workflows/check-notebooks.yml
.github/workflows/docs.yml
.github/workflows/pr-validation.yml
.github/workflows/release.yml
.github/workflows/ruff.yml
.github/workflows/test-package.yml
docs/changelog.md
docs/contributing.md
docs/contributors.md
docs/faq.md
docs/index.md
docs/license.md
docs/assets/favicon.png
docs/assets/logo.png
docs/concepts/concepts.md
docs/concepts/nested_cv.md
docs/concepts/understanding_results.md
docs/reference/manager.md
docs/reference/metrics.md
docs/reference/models.md
docs/reference/modules.md
docs/reference/reference.md
docs/reference/study.md
docs/reference/task.md
docs/scripts/generate_examples.py
docs/userguide/classification.md
docs/userguide/cli.md
docs/userguide/regression.md
docs/userguide/time_to_event.md
docs/userguide/userguide.md
examples/basic_classification.py
examples/basic_regression.py
examples/data_health_check.py
examples/evaluation_classification.ipynb
examples/evaluation_regression.ipynb
examples/multi_workflow.py
examples/use_own_hyperparameters.py
examples/wf_multiclass_wine.py
examples/workflow_roc_octo.py
octopus/__init__.py
octopus/cli.py
octopus/exceptions.py
octopus/experiment.py
octopus/logger.py
octopus/predict.py
octopus/results.py
octopus/utils.py
octopus/_optional/__init__.py
octopus/_optional/autogluon.py
octopus/_optional/burota.py
octopus/_optional/sfs.py
octopus/_optional/survival.py
octopus/manager/__init__.py
octopus/manager/core.py
octopus/manager/ray_parallel.py
octopus/metrics/__init__.py
octopus/metrics/classification.py
octopus/metrics/config.py
octopus/metrics/inventory.py
octopus/metrics/multiclass.py
octopus/metrics/registry.py
octopus/metrics/regression.py
octopus/metrics/timetoevent.py
octopus/metrics/utils.py
octopus/models/__init__.py
octopus/models/classification_models.py
octopus/models/config.py
octopus/models/core.py
octopus/models/hyperparameter.py
octopus/models/regression_models.py
octopus/models/time_to_event_models.py
octopus/models/wrapper_models/GaussianProcessClassifier.py
octopus/models/wrapper_models/GaussianProcessRegressor.py
octopus/models/wrapper_models/TabularNNClassifier.py
octopus/models/wrapper_models/TabularNNRegressor.py
octopus/models/wrapper_models/__init__.py
octopus/modules/__init__.py
octopus/modules/base.py
octopus/modules/utils.py
octopus/modules/autogluon/__init__.py
octopus/modules/autogluon/core.py
octopus/modules/autogluon/module.py
octopus/modules/boruta/__init__.py
octopus/modules/boruta/core.py
octopus/modules/boruta/module.py
octopus/modules/efs/__init__.py
octopus/modules/efs/core.py
octopus/modules/efs/module.py
octopus/modules/mrmr/__init__.py
octopus/modules/mrmr/core.py
octopus/modules/mrmr/module.py
octopus/modules/octo/__init__.py
octopus/modules/octo/bag.py
octopus/modules/octo/core.py
octopus/modules/octo/enssel.py
octopus/modules/octo/module.py
octopus/modules/octo/objective_optuna.py
octopus/modules/octo/optuna_storage_backend.py
octopus/modules/octo/training.py
octopus/modules/rfe/__init__.py
octopus/modules/rfe/core.py
octopus/modules/rfe/module.py
octopus/modules/rfe2/__init__.py
octopus/modules/rfe2/core.py
octopus/modules/rfe2/module.py
octopus/modules/roc/__init__.py
octopus/modules/roc/core.py
octopus/modules/roc/module.py
octopus/modules/sfs/__init__.py
octopus/modules/sfs/core.py
octopus/modules/sfs/core_old.py
octopus/modules/sfs/module.py
octopus/study/__init__.py
octopus/study/core.py
octopus/study/data_preparator.py
octopus/study/data_validator.py
octopus/study/healthChecker.py
octopus/study/prepared_data.py
octopus/study/types.py
octopus/study/validation.py
octopus/task/__init__.py
octopus/task/core.py
octopus_automl.egg-info/PKG-INFO
octopus_automl.egg-info/SOURCES.txt
octopus_automl.egg-info/dependency_links.txt
octopus_automl.egg-info/entry_points.txt
octopus_automl.egg-info/requires.txt
octopus_automl.egg-info/top_level.txt
tests/__init__.py
tests/conftest.py
tests/test_examples.py
tests/test_predict.py
tests/experiment/__init__.py
tests/experiment/test_correlation_groups.py
tests/experiment/test_experiment.py
tests/infrastructure/test_core_install.py
tests/infrastructure/test_fsspec.py
tests/infrastructure/test_parallelization.py
tests/manager/__init__.py
tests/manager/test_manager.py
tests/metrics/__init__.py
tests/metrics/test_metrics_uniqueness.py
tests/metrics/test_utils.py
tests/models/__init__.py
tests/models/test_hyperparameter.py
tests/models/test_model_config.py
tests/models/test_model_inventory.py
tests/models/test_model_parameter_compatibility.py
tests/modules/__init__.py
tests/modules/test_mrmr.py
tests/modules/test_training_feature_importances.py
tests/modules/autogluon/__init__.py
tests/modules/autogluon/test_metrics_coverage.py
tests/modules/octo/test_classes_attribute.py
tests/modules/octo/test_ensemble_selection.py
tests/modules/octo/test_ensemble_selection_unit.py
tests/modules/octo/test_model_fitted_validation.py
tests/modules/roc/__init__.py
tests/modules/roc/test_roc.py
tests/study/__init__.py
tests/study/test_core.py
tests/study/test_healthChecker.py
tests/study/test_preparator.py
tests/study/test_prepared_data.py
tests/study/test_validation.py
tests/study/test_validator.py
tests/workflows/__init__.py
tests/workflows/test_ag_workflows.py
tests/workflows/test_analysispipeline.py
tests/workflows/test_octo_classification.py
tests/workflows/test_octo_multiclass.py
tests/workflows/test_octo_regression.py
tests/workflows/test_octo_t2e.py
tests/workflows/test_roc_octo_roc_workflow.py