├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature-mindsdb-request.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── workflows │ ├── cla.yml │ └── mindsdb_native.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── assets ├── MindsDBColorPurp@3x.png ├── MindsDBTerminal.png ├── contributions-agreement │ ├── entity-contributor.md │ ├── individual-contributor.md │ └── signatures │ │ └── cla.json └── mindsdb_logo.png ├── docker-compose.yml ├── mindsdb_native ├── .gitignore ├── README.md ├── __about__.py ├── __init__.py ├── config │ ├── __init__.py │ └── helpers.py ├── external_libs │ ├── README.md │ ├── __init__.py │ └── stats.py ├── libs │ ├── README.md │ ├── __init__.py │ ├── constants │ │ ├── __init__.py │ │ └── mindsdb.py │ ├── controllers │ │ ├── __init__.py │ │ ├── functional.py │ │ ├── predictor.py │ │ └── transaction.py │ ├── data_types │ │ ├── __init__.py │ │ ├── mindsdb_logger.py │ │ ├── transaction_data.py │ │ ├── transaction_output_data.py │ │ └── transaction_output_row.py │ ├── helpers │ │ ├── __init__.py │ │ ├── accuracy_stats.py │ │ ├── confidence_helpers.py │ │ ├── conformal_helpers.py │ │ ├── date_helpers.py │ │ ├── general_helpers.py │ │ ├── json_helpers.py │ │ ├── locking.py │ │ ├── mp_helpers.py │ │ ├── multi_data_source.py │ │ ├── parser.py │ │ ├── query_composer.py │ │ ├── sqlite_helpers.py │ │ ├── stats_helpers.py │ │ ├── text_helpers.py │ │ └── train_helpers.py │ └── phases │ │ ├── README.md │ │ ├── __init__.py │ │ ├── base_module.py │ │ ├── data_analyzer │ │ ├── __init__.py │ │ └── data_analyzer.py │ │ ├── data_cleaner │ │ ├── __init__.py │ │ └── data_cleaner.py │ │ ├── data_extractor │ │ ├── __init__.py │ │ └── data_extractor.py │ │ ├── data_splitter │ │ ├── __init__.py │ │ └── data_splitter.py │ │ ├── data_transformer │ │ ├── __init__.py │ │ └── data_transformer.py │ │ ├── model_analyzer │ │ ├── __init__.py │ │ └── model_analyzer.py │ │ ├── model_interface │ │ ├── __init__.py │ │ ├── lightwood_backend.py │ │ └── model_interface.py │ │ └── type_deductor │ │ ├── __init__.py │ │ └── type_deductor.py └── scraps.py ├── pyproject.toml ├── requirements.txt ├── requirements_test.txt ├── setup.py └── tests ├── README.md ├── __init__.py ├── integration_tests ├── __init__.py ├── flows │ ├── __init__.py │ ├── quick_interface.py │ └── test_finetune.py ├── helpers.py ├── nested │ ├── __init__.py │ └── test_nested_dataset.py ├── test_broken_datasets.py └── test_multitarget_prediction.py └── unit_tests ├── __init__.py ├── libs ├── __init__.py ├── controllers │ ├── __init__.py │ ├── test_predictor.py │ └── test_predictor_timeseries.py ├── helpers │ ├── __init__.py │ ├── test_conformal.py │ ├── test_general_helpers.py │ ├── test_locking.py │ ├── test_numpy_json_encoder.py │ ├── test_query_composer.py │ └── test_text_helpers.py └── phases │ ├── __init__.py │ ├── data_analyzer │ ├── __init__.py │ └── test_data_analyzer.py │ ├── data_cleaner │ ├── __init__.py │ └── test_data_cleaner.py │ ├── data_extractor │ ├── __init__.py │ └── test_data_extractor.py │ ├── data_splitter │ ├── __init__.py │ └── test_data_splitter.py │ └── type_deductor │ ├── __init__.py │ └── test_type_deductor.py └── utils.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-mindsdb-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/.github/ISSUE_TEMPLATE/feature-mindsdb-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/mindsdb_native.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/.github/workflows/mindsdb_native.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/README.md -------------------------------------------------------------------------------- /assets/MindsDBColorPurp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/assets/MindsDBColorPurp@3x.png -------------------------------------------------------------------------------- /assets/MindsDBTerminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/assets/MindsDBTerminal.png -------------------------------------------------------------------------------- /assets/contributions-agreement/entity-contributor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/assets/contributions-agreement/entity-contributor.md -------------------------------------------------------------------------------- /assets/contributions-agreement/individual-contributor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/assets/contributions-agreement/individual-contributor.md -------------------------------------------------------------------------------- /assets/contributions-agreement/signatures/cla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/assets/contributions-agreement/signatures/cla.json -------------------------------------------------------------------------------- /assets/mindsdb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/assets/mindsdb_logo.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /mindsdb_native/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/.gitignore -------------------------------------------------------------------------------- /mindsdb_native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/README.md -------------------------------------------------------------------------------- /mindsdb_native/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/__about__.py -------------------------------------------------------------------------------- /mindsdb_native/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/__init__.py -------------------------------------------------------------------------------- /mindsdb_native/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/config/__init__.py -------------------------------------------------------------------------------- /mindsdb_native/config/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/config/helpers.py -------------------------------------------------------------------------------- /mindsdb_native/external_libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/external_libs/README.md -------------------------------------------------------------------------------- /mindsdb_native/external_libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/external_libs/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/external_libs/stats.py -------------------------------------------------------------------------------- /mindsdb_native/libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/README.md -------------------------------------------------------------------------------- /mindsdb_native/libs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/__init__.py -------------------------------------------------------------------------------- /mindsdb_native/libs/constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/libs/constants/mindsdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/constants/mindsdb.py -------------------------------------------------------------------------------- /mindsdb_native/libs/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/libs/controllers/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/controllers/functional.py -------------------------------------------------------------------------------- /mindsdb_native/libs/controllers/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/controllers/predictor.py -------------------------------------------------------------------------------- /mindsdb_native/libs/controllers/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/controllers/transaction.py -------------------------------------------------------------------------------- /mindsdb_native/libs/data_types/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/libs/data_types/mindsdb_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/data_types/mindsdb_logger.py -------------------------------------------------------------------------------- /mindsdb_native/libs/data_types/transaction_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/data_types/transaction_data.py -------------------------------------------------------------------------------- /mindsdb_native/libs/data_types/transaction_output_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/data_types/transaction_output_data.py -------------------------------------------------------------------------------- /mindsdb_native/libs/data_types/transaction_output_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/data_types/transaction_output_row.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/accuracy_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/accuracy_stats.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/confidence_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/confidence_helpers.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/conformal_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/conformal_helpers.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/date_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/date_helpers.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/general_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/general_helpers.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/json_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/json_helpers.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/locking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/locking.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/mp_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/mp_helpers.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/multi_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/multi_data_source.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/parser.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/query_composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/query_composer.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/sqlite_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/sqlite_helpers.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/stats_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/stats_helpers.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/text_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/text_helpers.py -------------------------------------------------------------------------------- /mindsdb_native/libs/helpers/train_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/helpers/train_helpers.py -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/phases/README.md -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/base_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/phases/base_module.py -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/data_analyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/data_analyzer/data_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/phases/data_analyzer/data_analyzer.py -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/data_cleaner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/data_cleaner/data_cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/phases/data_cleaner/data_cleaner.py -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/data_extractor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/data_extractor/data_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/phases/data_extractor/data_extractor.py -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/data_splitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/data_splitter/data_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/phases/data_splitter/data_splitter.py -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/data_transformer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/data_transformer/data_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/phases/data_transformer/data_transformer.py -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/model_analyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/model_analyzer/model_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/phases/model_analyzer/model_analyzer.py -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/model_interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/model_interface/lightwood_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/phases/model_interface/lightwood_backend.py -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/model_interface/model_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/phases/model_interface/model_interface.py -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/type_deductor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mindsdb_native/libs/phases/type_deductor/type_deductor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/libs/phases/type_deductor/type_deductor.py -------------------------------------------------------------------------------- /mindsdb_native/scraps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/mindsdb_native/scraps.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- 1 | unittest -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/flows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/flows/quick_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/integration_tests/flows/quick_interface.py -------------------------------------------------------------------------------- /tests/integration_tests/flows/test_finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/integration_tests/flows/test_finetune.py -------------------------------------------------------------------------------- /tests/integration_tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/integration_tests/helpers.py -------------------------------------------------------------------------------- /tests/integration_tests/nested/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/nested/test_nested_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/integration_tests/nested/test_nested_dataset.py -------------------------------------------------------------------------------- /tests/integration_tests/test_broken_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/integration_tests/test_broken_datasets.py -------------------------------------------------------------------------------- /tests/integration_tests/test_multitarget_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/integration_tests/test_multitarget_prediction.py -------------------------------------------------------------------------------- /tests/unit_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/libs/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/libs/controllers/test_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/libs/controllers/test_predictor.py -------------------------------------------------------------------------------- /tests/unit_tests/libs/controllers/test_predictor_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/libs/controllers/test_predictor_timeseries.py -------------------------------------------------------------------------------- /tests/unit_tests/libs/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/libs/helpers/test_conformal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/libs/helpers/test_conformal.py -------------------------------------------------------------------------------- /tests/unit_tests/libs/helpers/test_general_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/libs/helpers/test_general_helpers.py -------------------------------------------------------------------------------- /tests/unit_tests/libs/helpers/test_locking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/libs/helpers/test_locking.py -------------------------------------------------------------------------------- /tests/unit_tests/libs/helpers/test_numpy_json_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/libs/helpers/test_numpy_json_encoder.py -------------------------------------------------------------------------------- /tests/unit_tests/libs/helpers/test_query_composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/libs/helpers/test_query_composer.py -------------------------------------------------------------------------------- /tests/unit_tests/libs/helpers/test_text_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/libs/helpers/test_text_helpers.py -------------------------------------------------------------------------------- /tests/unit_tests/libs/phases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/libs/phases/data_analyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/libs/phases/data_analyzer/test_data_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/libs/phases/data_analyzer/test_data_analyzer.py -------------------------------------------------------------------------------- /tests/unit_tests/libs/phases/data_cleaner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/libs/phases/data_cleaner/test_data_cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/libs/phases/data_cleaner/test_data_cleaner.py -------------------------------------------------------------------------------- /tests/unit_tests/libs/phases/data_extractor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/libs/phases/data_extractor/test_data_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/libs/phases/data_extractor/test_data_extractor.py -------------------------------------------------------------------------------- /tests/unit_tests/libs/phases/data_splitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/libs/phases/data_splitter/test_data_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/libs/phases/data_splitter/test_data_splitter.py -------------------------------------------------------------------------------- /tests/unit_tests/libs/phases/type_deductor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/libs/phases/type_deductor/test_type_deductor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/libs/phases/type_deductor/test_type_deductor.py -------------------------------------------------------------------------------- /tests/unit_tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindsdb/mindsdb_native/HEAD/tests/unit_tests/utils.py --------------------------------------------------------------------------------