workbench 0.8.210__tar.gz → 0.8.214__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {workbench-0.8.210 → workbench-0.8.214}/PKG-INFO +5 -4
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/pytorch.py +2 -3
- workbench-0.8.214/experiments/chem_info/knn_sims.py +22 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/inference/Dockerfile +0 -3
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/inference/requirements.txt +4 -3
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/ml_pipelines/requirements.txt +0 -2
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/pytorch_inference/requirements.txt +6 -6
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/pytorch_training/requirements.txt +4 -4
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/training/Dockerfile +0 -3
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/training/requirements.txt +1 -0
- {workbench-0.8.210 → workbench-0.8.214}/open_admet/all_models.py +1 -1
- {workbench-0.8.210 → workbench-0.8.214}/pyproject.toml +5 -3
- workbench-0.8.214/src/workbench/algorithms/dataframe/feature_space_proximity.py +180 -0
- workbench-0.8.214/src/workbench/algorithms/dataframe/fingerprint_proximity.py +252 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/dataframe/projection_2d.py +38 -20
- {workbench-0.8.210/src/workbench/model_scripts/custom_models/proximity → workbench-0.8.214/src/workbench/algorithms/dataframe}/proximity.py +41 -133
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/graph/light/proximity_graph.py +5 -5
- workbench-0.8.214/src/workbench/algorithms/models/noise_model.py +388 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/api/feature_set.py +9 -7
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/api/model.py +30 -2
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/artifacts/endpoint_core.py +59 -122
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/artifacts/model_core.py +3 -3
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/features_to_model/features_to_model.py +2 -2
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/model_to_endpoint/model_to_endpoint.py +1 -1
- workbench-0.8.214/src/workbench/model_script_utils/pytorch_utils.py +395 -0
- workbench-0.8.214/src/workbench/model_scripts/chemprop/chemprop.template +573 -0
- workbench-0.8.214/src/workbench/model_scripts/chemprop/generated_model_script.py +573 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/chem_info/fingerprints.py +7 -3
- workbench-0.8.214/src/workbench/model_scripts/custom_models/proximity/feature_space_proximity.py +180 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/proximity/feature_space_proximity.template +4 -4
- workbench-0.8.214/src/workbench/model_scripts/custom_models/uq_models/feature_space_proximity.py +180 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/uq_models/meta_uq.template +4 -4
- workbench-0.8.214/src/workbench/model_scripts/pytorch_model/generated_model_script.py +502 -0
- workbench-0.8.214/src/workbench/model_scripts/pytorch_model/pytorch.template +502 -0
- workbench-0.8.214/src/workbench/model_scripts/pytorch_model/pytorch_utils.py +395 -0
- workbench-0.8.214/src/workbench/model_scripts/pytorch_model/requirements.txt +2 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/script_generation.py +1 -1
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/xgb_model/generated_model_script.py +5 -5
- workbench-0.8.214/src/workbench/model_scripts/xgb_model/uq_harness.py +278 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/repl/workbench_shell.py +0 -5
- workbench-0.8.214/src/workbench/scripts/training_test.py +85 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/chem_utils/fingerprints.py +7 -3
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/chemprop_utils.py +12 -27
- workbench-0.8.214/src/workbench/utils/metrics_utils.py +172 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/model_utils.py +95 -7
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/pytorch_utils.py +35 -11
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/xgboost_local_crossfold.py +7 -113
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/xgboost_model_utils.py +17 -23
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench.egg-info/PKG-INFO +5 -4
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench.egg-info/SOURCES.txt +8 -2
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench.egg-info/entry_points.txt +1 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench.egg-info/requires.txt +4 -3
- workbench-0.8.214/tests/pytorch/pytorch_hello.py +63 -0
- workbench-0.8.210/experiments/chem_info/knn_sims.py +0 -25
- workbench-0.8.210/src/workbench/algorithms/dataframe/feature_space_proximity.py +0 -101
- workbench-0.8.210/src/workbench/algorithms/dataframe/fingerprint_proximity.py +0 -162
- workbench-0.8.210/src/workbench/algorithms/dataframe/proximity.py +0 -410
- workbench-0.8.210/src/workbench/model_scripts/chemprop/chemprop.template +0 -879
- workbench-0.8.210/src/workbench/model_scripts/chemprop/generated_model_script.py +0 -879
- workbench-0.8.210/src/workbench/model_scripts/custom_models/uq_models/proximity.py +0 -410
- workbench-0.8.210/src/workbench/model_scripts/pytorch_model/generated_model_script.py +0 -556
- workbench-0.8.210/src/workbench/model_scripts/pytorch_model/pytorch.template +0 -556
- workbench-0.8.210/src/workbench/model_scripts/pytorch_model/requirements.txt +0 -2
- workbench-0.8.210/tests/pytorch/pytorch_hello.py +0 -246
- {workbench-0.8.210 → workbench-0.8.214}/.flake8 +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/.github/dependabot.yml +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/.github/workflows/deploy-docs.yml +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/.github/workflows/python-lint.yml +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/.gitignore +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/CONTRIBUTING.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/Dockerfile +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/LICENSE +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/Makefile +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/SECURITY.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/Dockerfile +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/app.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/assets/favicon.ico +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/dashboard +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/deploy.sh +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/nginx.conf +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/open_source_config.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/data_sources/callbacks.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/data_sources/layout.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/data_sources/page.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/endpoints/callbacks.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/endpoints/layout.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/endpoints/page.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/feature_sets/callbacks.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/feature_sets/layout.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/feature_sets/page.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/license/page.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/main/callbacks.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/main/layout.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/main/page.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/models/callbacks.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/models/layout.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/models/page.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/pipelines/callbacks.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/pipelines/layout.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/pipelines/page.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/pages/status/page.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/static/dark.css +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/static/light.css +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/aws_dashboard/supervisord.conf +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/Dockerfile +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/app.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/assets/favicon.ico +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/callbacks.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/explorer +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/layout.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/nginx.conf +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/open_source_config.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/storage/callbacks.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/storage/callbacks_new.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/storage/layout_new.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/applications/compound_explorer/supervisord.conf +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/aws_account_setup.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/aws_identity_check.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/build_ml_pipeline.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/compound_explorer/.gitignore +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/compound_explorer/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/compound_explorer/app.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/compound_explorer/cdk.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/compound_explorer/compound_explorer/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/compound_explorer/compound_explorer/compound_explorer_stack.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/compound_explorer/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/event_bridge/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_compute/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_compute/app.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_compute/cdk.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_compute/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_compute/workbench_compute/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_compute/workbench_compute/workbench_compute_stack.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_core/.gitignore +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_core/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_core/app.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_core/cdk.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_core/requirements-dev.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_core/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_core/source.bat +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_core/workbench_core/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_core/workbench_core/workbench_core_stack.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_full/.gitignore +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_full/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_full/app.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_full/cdk.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_full/requirements-dev.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_full/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_full/source.bat +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_full/workbench_dashboard_full/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_full/workbench_dashboard_full/workbench_dashboard_stack.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_lite/.gitignore +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_lite/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_lite/app.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_lite/cdk.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_lite/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_lite/workbench_dashboard_lite/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/aws_setup/workbench_dashboard_lite/workbench_dashboard_lite/workbench_dashboard_stack.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/data/abalone.csv +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/data/karate_graph.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/data/test_data.csv +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/data/test_data.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/data/wine_dataset.csv +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/deploy_docker.sh +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/admin/aws_service_limits.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/admin/base_docker_push.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/admin/dashboard_docker_push.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/admin/dashboard_s3_plugins.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/admin/explorer_docker_push.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/admin/images/dashboard_secret_click.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/admin/images/serverless_quotas.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/admin/images/status_showing_S3_path.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/admin/pypi_release.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/admin/workbench_docker_for_lambdas.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/api_classes/data_source.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/api_classes/df_store.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/api_classes/endpoint.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/api_classes/feature_set.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/api_classes/meta.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/api_classes/model.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/api_classes/monitor.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/api_classes/overview.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/api_classes/parameter_store.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/api_classes/pipelines.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/api_classes/views.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/aws_setup/aws_access_management.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/aws_setup/aws_client_vpn.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/aws_setup/aws_setup.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/aws_setup/aws_tips_and_tricks.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/aws_setup/core_stack.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/aws_setup/dashboard_stack.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/aws_setup/domain_cert_setup.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/aws_setup/full_pipeline.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/aws_setup/iam_assume_role.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/aws_setup/sso_assume_role.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/blogs/aws_credentials_lock.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/blogs/canonicalization_and_tautomerization.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/blogs/compound_etl.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/blogs/compound_explorer.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/blogs/descriptor_drilldown.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/blogs/eda.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/blogs/feature_importances.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/blogs/fun_with_workbench/fun_with_endpoints.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/blogs/htg.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/blogs/index.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/blogs/model_monitoring.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/blogs/residual_analysis.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/cached/cached_data_source.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/cached/cached_endpoint.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/cached/cached_feature_set.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/cached/cached_meta.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/cached/cached_model.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/cached/overview.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/chem_utils/index.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/cloudwatch/index.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/comparisons/workbench_vs_databricks.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/compound_explorer/tox21.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/compound_explorer/toxicity_modeling.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/artifacts/artifact.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/artifacts/athena_source.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/artifacts/data_source_abstract.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/artifacts/endpoint_core.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/artifacts/feature_set_core.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/artifacts/model_core.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/artifacts/monitor_core.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/artifacts/overview.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/overview.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/transforms/data_loaders_heavy.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/transforms/data_loaders_light.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/transforms/data_to_features.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/transforms/features_to_model.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/transforms/model_to_endpoint.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/transforms/overview.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/transforms/pandas_transforms.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/transforms/transform.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/views/computation_view.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/views/display_view.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/views/inference_view.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/views/overview.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/core_classes/views/training_view.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/data_algorithms/dataframes/overview.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/data_algorithms/graphs/overview.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/data_algorithms/overview.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/data_algorithms/spark/overview.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/data_algorithms/sql/overview.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/enterprise/index.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/enterprise/private_saas.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/enterprise/project_branding.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/enterprise/themes.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/getting_started/index.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/glue/index.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/images/big_spider.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/images/graph_representation.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/images/powered_aws_dark_blue.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/images/powered_aws_transparent.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/images/powered_aws_white.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/images/powered_aws_with_tm_grey.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/images/scp.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/images/scp_labs.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/images/small_spider.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/images/workbench_concepts.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/index.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/lambda_layer/index.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/misc/faq.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/misc/general_info.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/misc/scp_consulting.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/misc/workbench_classes_concepts.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/model_utils/index.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/plugins/index.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/presentations/index.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/0_8_106.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/0_8_158.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/0_8_50.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/0_8_55.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/0_8_58.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/0_8_60.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/0_8_71.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/0_8_74.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/0_8_78.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_7_8.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_11.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_20.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_22.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_23.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_27.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_29.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_33.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_35.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_36.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_39.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_42.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_46.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_6.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/release_notes/archived/0_8_8.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/repl/index.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/road_maps/0_9_0.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/road_maps/0_9_5.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/themes/details.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/docs/themes/index.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/ag-grid/hello_world.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/chem_utils/tautomerize_smiles.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/datasource/datasource_from_df.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/datasource/datasource_from_s3.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/datasource/datasource_query.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/datasource/datasource_stats.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/datasource/datasource_to_featureset.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/endpoint/endpoint_details.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/endpoint/endpoint_inference.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/endpoint/endpoint_metrics.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/featureset/featureset_eda.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/featureset/featureset_query.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/full_ml_pipeline.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/glue_jobs/glue_example_1.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/glue_jobs/glue_example_2.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/glue_jobs/glue_example_3.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/glue_jobs/glue_launcher_examples/example_1.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/glue_jobs/glue_launcher_examples/example_2.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/meta/meta_list_endpoints.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/meta/meta_list_models.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/meta/meta_model_metrics.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/ml_pipelines/list_models.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/ml_pipelines/wine_classifier.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/model_utils/model_metrics.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/model_utils/model_to_endpoint.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/model_utils/onboard_model.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/chemprop.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/custom_model.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/dbscan.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/knn.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/random_forest.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/smiles_to_md_v1.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/uq/bayesian_ridge.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/uq/ensemble_xgb.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/uq/gaussian_process.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/uq/meta_uq.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/uq/ngboost.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/uq/quant_xgb.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/models/xgb_model.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/monitor/monitor_setup.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/monitor/monitor_usage.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/branding/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/branding/scp.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/components/custom_plugin.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/components/endpoint_plugin.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/components/endpoint_turbo.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/components/model_markdown.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/components/model_plugin.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/packages/my_plugin_utils/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/packages/my_plugin_utils/assets/foo.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/packages/my_plugin_utils/cool_stuff.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/pages/plugin_page_1.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/pages/plugin_page_2.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/pages/plugin_page_3.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/templates/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/views/model_plugin_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/examples/plugins/views/my_view_plugin.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/experiments/chem_info/bulk_sims.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/experiments/confidence_roc_curve.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/experiments/coverage_probability.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/experiments/db_scan_test.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/experiments/log_testing.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/experiments/networkx_id.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/experiments/prediction_intervals.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/experiments/residual_analysis.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/experiments/rocauc_testing.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/experiments/scatter_zoom_issue.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/experiments/sol_pipeline.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/glue_jobs/create_glue_workflow_with_trigger.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/glue_jobs/example_glue_job.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/glue_jobs/glue_job_pipeline.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/glue_jobs/glue_mixed_case.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/mkdocs.yml +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/ml_pipelines/hyper_uq.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/inference/main.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/inference/serve +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/meta_endpoint/Dockerfile +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/meta_endpoint/main.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/meta_endpoint/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/meta_endpoint/serve +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/ml_pipelines/Dockerfile +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/ml_pipelines/ml_pipeline_runner.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/pytorch_inference/Dockerfile +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/pytorch_inference/main.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/pytorch_inference/serve +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/pytorch_training/Dockerfile +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/pytorch_training/sagemaker_entrypoint.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/scripts/build_deploy.sh +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/tests/data/abalone_sm.csv +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/tests/example_model_script.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/tests/run_tests.sh +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/tests/test_inference.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/tests/test_training.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/training/sagemaker_entrypoint.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/workbench_inference/Dockerfile +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/workbench_inference/main.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/workbench_inference/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/model_docker_images/workbench_inference/serve +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/notebooks/Inference_On_Legacy_Models.ipynb +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/notebooks/ML_Pipeline_with_Workbench.ipynb +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/notebooks/ML_Pipeline_with_Workbench_2.ipynb +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/notebooks/Outliers_in_Workbench.ipynb +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/notebooks/Regression_Confidence_Experiments.ipynb +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/notebooks/Residual_Analysis.ipynb +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/notebooks/images/athena_query_aqsol.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/notebooks/images/aws_dashboard_aqsol.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/notebooks/images/dashboard_aqsol_features.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/notebooks/images/model_screenshot.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/notebooks/images/scp_labs.png +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/open_admet/.gitignore +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/open_admet/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/open_admet/hello_world.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/open_admet/load_data.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/open_admet/model_metrics.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/open_admet/run_inference.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/open_admet/utils/compute_model_metrics.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/presentations/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/active_logs.sh +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/athena_ddl_mixed_case.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/check_all_glue_tables.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/delete_invalid_views.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/delete_redis_keys.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/list_datacatalog.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/migration/copy_glue_database.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/migration/delete_sageworks_glue_database.sh +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/migration/ds_migrate.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/migration/endpoint_migrate.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/migration/fs_migrate.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/migration/model_migrate.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/pull_image_digest.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/redis_reaper.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/spam_list_tags.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/storage/convert_training_views.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/storage/migrate_data_source_via_df.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/storage/migrate_ds_meta.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/admin/test_no_workbench_config.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/ag_table_row_selection.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/compare_dataframes.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/compare_model_packages.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/delete_data_capture.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/endpoint_timing.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/get_tags.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/instantiation_timings.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/llm_deploys/deepseek_deploy.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/model_cache_refresh.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/model_endpoint_sanity_check.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/monitor_event_bridge.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/onboard_endpoints.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/onboard_models.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/pipeline_model_endpoint.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/pubchem/pubchem_example.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/pubchem/pubchem_query.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/pubchem/pubchem_query_with_cid.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/sagemaker_feature_group_issue.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/seaborn_to_plotly.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/storage/dns_data_to_features.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/storage/generate_jsonl_data.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/test_feature_resolution.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/test_feature_set_creation.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/tox21/test_tox_heuristic.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/scripts/tox21/tox21_to_df_store.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/setup.cfg +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/dataframe/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/dataframe/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/dataframe/data_source_eda.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/dataframe/storage/aggregation.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/dataframe/storage/feature_resolution.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/dataframe/storage/feature_spider.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/dataframe/storage/residuals_calculator.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/dataframe/storage/row_tagger.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/dataframe/storage/target_gradients.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/graph/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/graph/heavy/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/graph/light/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/graph/light/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/spark/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/sql/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/sql/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/sql/column_stats.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/sql/correlations.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/sql/descriptive_stats.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/sql/outliers.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/sql/sample_rows.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/algorithms/sql/value_counts.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/api/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/api/compound.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/api/data_source.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/api/df_store.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/api/endpoint.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/api/graph_store.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/api/meta.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/api/monitor.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/api/parameter_store.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/api/pipeline.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/cached/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/cached/cached_data_source.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/cached/cached_endpoint.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/cached/cached_feature_set.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/cached/cached_meta.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/cached/cached_model.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/cached/cached_pipeline.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/artifacts/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/artifacts/artifact.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/artifacts/athena_source.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/artifacts/cached_artifact_mixin.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/artifacts/data_capture_core.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/artifacts/data_source_abstract.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/artifacts/data_source_factory.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/artifacts/df_store_core.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/artifacts/feature_set_core.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/artifacts/monitor_core.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/artifacts/parameter_store_core.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/cloud_platform/aws/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/cloud_platform/aws/aws_account_clamp.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/cloud_platform/aws/aws_graph_store.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/cloud_platform/aws/aws_meta.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/cloud_platform/aws/aws_secrets_manager.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/cloud_platform/aws/aws_session.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/cloud_platform/aws/cache_dataframe.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/cloud_platform/azure/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/cloud_platform/cloud_meta.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/cloud_platform/gcp/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/pipelines/pipeline_executor.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_loaders/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_loaders/heavy/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_loaders/heavy/s3_heavy_to_data_source.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_loaders/light/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_loaders/light/csv_to_data_source.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_loaders/light/json_to_data_source.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_loaders/light/s3_to_data_source_light.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_data/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_data/heavy/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_data/heavy/emr/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_data/heavy/glue/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_data/light/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_data/light/clean_data.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_data/light/data_to_data_light.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_features/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_features/heavy/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_features/heavy/chunk/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_features/heavy/chunk/data_to_features_chunk.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_features/heavy/emr/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_features/heavy/glue/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_features/heavy/storage/data_to_features_heavy_old.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_features/light/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_features/light/data_to_features_light.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/data_to_features/light/molecular_descriptors.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/features_to_features/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/features_to_features/heavy/emr/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/features_to_features/heavy/glue/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/features_to_model/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/model_to_endpoint/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/pandas_transforms/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/pandas_transforms/data_to_pandas.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/pandas_transforms/features_to_pandas.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/pandas_transforms/pandas_to_data.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/pandas_transforms/pandas_to_features.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/pandas_transforms/pandas_to_features_chunked.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/transforms/transform.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/views/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/views/column_subset_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/views/computation_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/views/create_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/views/display_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/views/inference_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/views/pandas_to_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/views/storage/mdq_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/views/training_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/views/view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/core/views/view_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_script_utils/model_script_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_script_utils/uq_harness.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/chemprop/model_script_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/chemprop/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/chem_info/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/chem_info/mol_descriptors.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/chem_info/mol_standardize.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/chem_info/molecular_descriptors.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/chem_info/morgan_fingerprints.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/chem_info/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/meta_endpoints/example.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/network_security/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/proximity/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/proximity/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/uq_models/Readme.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/uq_models/bayesian_ridge.template +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/uq_models/ensemble_xgb.template +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/uq_models/gaussian_process.template +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/uq_models/ngboost.template +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_models/uq_models/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_script_example/custom_model_script.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/custom_script_example/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/ensemble_xgb/ensemble_xgb.template +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/ensemble_xgb/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/pytorch_model/model_script_utils.py +0 -0
- {workbench-0.8.210/src/workbench/model_scripts/xgb_model → workbench-0.8.214/src/workbench/model_scripts/pytorch_model}/uq_harness.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/scikit_learn/generated_model_script.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/scikit_learn/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/scikit_learn/scikit_learn.template +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/uq_models/generated_model_script.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/xgb_model/model_script_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/xgb_model/requirements.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/model_scripts/xgb_model/xgb_model.template +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/repl/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/resources/open_source_api.key +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/resources/signature_verify_pub.pem +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/scripts/check_double_bond_stereo.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/scripts/endpoint_test.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/scripts/glue_launcher.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/scripts/lambda_test.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/scripts/ml_pipeline_batch.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/scripts/ml_pipeline_sqs.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/scripts/monitor_cloud_watch.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/scripts/redis_expire.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/scripts/redis_report.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/scripts/show_config.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/dark/base_css.url +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/dark/custom.css +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/dark/plotly.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/light/base_css.url +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/light/branding.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/light/custom.css +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/light/plotly.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/midnight_blue/base_css.url +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/midnight_blue/branding.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/midnight_blue/custom.css +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/midnight_blue/plotly.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/quartz/base_css.url +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/quartz/custom.css +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/quartz/plotly.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/quartz_dark/base_css.url +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/quartz_dark/custom.css +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/themes/quartz_dark/plotly.json +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/ai_compound_generator.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/ai_summary.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/ai_synth.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/athena_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/aws_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/bulk_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/cache.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/chem_utils/__init__.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/chem_utils/misc.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/chem_utils/mol_descriptors.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/chem_utils/mol_standardize.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/chem_utils/mol_tagging.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/chem_utils/projections.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/chem_utils/salts.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/chem_utils/sdf.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/chem_utils/toxicity.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/chem_utils/vis.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/cloudwatch_handler.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/cloudwatch_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/color_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/config_manager.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/dashboard_metrics.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/datetime_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/deprecated_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/df_to_endpoint.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/ecs_info.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/endpoint_metrics.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/endpoint_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/extract_model_artifact.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/glue_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/graph_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/ipython_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/json_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/lambda_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/license_manager.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/log_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/markdown_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/monitor_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/pandas_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/performance_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/pipeline_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/plot_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/plugin_manager.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/prox_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/redis_cache.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/repl_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/s3_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/shap_utils.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/shapley_values.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/symbols.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/test_data_generator.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/theme_manager.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/trace_calls.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/type_abbrev.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/workbench_cache.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/workbench_event_bridge.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/workbench_logging.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/utils/workbench_sqs.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/component_interface.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/correlation_matrix.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/data_details_markdown.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/endpoint_metric_plots.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/experiments/dashboard_metric_plots.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/experiments/outlier_plot.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/model_plot.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugin_interface.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugin_unit_test.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/ag_table.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/confusion_matrix.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/dashboard_status.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/data_details.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/endpoint_details.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/generated_compounds.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/graph_plot.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/license_details.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/model_details.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/molecule_panel.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/molecule_viewer.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/pipeline_details.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/proximity_mini_graph.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/scatter_plot.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/plugins/shap_summary_plot.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/regression_plot.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/components/violin_plots.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/page_views/data_sources_page_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/page_views/endpoints_page_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/page_views/feature_sets_page_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/page_views/main_page.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/page_views/models_page_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/page_views/page_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench/web_interface/page_views/pipelines_page_view.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench.egg-info/dependency_links.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/src/workbench.egg-info/top_level.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_aqsol_artifacts.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_aqsol_rt_artifacts.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_basic_test_artifacts.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_copy_artifacts.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_empty_model_group.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_endpoints_for_timing.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_graph_artifacts.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_knn_artifacts.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_meta_endpoints.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_pipeline_model.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_proximity_models.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_quant_regression_artifacts.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_realtime_endpoint.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_training_adjusted_artifacts.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/create_wine_artifacts.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/delete_stress_test_artifacts.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/delete_test_artifacts.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/hyper_testing.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/regression_ensemble.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/test_artifacts/stress_test_aws.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/README.md +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/artifacts/data_source_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/artifacts/empty_model_group.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/artifacts/endpoint_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/artifacts/featureset_ingest_boundaries.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/artifacts/featureset_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/artifacts/graph_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/artifacts/model_metrics_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/artifacts/model_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/aws_account/aws_account_clamp_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/cached/cached_artifact_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/chem_info/test_tautomerization.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/corner_cases/end_to_end.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/df_store/df_store_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/lambda/decompress_layers.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/pandas_tests/test_drift.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/parameter_store/param_store_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/plugin_tests/crashing_plugin.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/requirements-dev.txt +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/specific/capital_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/specific/column_changes.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/specific/config_manager.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/specific/deletion_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/specific/shap_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/transforms/data_to_data_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/transforms/data_to_features_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/transforms/features_to_model_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/transforms/model_to_endpoint_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/transforms/pandas_to_data_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/transforms/pandas_to_features_test.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/views/view_tests.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/views/view_tests_complex.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/web_components/confusion_matrix_test.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/web_components/correlation_matrix_test.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/web_components/graph_plot_test.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/web_components/plugin_interface_test.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tests/web_components/scatter_plot_test.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/tox.ini +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/ui_testing/assets/custom.css +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/ui_testing/table_comparison.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/ui_testing/theme_switching.py +0 -0
- {workbench-0.8.210 → workbench-0.8.214}/ui_testing/theme_switching_2.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: workbench
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.214
|
|
4
4
|
Summary: Workbench: A Dashboard and Python API for creating and deploying AWS SageMaker Model Pipelines
|
|
5
5
|
Author-email: SuperCowPowers LLC <support@supercowpowers.com>
|
|
6
6
|
License: MIT License
|
|
@@ -47,6 +47,7 @@ Requires-Dist: cryptography>=44.0.2
|
|
|
47
47
|
Requires-Dist: ipython>=8.37.0
|
|
48
48
|
Requires-Dist: pyreadline3; sys_platform == "win32"
|
|
49
49
|
Requires-Dist: scikit-learn>=1.5.2
|
|
50
|
+
Requires-Dist: umap-learn>=0.5.8
|
|
50
51
|
Requires-Dist: xgboost>=3.0.3
|
|
51
52
|
Requires-Dist: joblib>=1.3.2
|
|
52
53
|
Requires-Dist: requests>=2.26.0
|
|
@@ -55,7 +56,7 @@ Requires-Dist: mordredcommunity>=2.0.6
|
|
|
55
56
|
Requires-Dist: workbench-bridges>=0.1.16
|
|
56
57
|
Provides-Extra: ui
|
|
57
58
|
Requires-Dist: plotly>=6.0.0; extra == "ui"
|
|
58
|
-
Requires-Dist: dash
|
|
59
|
+
Requires-Dist: dash>=3.0.0; extra == "ui"
|
|
59
60
|
Requires-Dist: dash-bootstrap-components>=1.6.0; extra == "ui"
|
|
60
61
|
Requires-Dist: dash-bootstrap-templates>=1.3.0; extra == "ui"
|
|
61
62
|
Requires-Dist: dash_ag_grid; extra == "ui"
|
|
@@ -70,8 +71,8 @@ Requires-Dist: flake8; extra == "dev"
|
|
|
70
71
|
Requires-Dist: black; extra == "dev"
|
|
71
72
|
Provides-Extra: all
|
|
72
73
|
Requires-Dist: networkx>=3.2; extra == "all"
|
|
73
|
-
Requires-Dist: plotly>=
|
|
74
|
-
Requires-Dist: dash
|
|
74
|
+
Requires-Dist: plotly>=6.0.0; extra == "all"
|
|
75
|
+
Requires-Dist: dash>=3.0.0; extra == "all"
|
|
75
76
|
Requires-Dist: dash-bootstrap-components>=1.6.0; extra == "all"
|
|
76
77
|
Requires-Dist: dash-bootstrap-templates>=1.3.0; extra == "all"
|
|
77
78
|
Requires-Dist: dash_ag_grid; extra == "all"
|
|
@@ -15,7 +15,7 @@ if recreate or not Model("aqsol-pytorch-reg").exists():
|
|
|
15
15
|
m = feature_set.to_model(
|
|
16
16
|
name="aqsol-pytorch-reg",
|
|
17
17
|
model_type=ModelType.UQ_REGRESSOR,
|
|
18
|
-
model_framework=ModelFramework.
|
|
18
|
+
model_framework=ModelFramework.PYTORCH,
|
|
19
19
|
feature_list=feature_list,
|
|
20
20
|
target_column=target,
|
|
21
21
|
description="PyTorch Regression Model for AQSol",
|
|
@@ -39,12 +39,11 @@ if recreate or not Model("aqsol-pytorch-class").exists():
|
|
|
39
39
|
m = feature_set.to_model(
|
|
40
40
|
name="aqsol-pytorch-class",
|
|
41
41
|
model_type=ModelType.CLASSIFIER,
|
|
42
|
-
model_framework=ModelFramework.
|
|
42
|
+
model_framework=ModelFramework.PYTORCH,
|
|
43
43
|
feature_list=feature_list,
|
|
44
44
|
target_column="solubility_class",
|
|
45
45
|
description="PyTorch Classification Model for AQSol",
|
|
46
46
|
tags=["pytorch", "molecular descriptors"],
|
|
47
|
-
hyperparameters={"max_epochs": 150, "layers": "256-128-64"},
|
|
48
47
|
)
|
|
49
48
|
m.set_owner("BW")
|
|
50
49
|
m.set_class_labels(["low", "medium", "high"])
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Workbench Imports
|
|
2
|
+
from workbench.api.df_store import DFStore
|
|
3
|
+
from workbench.algorithms.dataframe.fingerprint_proximity import FingerprintProximity
|
|
4
|
+
|
|
5
|
+
# Grab tox21 dataset (only 10)
|
|
6
|
+
tox_df = DFStore().get("/datasets/chem_info/tox21_10")
|
|
7
|
+
# tox_df = tox_df.sample(100)
|
|
8
|
+
|
|
9
|
+
# Compute FingerprintProximity (auto-computes fingerprints from SMILES)
|
|
10
|
+
prox = FingerprintProximity(tox_df, id_column="id")
|
|
11
|
+
|
|
12
|
+
# Get all neighbors for the first 3 compounds
|
|
13
|
+
all_ids = prox.df["id"].tolist()[:3]
|
|
14
|
+
neighbors_df = prox.neighbors(all_ids, n_neighbors=5)
|
|
15
|
+
print("\nNeighbors for first 3 compounds:")
|
|
16
|
+
print(neighbors_df.head(20))
|
|
17
|
+
|
|
18
|
+
# Query for neighbors for a specific compound
|
|
19
|
+
query_id = prox.df["id"].iloc[1]
|
|
20
|
+
query_neighbors_df = prox.neighbors(query_id, n_neighbors=5)
|
|
21
|
+
print(f"\nKNN: Neighbors for query ID {query_id}:")
|
|
22
|
+
print(query_neighbors_df)
|
|
@@ -5,9 +5,6 @@ COPY requirements.txt /tmp/
|
|
|
5
5
|
# Install dependencies
|
|
6
6
|
RUN pip install --no-cache-dir -r /tmp/requirements.txt
|
|
7
7
|
|
|
8
|
-
# MAPIE complains about Python 3.12, install with ignore flag
|
|
9
|
-
RUN pip install --no-cache-dir --ignore-requires-python mapie
|
|
10
|
-
|
|
11
8
|
FROM python:3.12-slim
|
|
12
9
|
|
|
13
10
|
# Copy installed packages from builder
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
fastapi==0.121.0 # FastAPI for serving the model
|
|
2
|
-
uvicorn==0.34.0 # ASGI server for running FastAPI
|
|
3
1
|
scikit-learn==1.7.2
|
|
4
2
|
xgboost==3.1.1
|
|
5
3
|
lightgbm==4.6.0
|
|
4
|
+
mapie==1.2.0
|
|
6
5
|
ngboost==0.5.6
|
|
7
6
|
pandas==2.3.3
|
|
8
7
|
awswrangler==3.14.0
|
|
9
|
-
joblib==1.5.2
|
|
8
|
+
joblib==1.5.2
|
|
9
|
+
fastapi==0.121.0 # FastAPI for serving the model
|
|
10
|
+
uvicorn==0.34.0 # ASGI server for running FastAPI
|
{workbench-0.8.210 → workbench-0.8.214}/model_docker_images/pytorch_inference/requirements.txt
RENAMED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
torch==2.9.1
|
|
6
6
|
pandas==2.3.3
|
|
7
7
|
awswrangler==3.14.0
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
joblib==1.5.
|
|
11
|
-
fastapi==0.122.0 # FastAPI for serving the model
|
|
12
|
-
uvicorn==0.38.0 # ASGI server for running FastAPI
|
|
8
|
+
lightgbm==4.6.0
|
|
9
|
+
mapie==1.2.0
|
|
10
|
+
joblib==1.5.3
|
|
13
11
|
chemprop==2.2.1 # Message Passing Neural Networks for molecular property prediction
|
|
14
|
-
rdkit==2025.9.
|
|
12
|
+
rdkit==2025.9.3 # Cheminformatics toolkit for SMILES processing
|
|
13
|
+
fastapi==0.126.0 # FastAPI for serving the model
|
|
14
|
+
uvicorn==0.38.0 # ASGI server for running FastAPI
|
{workbench-0.8.210 → workbench-0.8.214}/model_docker_images/pytorch_training/requirements.txt
RENAMED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
torch==2.9.1
|
|
6
6
|
pandas==2.3.3
|
|
7
7
|
awswrangler==3.14.0
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
joblib==1.5.
|
|
8
|
+
lightgbm==4.6.0
|
|
9
|
+
mapie==1.2.0
|
|
10
|
+
joblib==1.5.3
|
|
11
11
|
chemprop==2.2.1 # Message Passing Neural Networks for molecular property prediction
|
|
12
|
-
rdkit==2025.9.
|
|
12
|
+
rdkit==2025.9.3 # Cheminformatics toolkit for SMILES processing
|
|
@@ -13,9 +13,6 @@ COPY requirements.txt /tmp/
|
|
|
13
13
|
# Install dependencies
|
|
14
14
|
RUN pip install --no-cache-dir -r /tmp/requirements.txt
|
|
15
15
|
|
|
16
|
-
# MAPIE complains about Python 3.12, install with ignore flag
|
|
17
|
-
RUN pip install --no-cache-dir --ignore-requires-python mapie
|
|
18
|
-
|
|
19
16
|
# Copy the SageMaker entrypoint script
|
|
20
17
|
COPY sagemaker_entrypoint.py /opt/program/
|
|
21
18
|
WORKDIR /opt/program
|
|
@@ -106,7 +106,7 @@ def create_models_for_featureset(fs_name: str, rdkit_features: list[str]):
|
|
|
106
106
|
pytorch_model = fs.to_model(
|
|
107
107
|
name=pytorch_model_name,
|
|
108
108
|
model_type=ModelType.UQ_REGRESSOR,
|
|
109
|
-
model_framework=ModelFramework.
|
|
109
|
+
model_framework=ModelFramework.PYTORCH,
|
|
110
110
|
target_column=target,
|
|
111
111
|
feature_list=non_zero_shap,
|
|
112
112
|
description=f"PyTorch Tabular model for {base_name} prediction",
|
|
@@ -36,6 +36,7 @@ dependencies = [
|
|
|
36
36
|
"ipython >=8.37.0",
|
|
37
37
|
"pyreadline3; sys_platform == 'win32'",
|
|
38
38
|
"scikit-learn >=1.5.2",
|
|
39
|
+
"umap-learn >=0.5.8",
|
|
39
40
|
"xgboost >=3.0.3",
|
|
40
41
|
"joblib >= 1.3.2",
|
|
41
42
|
"requests >= 2.26.0",
|
|
@@ -47,7 +48,7 @@ dependencies = [
|
|
|
47
48
|
[project.optional-dependencies]
|
|
48
49
|
ui = [
|
|
49
50
|
"plotly>=6.0.0",
|
|
50
|
-
"dash
|
|
51
|
+
"dash>=3.0.0",
|
|
51
52
|
"dash-bootstrap-components>=1.6.0",
|
|
52
53
|
"dash-bootstrap-templates>=1.3.0",
|
|
53
54
|
"dash_ag_grid",
|
|
@@ -57,8 +58,8 @@ ui = [
|
|
|
57
58
|
dev = ["pytest", "pytest-sugar", "coverage", "pytest-cov", "flake8", "black"]
|
|
58
59
|
all = [
|
|
59
60
|
"networkx>=3.2",
|
|
60
|
-
"plotly>=
|
|
61
|
-
"dash>=
|
|
61
|
+
"plotly>=6.0.0",
|
|
62
|
+
"dash>=3.0.0",
|
|
62
63
|
"dash-bootstrap-components>=1.6.0",
|
|
63
64
|
"dash-bootstrap-templates>=1.3.0",
|
|
64
65
|
"dash_ag_grid",
|
|
@@ -95,6 +96,7 @@ ml_pipeline_batch = "workbench.scripts.ml_pipeline_batch:main"
|
|
|
95
96
|
ml_pipeline_sqs = "workbench.scripts.ml_pipeline_sqs:main"
|
|
96
97
|
lambda_test = "workbench.scripts.lambda_test:main"
|
|
97
98
|
endpoint_test = "workbench.scripts.endpoint_test:main"
|
|
99
|
+
training_test = "workbench.scripts.training_test:main"
|
|
98
100
|
|
|
99
101
|
[tool.pytest.ini_options]
|
|
100
102
|
addopts = "-v --cov-report term-missing"
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
import pandas as pd
|
|
2
|
+
import numpy as np
|
|
3
|
+
from sklearn.preprocessing import StandardScaler
|
|
4
|
+
from sklearn.neighbors import NearestNeighbors
|
|
5
|
+
from typing import List, Optional
|
|
6
|
+
import logging
|
|
7
|
+
|
|
8
|
+
# Workbench Imports
|
|
9
|
+
from workbench.algorithms.dataframe.proximity import Proximity
|
|
10
|
+
from workbench.algorithms.dataframe.projection_2d import Projection2D
|
|
11
|
+
|
|
12
|
+
# Set up logging
|
|
13
|
+
log = logging.getLogger("workbench")
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class FeatureSpaceProximity(Proximity):
|
|
17
|
+
"""Proximity computations for numeric feature spaces using Euclidean distance."""
|
|
18
|
+
|
|
19
|
+
def __init__(
|
|
20
|
+
self,
|
|
21
|
+
df: pd.DataFrame,
|
|
22
|
+
id_column: str,
|
|
23
|
+
features: List[str],
|
|
24
|
+
target: Optional[str] = None,
|
|
25
|
+
track_columns: Optional[List[str]] = None,
|
|
26
|
+
):
|
|
27
|
+
"""
|
|
28
|
+
Initialize the FeatureSpaceProximity class.
|
|
29
|
+
|
|
30
|
+
Args:
|
|
31
|
+
df: DataFrame containing data for neighbor computations.
|
|
32
|
+
id_column: Name of the column used as the identifier.
|
|
33
|
+
features: List of feature column names to be used for neighbor computations.
|
|
34
|
+
target: Name of the target column. Defaults to None.
|
|
35
|
+
track_columns: Additional columns to track in results. Defaults to None.
|
|
36
|
+
"""
|
|
37
|
+
# Validate and filter features before calling parent init
|
|
38
|
+
self._raw_features = features
|
|
39
|
+
super().__init__(df, id_column=id_column, features=features, target=target, track_columns=track_columns)
|
|
40
|
+
|
|
41
|
+
def _prepare_data(self) -> None:
|
|
42
|
+
"""Filter out non-numeric features and drop NaN rows."""
|
|
43
|
+
# Validate features
|
|
44
|
+
self.features = self._validate_features(self.df, self._raw_features)
|
|
45
|
+
|
|
46
|
+
# Drop NaN rows for the features we're using
|
|
47
|
+
self.df = self.df.dropna(subset=self.features).copy()
|
|
48
|
+
|
|
49
|
+
def _validate_features(self, df: pd.DataFrame, features: List[str]) -> List[str]:
|
|
50
|
+
"""Remove non-numeric features and log warnings."""
|
|
51
|
+
non_numeric = [f for f in features if f not in df.select_dtypes(include=["number"]).columns]
|
|
52
|
+
if non_numeric:
|
|
53
|
+
log.warning(f"Non-numeric features {non_numeric} aren't currently supported, excluding them")
|
|
54
|
+
return [f for f in features if f not in non_numeric]
|
|
55
|
+
|
|
56
|
+
def _build_model(self) -> None:
|
|
57
|
+
"""Standardize features and fit Nearest Neighbors model."""
|
|
58
|
+
self.scaler = StandardScaler()
|
|
59
|
+
X = self.scaler.fit_transform(self.df[self.features])
|
|
60
|
+
self.nn = NearestNeighbors().fit(X)
|
|
61
|
+
|
|
62
|
+
def _transform_features(self, df: pd.DataFrame) -> np.ndarray:
|
|
63
|
+
"""Transform features using the fitted scaler."""
|
|
64
|
+
return self.scaler.transform(df[self.features])
|
|
65
|
+
|
|
66
|
+
def _project_2d(self) -> None:
|
|
67
|
+
"""Project the numeric features to 2D for visualization."""
|
|
68
|
+
if len(self.features) >= 2:
|
|
69
|
+
self.df = Projection2D().fit_transform(self.df, features=self.features)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
# Testing the FeatureSpaceProximity class
|
|
73
|
+
if __name__ == "__main__":
|
|
74
|
+
|
|
75
|
+
pd.set_option("display.max_columns", None)
|
|
76
|
+
pd.set_option("display.width", 1000)
|
|
77
|
+
|
|
78
|
+
# Create a sample DataFrame
|
|
79
|
+
data = {
|
|
80
|
+
"ID": [1, 2, 3, 4, 5],
|
|
81
|
+
"Feature1": [0.1, 0.2, 0.3, 0.4, 0.5],
|
|
82
|
+
"Feature2": [0.5, 0.4, 0.3, 0.2, 0.1],
|
|
83
|
+
"Feature3": [2.5, 2.4, 2.3, 2.3, np.nan],
|
|
84
|
+
}
|
|
85
|
+
df = pd.DataFrame(data)
|
|
86
|
+
|
|
87
|
+
# Test the FeatureSpaceProximity class
|
|
88
|
+
features = ["Feature1", "Feature2", "Feature3"]
|
|
89
|
+
prox = FeatureSpaceProximity(df, id_column="ID", features=features)
|
|
90
|
+
print(prox.neighbors(1, n_neighbors=2))
|
|
91
|
+
|
|
92
|
+
# Test the neighbors method with radius
|
|
93
|
+
print(prox.neighbors(1, radius=2.0))
|
|
94
|
+
|
|
95
|
+
# Test with Features list
|
|
96
|
+
prox = FeatureSpaceProximity(df, id_column="ID", features=["Feature1"])
|
|
97
|
+
print(prox.neighbors(1))
|
|
98
|
+
|
|
99
|
+
# Create a sample DataFrame
|
|
100
|
+
data = {
|
|
101
|
+
"foo_id": ["a", "b", "c", "d", "e"], # Testing string IDs
|
|
102
|
+
"Feature1": [0.1, 0.2, 0.3, 0.4, 0.5],
|
|
103
|
+
"Feature2": [0.5, 0.4, 0.3, 0.2, 0.1],
|
|
104
|
+
"target": [1, 0, 1, 0, 5],
|
|
105
|
+
}
|
|
106
|
+
df = pd.DataFrame(data)
|
|
107
|
+
|
|
108
|
+
# Test with String Ids
|
|
109
|
+
prox = FeatureSpaceProximity(
|
|
110
|
+
df,
|
|
111
|
+
id_column="foo_id",
|
|
112
|
+
features=["Feature1", "Feature2"],
|
|
113
|
+
target="target",
|
|
114
|
+
track_columns=["Feature1", "Feature2"],
|
|
115
|
+
)
|
|
116
|
+
print(prox.neighbors(["a", "b"]))
|
|
117
|
+
|
|
118
|
+
# Test duplicate IDs
|
|
119
|
+
data = {
|
|
120
|
+
"foo_id": ["a", "b", "c", "d", "d"], # Duplicate ID (d)
|
|
121
|
+
"Feature1": [0.1, 0.2, 0.3, 0.4, 0.5],
|
|
122
|
+
"Feature2": [0.5, 0.4, 0.3, 0.2, 0.1],
|
|
123
|
+
"target": [1, 0, 1, 0, 5],
|
|
124
|
+
}
|
|
125
|
+
df = pd.DataFrame(data)
|
|
126
|
+
prox = FeatureSpaceProximity(df, id_column="foo_id", features=["Feature1", "Feature2"], target="target")
|
|
127
|
+
print(df.equals(prox.df))
|
|
128
|
+
|
|
129
|
+
# Test on real data from Workbench
|
|
130
|
+
from workbench.api import FeatureSet, Model
|
|
131
|
+
|
|
132
|
+
fs = FeatureSet("aqsol_features")
|
|
133
|
+
model = Model("aqsol-regression")
|
|
134
|
+
features = model.features()
|
|
135
|
+
df = fs.pull_dataframe()
|
|
136
|
+
prox = FeatureSpaceProximity(
|
|
137
|
+
df, id_column=fs.id_column, features=model.features(), target=model.target(), track_columns=features
|
|
138
|
+
)
|
|
139
|
+
print(prox.neighbors(df[fs.id_column].tolist()[:3]))
|
|
140
|
+
|
|
141
|
+
print("\n" + "=" * 80)
|
|
142
|
+
print("Testing isolated_compounds...")
|
|
143
|
+
print("=" * 80)
|
|
144
|
+
|
|
145
|
+
# Test isolated data in the top 1%
|
|
146
|
+
isolated_1pct = prox.isolated(top_percent=1.0)
|
|
147
|
+
print(f"\nTop 1% most isolated compounds (n={len(isolated_1pct)}):")
|
|
148
|
+
print(isolated_1pct[[fs.id_column, "nn_distance", "nn_id"]].head(10))
|
|
149
|
+
|
|
150
|
+
# Test isolated data in the top 5%
|
|
151
|
+
isolated_5pct = prox.isolated(top_percent=5.0)
|
|
152
|
+
print(f"\nTop 5% most isolated compounds (n={len(isolated_5pct)}):")
|
|
153
|
+
print(isolated_5pct[[fs.id_column, "nn_distance", "nn_id"]].head(10))
|
|
154
|
+
|
|
155
|
+
print("\n" + "=" * 80)
|
|
156
|
+
print("Testing target_gradients...")
|
|
157
|
+
print("=" * 80)
|
|
158
|
+
|
|
159
|
+
# Test with different parameters
|
|
160
|
+
gradients_1pct = prox.target_gradients(top_percent=1.0, min_delta=1.0)
|
|
161
|
+
print(f"\nTop 1% target gradients (min_delta=5.0) (n={len(gradients_1pct)}):")
|
|
162
|
+
print(
|
|
163
|
+
gradients_1pct[[fs.id_column, model.target(), "neighbor_median", "neighbor_median_diff", "gradient"]].head(10)
|
|
164
|
+
)
|
|
165
|
+
|
|
166
|
+
gradients_5pct = prox.target_gradients(top_percent=5.0, min_delta=5.0)
|
|
167
|
+
print(f"\nTop 5% target gradients (min_delta=5.0) (n={len(gradients_5pct)}):")
|
|
168
|
+
print(
|
|
169
|
+
gradients_5pct[[fs.id_column, model.target(), "neighbor_median", "neighbor_median_diff", "gradient"]].head(10)
|
|
170
|
+
)
|
|
171
|
+
|
|
172
|
+
# Visualize the 2D projection
|
|
173
|
+
print("\n" + "=" * 80)
|
|
174
|
+
print("Visualizing 2D Projection...")
|
|
175
|
+
print("=" * 80)
|
|
176
|
+
from workbench.web_interface.components.plugin_unit_test import PluginUnitTest
|
|
177
|
+
from workbench.web_interface.components.plugins.scatter_plot import ScatterPlot
|
|
178
|
+
|
|
179
|
+
unit_test = PluginUnitTest(ScatterPlot, input_data=prox.df[:1000], x="x", y="y")
|
|
180
|
+
unit_test.run()
|
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
import pandas as pd
|
|
2
|
+
import numpy as np
|
|
3
|
+
from sklearn.neighbors import NearestNeighbors
|
|
4
|
+
from typing import Union, List, Optional
|
|
5
|
+
import logging
|
|
6
|
+
|
|
7
|
+
# Workbench Imports
|
|
8
|
+
from workbench.algorithms.dataframe.proximity import Proximity
|
|
9
|
+
from workbench.algorithms.dataframe.projection_2d import Projection2D
|
|
10
|
+
from workbench.utils.chem_utils.fingerprints import compute_morgan_fingerprints
|
|
11
|
+
|
|
12
|
+
# Set up logging
|
|
13
|
+
log = logging.getLogger("workbench")
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class FingerprintProximity(Proximity):
|
|
17
|
+
"""Proximity computations for binary fingerprints using Jaccard/Tanimoto similarity."""
|
|
18
|
+
|
|
19
|
+
def __init__(
|
|
20
|
+
self,
|
|
21
|
+
df: pd.DataFrame,
|
|
22
|
+
id_column: str,
|
|
23
|
+
fingerprint_column: Optional[str] = None,
|
|
24
|
+
target: Optional[str] = None,
|
|
25
|
+
track_columns: Optional[List[str]] = None,
|
|
26
|
+
radius: int = 2,
|
|
27
|
+
n_bits: int = 1024,
|
|
28
|
+
counts: bool = False,
|
|
29
|
+
) -> None:
|
|
30
|
+
"""
|
|
31
|
+
Initialize the FingerprintProximity class for binary fingerprint similarity.
|
|
32
|
+
|
|
33
|
+
Args:
|
|
34
|
+
df: DataFrame containing fingerprints or SMILES.
|
|
35
|
+
id_column: Name of the column used as an identifier.
|
|
36
|
+
fingerprint_column: Name of the column containing fingerprints (bit strings).
|
|
37
|
+
If None, looks for existing "fingerprint" column or computes from SMILES.
|
|
38
|
+
target: Name of the target column. Defaults to None.
|
|
39
|
+
track_columns: Additional columns to track in results. Defaults to None.
|
|
40
|
+
radius: Radius for Morgan fingerprint computation (default: 2).
|
|
41
|
+
n_bits: Number of bits for fingerprint (default: 1024).
|
|
42
|
+
counts: Whether to use count simulation (default: False).
|
|
43
|
+
"""
|
|
44
|
+
# Store fingerprint computation parameters
|
|
45
|
+
self._fp_radius = radius
|
|
46
|
+
self._fp_n_bits = n_bits
|
|
47
|
+
self._fp_counts = counts
|
|
48
|
+
|
|
49
|
+
# Store the requested fingerprint column (may be None)
|
|
50
|
+
self._fingerprint_column_arg = fingerprint_column
|
|
51
|
+
|
|
52
|
+
# Determine fingerprint column name (but don't compute yet - that happens in _prepare_data)
|
|
53
|
+
self.fingerprint_column = self._resolve_fingerprint_column_name(df, fingerprint_column)
|
|
54
|
+
|
|
55
|
+
# Call parent constructor with fingerprint_column as the only "feature"
|
|
56
|
+
super().__init__(
|
|
57
|
+
df,
|
|
58
|
+
id_column=id_column,
|
|
59
|
+
features=[self.fingerprint_column],
|
|
60
|
+
target=target,
|
|
61
|
+
track_columns=track_columns,
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
@staticmethod
|
|
65
|
+
def _resolve_fingerprint_column_name(df: pd.DataFrame, fingerprint_column: Optional[str]) -> str:
|
|
66
|
+
"""
|
|
67
|
+
Determine the fingerprint column name, validating it exists or can be computed.
|
|
68
|
+
|
|
69
|
+
Args:
|
|
70
|
+
df: Input DataFrame.
|
|
71
|
+
fingerprint_column: Explicitly specified fingerprint column, or None.
|
|
72
|
+
|
|
73
|
+
Returns:
|
|
74
|
+
Name of the fingerprint column to use.
|
|
75
|
+
|
|
76
|
+
Raises:
|
|
77
|
+
ValueError: If no fingerprint column exists and no SMILES column found.
|
|
78
|
+
"""
|
|
79
|
+
# If explicitly provided, validate it exists
|
|
80
|
+
if fingerprint_column is not None:
|
|
81
|
+
if fingerprint_column not in df.columns:
|
|
82
|
+
raise ValueError(f"Fingerprint column '{fingerprint_column}' not found in DataFrame")
|
|
83
|
+
return fingerprint_column
|
|
84
|
+
|
|
85
|
+
# Check for existing "fingerprint" column
|
|
86
|
+
if "fingerprint" in df.columns:
|
|
87
|
+
log.info("Using existing 'fingerprint' column")
|
|
88
|
+
return "fingerprint"
|
|
89
|
+
|
|
90
|
+
# Will need to compute from SMILES - validate SMILES column exists
|
|
91
|
+
smiles_column = next((col for col in df.columns if col.lower() == "smiles"), None)
|
|
92
|
+
if smiles_column is None:
|
|
93
|
+
raise ValueError(
|
|
94
|
+
"No fingerprint column provided and no SMILES column found. "
|
|
95
|
+
"Either provide a fingerprint_column or include a 'smiles' column in the DataFrame."
|
|
96
|
+
)
|
|
97
|
+
|
|
98
|
+
# Fingerprints will be computed in _prepare_data
|
|
99
|
+
return "fingerprint"
|
|
100
|
+
|
|
101
|
+
def _prepare_data(self) -> None:
|
|
102
|
+
"""Compute fingerprints from SMILES if needed."""
|
|
103
|
+
# If fingerprint column doesn't exist yet, compute it
|
|
104
|
+
if self.fingerprint_column not in self.df.columns:
|
|
105
|
+
log.info(f"Computing Morgan fingerprints (radius={self._fp_radius}, n_bits={self._fp_n_bits})...")
|
|
106
|
+
self.df = compute_morgan_fingerprints(
|
|
107
|
+
self.df, radius=self._fp_radius, n_bits=self._fp_n_bits, counts=self._fp_counts
|
|
108
|
+
)
|
|
109
|
+
|
|
110
|
+
def _build_model(self) -> None:
|
|
111
|
+
"""
|
|
112
|
+
Build the fingerprint proximity model using Jaccard metric.
|
|
113
|
+
Converts fingerprint strings to binary arrays and initializes NearestNeighbors.
|
|
114
|
+
"""
|
|
115
|
+
log.info("Converting fingerprints to binary feature matrix...")
|
|
116
|
+
|
|
117
|
+
# Convert fingerprint strings to binary arrays and store for later use
|
|
118
|
+
self.X = self._fingerprints_to_matrix(self.df)
|
|
119
|
+
|
|
120
|
+
# Use Jaccard distance for binary fingerprints (1 - Tanimoto similarity)
|
|
121
|
+
# Using BallTree algorithm for better performance with high-dimensional binary data
|
|
122
|
+
log.info("Computing NearestNeighbors with Jaccard metric (BallTree)...")
|
|
123
|
+
self.nn = NearestNeighbors(metric="jaccard", algorithm="ball_tree").fit(self.X)
|
|
124
|
+
|
|
125
|
+
def _transform_features(self, df: pd.DataFrame) -> np.ndarray:
|
|
126
|
+
"""
|
|
127
|
+
Transform fingerprints to binary matrix for querying.
|
|
128
|
+
|
|
129
|
+
Args:
|
|
130
|
+
df: DataFrame containing fingerprints to transform.
|
|
131
|
+
|
|
132
|
+
Returns:
|
|
133
|
+
Binary feature matrix for the fingerprints.
|
|
134
|
+
"""
|
|
135
|
+
return self._fingerprints_to_matrix(df)
|
|
136
|
+
|
|
137
|
+
def _fingerprints_to_matrix(self, df: pd.DataFrame) -> np.ndarray:
|
|
138
|
+
"""
|
|
139
|
+
Convert fingerprint strings to a binary numpy matrix.
|
|
140
|
+
|
|
141
|
+
Args:
|
|
142
|
+
df: DataFrame containing fingerprint column.
|
|
143
|
+
|
|
144
|
+
Returns:
|
|
145
|
+
2D numpy array of binary fingerprint bits.
|
|
146
|
+
"""
|
|
147
|
+
fingerprint_bits = df[self.fingerprint_column].apply(
|
|
148
|
+
lambda fp: np.array([int(bit) for bit in fp], dtype=np.bool_)
|
|
149
|
+
)
|
|
150
|
+
return np.vstack(fingerprint_bits)
|
|
151
|
+
|
|
152
|
+
def _project_2d(self) -> None:
|
|
153
|
+
"""Project the fingerprint matrix to 2D for visualization using UMAP with Jaccard metric."""
|
|
154
|
+
self.df = Projection2D().fit_transform(self.df, feature_matrix=self.X, metric="jaccard")
|
|
155
|
+
|
|
156
|
+
def neighbors(
|
|
157
|
+
self,
|
|
158
|
+
id_or_ids: Union[str, int, List[Union[str, int]]],
|
|
159
|
+
n_neighbors: Optional[int] = 5,
|
|
160
|
+
min_similarity: Optional[float] = None,
|
|
161
|
+
include_self: bool = True,
|
|
162
|
+
) -> pd.DataFrame:
|
|
163
|
+
"""
|
|
164
|
+
Return neighbors for ID(s) from the existing dataset.
|
|
165
|
+
|
|
166
|
+
Args:
|
|
167
|
+
id_or_ids: Single ID or list of IDs to look up
|
|
168
|
+
n_neighbors: Number of neighbors to return (default: 5, ignored if min_similarity is set)
|
|
169
|
+
min_similarity: If provided, find all neighbors with similarity >= this value (0-1)
|
|
170
|
+
include_self: Whether to include self in results (default: True)
|
|
171
|
+
|
|
172
|
+
Returns:
|
|
173
|
+
DataFrame containing neighbors with similarity scores (1 - Jaccard distance)
|
|
174
|
+
"""
|
|
175
|
+
# Convert min_similarity to radius (Jaccard distance)
|
|
176
|
+
radius = 1 - min_similarity if min_similarity is not None else None
|
|
177
|
+
|
|
178
|
+
# Call parent method
|
|
179
|
+
neighbors_df = super().neighbors(
|
|
180
|
+
id_or_ids=id_or_ids,
|
|
181
|
+
n_neighbors=n_neighbors,
|
|
182
|
+
radius=radius,
|
|
183
|
+
include_self=include_self,
|
|
184
|
+
)
|
|
185
|
+
|
|
186
|
+
# Convert distance to similarity for fingerprints
|
|
187
|
+
neighbors_df["similarity"] = 1 - neighbors_df["distance"]
|
|
188
|
+
neighbors_df.drop(columns=["distance"], inplace=True)
|
|
189
|
+
|
|
190
|
+
return neighbors_df
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
# Testing the FingerprintProximity class
|
|
194
|
+
if __name__ == "__main__":
|
|
195
|
+
pd.set_option("display.max_columns", None)
|
|
196
|
+
pd.set_option("display.width", 1000)
|
|
197
|
+
|
|
198
|
+
# Create an Example DataFrame
|
|
199
|
+
data = {
|
|
200
|
+
"id": ["a", "b", "c", "d", "e"],
|
|
201
|
+
"fingerprint": ["101010", "111010", "101110", "011100", "000111"],
|
|
202
|
+
"Feature1": [0.1, 0.2, 0.3, 0.4, 0.5],
|
|
203
|
+
"Feature2": [0.5, 0.4, 0.3, 0.2, 0.1],
|
|
204
|
+
"target": [1, 0, 1, 0, 5],
|
|
205
|
+
}
|
|
206
|
+
df = pd.DataFrame(data)
|
|
207
|
+
|
|
208
|
+
# Initialize the FingerprintProximity class
|
|
209
|
+
proximity = FingerprintProximity(df, fingerprint_column="fingerprint", id_column="id", target="target")
|
|
210
|
+
|
|
211
|
+
# Test 1: Neighbors for a single ID
|
|
212
|
+
print("\n--- Test 1: Neighbors for ID 'a' ---")
|
|
213
|
+
neighbors_df = proximity.neighbors("a")
|
|
214
|
+
print(neighbors_df)
|
|
215
|
+
|
|
216
|
+
# Test 2: Neighbors for multiple IDs
|
|
217
|
+
print("\n--- Test 2: Neighbors for IDs ['a', 'b'] ---")
|
|
218
|
+
neighbors_df = proximity.neighbors(["a", "b"])
|
|
219
|
+
print(neighbors_df)
|
|
220
|
+
|
|
221
|
+
# Test 3: Neighbors with similarity threshold
|
|
222
|
+
print("\n--- Test 3: Neighbors with min_similarity=0.5 ---")
|
|
223
|
+
neighbors_df = proximity.neighbors("a", min_similarity=0.5)
|
|
224
|
+
print(neighbors_df)
|
|
225
|
+
|
|
226
|
+
# Test 4: Isolated compounds
|
|
227
|
+
print("\n--- Test 4: Isolated compounds (top 50%) ---")
|
|
228
|
+
isolated_df = proximity.isolated(top_percent=50.0)
|
|
229
|
+
print(isolated_df[["id", "nn_distance", "nn_id"]])
|
|
230
|
+
|
|
231
|
+
# Test 5: Target gradients
|
|
232
|
+
print("\n--- Test 5: Target gradients ---")
|
|
233
|
+
gradients_df = proximity.target_gradients(top_percent=50.0, min_delta=0.1)
|
|
234
|
+
print(gradients_df)
|
|
235
|
+
|
|
236
|
+
# Test on real data from Workbench
|
|
237
|
+
from workbench.api import FeatureSet, Model
|
|
238
|
+
|
|
239
|
+
fs = FeatureSet("aqsol_features")
|
|
240
|
+
model = Model("aqsol-regression")
|
|
241
|
+
features = model.features()
|
|
242
|
+
df = fs.pull_dataframe()
|
|
243
|
+
prox = FingerprintProximity(df, id_column=fs.id_column, target=model.target())
|
|
244
|
+
print(prox.neighbors(df[fs.id_column].tolist()[:3]))
|
|
245
|
+
|
|
246
|
+
# Test 6: Visualize the 2D projection
|
|
247
|
+
print("\n--- Test 6: 2D Projection Scatter Plot ---")
|
|
248
|
+
from workbench.web_interface.components.plugin_unit_test import PluginUnitTest
|
|
249
|
+
from workbench.web_interface.components.plugins.scatter_plot import ScatterPlot
|
|
250
|
+
|
|
251
|
+
unit_test = PluginUnitTest(ScatterPlot, input_data=prox.df[:1000], x="x", y="y")
|
|
252
|
+
unit_test.run()
|