LICENSE
MANIFEST.in
README.md
requirements.txt
setup.py
examples/basic_usage.py
tests/test_automl_pipeline.py
tests/test_cross_validator.py
tests/test_data_describer.py
tests/test_edge_cases.py
tests/test_encoder.py
tests/test_evaluator.py
tests/test_feature_engineering.py
tests/test_feature_selector.py
tests/test_imbalance_handler.py
tests/test_inspector.py
tests/test_missing_handler.py
tests/test_model_saver.py
tests/test_model_suggester.py
tests/test_model_trainer.py
tests/test_models.py
tests/test_outlier_detector.py
tests/test_plot.py
tests/test_preprocessor.py
tests/test_scaler.py
tests/test_significance_tests.py
tests/test_splitter.py
tests/test_thinkml.py
tests/test_tuner.py
thinkml/__init__.py
thinkml.egg-info/PKG-INFO
thinkml.egg-info/SOURCES.txt
thinkml.egg-info/dependency_links.txt
thinkml.egg-info/not-zip-safe
thinkml.egg-info/requires.txt
thinkml.egg-info/top_level.txt
thinkml/algorithms/__init__.py
thinkml/algorithms/adaboost.py
thinkml/algorithms/advanced_classification.py
thinkml/algorithms/advanced_regression.py
thinkml/algorithms/base.py
thinkml/algorithms/decision_tree.py
thinkml/algorithms/gradient_boosting.py
thinkml/algorithms/knn.py
thinkml/algorithms/lasso_regression.py
thinkml/algorithms/linear.py
thinkml/algorithms/linear_regression.py
thinkml/algorithms/logistic_regression.py
thinkml/algorithms/neural_network.py
thinkml/algorithms/random_forest.py
thinkml/algorithms/ridge_regression.py
thinkml/algorithms/svm.py
thinkml/algorithms/tree.py
thinkml/analyzer/__init__.py
thinkml/analyzer/model_suggester.py
thinkml/automl/__init__.py
thinkml/automl/pipeline.py
thinkml/calibration/__init__.py
thinkml/calibration/calibrator.py
thinkml/calibration/probability_calibration.py
thinkml/classification/__init__.py
thinkml/classification/advanced_classification.py
thinkml/classification/cost_sensitive.py
thinkml/classification/multi_label.py
thinkml/classification/ordinal_classification.py
thinkml/data_analysis/__init__.py
thinkml/data_analysis/describe.py
thinkml/data_split/__init__.py
thinkml/data_split/splitter.py
thinkml/describer/data_describer.py
thinkml/eda/__init__.py
thinkml/eda/plot.py
thinkml/evaluation/__init__.py
thinkml/evaluation/evaluator.py
thinkml/evaluation/metrics.py
thinkml/feature_engineering/__init__.py
thinkml/feature_engineering/feature_creation.py
thinkml/feature_engineering/feature_creator.py
thinkml/feature_engineering/feature_engineer.py
thinkml/feature_engineering/feature_engineering.py
thinkml/feature_engineering/feature_selection.py
thinkml/feature_engineering/feature_transformer.py
thinkml/feature_selection/__init__.py
thinkml/feature_selection/selector.py
thinkml/helpers/notebook_helper.py
thinkml/helpers/user_interface.py
thinkml/hyperparameter_tuning/__init__.py
thinkml/inspector/__init__.py
thinkml/inspector/inspector.py
thinkml/interpretability/__init__.py
thinkml/interpretability/interpret.py
thinkml/interpretability/model_explainer.py
thinkml/interpretability/model_interpreter.py
thinkml/model/__init__.py
thinkml/model/trainer.py
thinkml/optimization/__init__.py
thinkml/optimization/early_stopping.py
thinkml/optimization/gpu_acceleration.py
thinkml/optimization/parallel_processing.py
thinkml/optimization/performance_optimizer.py
thinkml/outliers/__init__.py
thinkml/outliers/detector.py
thinkml/persistence/__init__.py
thinkml/persistence/model_saver.py
thinkml/preprocessor/__init__.py
thinkml/preprocessor/data_inspector.py
thinkml/preprocessor/encoder.py
thinkml/preprocessor/encoding.py
thinkml/preprocessor/imbalance.py
thinkml/preprocessor/imbalance_handler.py
thinkml/preprocessor/integration.py
thinkml/preprocessor/missing_handler.py
thinkml/preprocessor/missing_values.py
thinkml/preprocessor/multicollinearity.py
thinkml/preprocessor/outliers.py
thinkml/preprocessor/scaler.py
thinkml/regression/__init__.py
thinkml/regression/advanced_regression.py
thinkml/regression/censored_regression.py
thinkml/regression/quantile_regression.py
thinkml/regression/robust_regression.py
thinkml/reporting/__init__.py
thinkml/reporting/report_generator.py
thinkml/selection/__init__.py
thinkml/selection/advanced_selection.py
thinkml/selection/bayesian_optimization.py
thinkml/selection/multi_objective.py
thinkml/selection/tuner.py
thinkml/statistics/__init__.py
thinkml/statistics/significance_tests.py
thinkml/utils/__init__.py
thinkml/utils/data_utils.py
thinkml/utils/evaluation_utils.py
thinkml/validation/__init__.py
thinkml/validation/advanced_validation.py
thinkml/validation/bootstrap.py
thinkml/validation/cross_validation.py
thinkml/validation/cross_validator.py
thinkml/validation/nested_cv.py
thinkml/validation/stratified_group.py
thinkml/validation/time_series.py