workbench 0.8.415__tar.gz → 0.8.421__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.421/Makefile +34 -0
- {workbench-0.8.415 → workbench-0.8.421}/PKG-INFO +2 -1
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/Dockerfile +1 -1
- {workbench-0.8.415 → workbench-0.8.421}/ci/endpoint_import_smoke.py +1 -0
- workbench-0.8.421/docs/admin/pypi_release.md +117 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/bedrock_security.md +9 -14
- workbench-0.8.421/examples/models/chemprop.py +37 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/chemprop_hpo.py +11 -3
- workbench-0.8.421/ml_pipelines/OpenADMET/pxr/phase1/pxr_chemprop_hpo_phase1.py +61 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/pxr/pipelines.json +3 -0
- {workbench-0.8.415 → workbench-0.8.421}/pyproject.toml +1 -1
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/base/inference/Dockerfile +1 -1
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/base/training/Dockerfile +1 -1
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/ml_pipelines/Dockerfile +1 -1
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/pytorch_chem/inference/Dockerfile +1 -1
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/pytorch_chem/training/Dockerfile +1 -1
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/cheminformatics.md +2 -2
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/compounds.md +2 -1
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/proximity.md +3 -10
- workbench-0.8.421/src/workbench/endpoints/chemprop_utils.py +74 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/chemprop/chemprop.template +46 -235
- workbench-0.8.421/src/workbench/training/chemprop_core.py +409 -0
- workbench-0.8.421/src/workbench/training/chemprop_hpo.py +542 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/training/hpo_harness.py +143 -24
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench.egg-info/PKG-INFO +2 -1
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench.egg-info/SOURCES.txt +3 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench.egg-info/requires.txt +1 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench.egg-info/scm_file_list.json +3 -0
- workbench-0.8.421/src/workbench.egg-info/scm_version.json +8 -0
- workbench-0.8.421/tests/training/chemprop_hpo_test.py +158 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/training/hpo_harness_test.py +66 -1
- {workbench-0.8.415 → workbench-0.8.421}/uv.lock +119 -0
- workbench-0.8.415/Makefile +0 -31
- workbench-0.8.415/docs/admin/pypi_release.md +0 -80
- workbench-0.8.415/src/workbench/training/chemprop_core.py +0 -169
- workbench-0.8.415/src/workbench/training/chemprop_hpo.py +0 -287
- workbench-0.8.415/src/workbench.egg-info/scm_version.json +0 -8
- workbench-0.8.415/tests/training/chemprop_hpo_test.py +0 -72
- {workbench-0.8.415 → workbench-0.8.421}/.flake8 +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/.gitattributes +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/.github/dependabot.yml +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/.github/workflows/aws-tests.yml +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/.github/workflows/deploy-docs.yml +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/.github/workflows/endpoint-import-smoke.yml +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/.github/workflows/gitleaks.yml +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/.github/workflows/lockfile-drift.yml +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/.github/workflows/publish.yml +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/.github/workflows/python-lint.yml +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/.gitignore +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/.gitleaks.toml +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/.pre-commit-config.yaml +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/CONTRIBUTING.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/Dockerfile +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/LICENSE +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/SECURITY.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/.gitignore +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/app.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/assets/contests/render.js +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/assets/contests/styles.css +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/assets/favicon.ico +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/assets/ml_pipelines/render.js +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/assets/ml_pipelines/styles.css +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/dashboard +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/deploy.sh +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/open_source_config.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/contests/callbacks.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/contests/layout.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/contests/page.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/data_sources/callbacks.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/data_sources/layout.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/data_sources/page.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/endpoints/callbacks.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/endpoints/layout.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/endpoints/page.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/feature_sets/callbacks.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/feature_sets/layout.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/feature_sets/page.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/license/page.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/main/callbacks.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/main/layout.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/main/page.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/ml_pipelines/callbacks.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/ml_pipelines/layout.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/ml_pipelines/page.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/models/callbacks.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/models/layout.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/models/page.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/pages/status/page.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/requirements.in +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/requirements.lock +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/static/dark.css +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/applications/aws_dashboard/static/light.css +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/aws_account_setup.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/aws_identity_check.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/build_ml_pipeline.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_compute/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_compute/app.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_compute/cdk.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_compute/requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_compute/workbench_compute/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_compute/workbench_compute/lambdas/batch_failure/handler.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_compute/workbench_compute/lambdas/batch_trigger/handler.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_compute/workbench_compute/workbench_compute_stack.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_core/.gitignore +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_core/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_core/app.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_core/cdk.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_core/requirements-dev.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_core/requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_core/source.bat +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_core/workbench_core/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_core/workbench_core/workbench_core_stack.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_dashboard/.gitignore +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_dashboard/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_dashboard/app.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_dashboard/cdk.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_dashboard/requirements-dev.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_dashboard/requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_dashboard/source.bat +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_dashboard/workbench_dashboard/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_dashboard/workbench_dashboard/workbench_dashboard_stack.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_vpc/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_vpc/app.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_vpc/cdk.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_vpc/requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_vpc/workbench_vpc/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/aws_setup/workbench_vpc/workbench_vpc/workbench_vpc_stack.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ci/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ci/endpoint_smoke_requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ci/lock.sh +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ci/template_import_check.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ci/workbench_ci_config.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/abalone.csv +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/karate_graph.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/alignment_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/build_logp_logd_overlap.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/build_synthetic_multi_task.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/build_tagging_reference.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/descriptions.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/logp_to_feature_set.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/overlap_summary.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/pull_common.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/pull_logd_data.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/pull_logp_data.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/pull_pxr_data.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/public_data/upload_data.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/test_data.csv +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/test_data.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/data/wine_dataset.csv +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/deploy_docker.sh +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/admin/aws_service_limits.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/admin/base_docker_push.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/admin/dashboard_docker_push.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/admin/dashboard_s3_plugins.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/admin/images/dashboard_secret_click.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/admin/images/serverless_quotas.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/admin/images/status_showing_S3_path.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/admin/workbench_docker_for_lambdas.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/async_endpoint.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/compound.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/data_source.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/df_store.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/endpoint.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/feature_set.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/graph_store.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/inference_cache.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/inference_store.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/meta.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/meta_endpoint.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/model.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/monitor.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/overview.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/parameter_store.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/public_data.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/reports.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/api_classes/views.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/aws_setup.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/aws_tips_and_tricks.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/bedrock_setup.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/compute_stack.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/core_stack.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/dashboard_stack.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/domain_cert_setup.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/full_pipeline.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/iam_assume_role.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/redis_tunnel.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/sso_assume_role.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/aws_setup/stacks.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/3d_descriptors.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/aws_endpoint_architecture.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/chemprop_multi_task.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/chemprop_shap.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/confusion_explorer.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/feature_endpoints.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/ml_agent.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/model_confidence.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/molecular_standardization.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/pxr_weekend_experiments.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/storage/compound_etl.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/storage/compound_explorer.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/storage/eda.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/storage/feature_importances.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/storage/fun_with_endpoints.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/storage/htg.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/storage/model_monitoring.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/blogs/storage/residual_analysis.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/cached/cached_data_source.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/cached/cached_endpoint.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/cached/cached_feature_set.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/cached/cached_meta.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/cached/cached_model.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/cached/overview.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/chem_utils/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/ci/github_oidc_setup.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/ci/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/cloudwatch/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/comparisons/workbench_vs_databricks.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/compound_explorer/tox21.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/compound_explorer/toxicity_modeling.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/confidence/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/artifacts/artifact.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/artifacts/async_endpoint_core.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/artifacts/athena_source.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/artifacts/data_source_abstract.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/artifacts/endpoint_core.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/artifacts/feature_set_core.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/artifacts/model_core.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/artifacts/monitor_core.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/artifacts/overview.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/overview.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/pipelines/pipeline_meta.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/transforms/data_loaders_heavy.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/transforms/data_loaders_light.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/transforms/data_to_features.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/transforms/features_to_model.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/transforms/model_to_endpoint.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/transforms/overview.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/transforms/pandas_transforms.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/transforms/transform.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/views/column_subset_view.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/views/computation_view.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/views/create_view.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/views/display_view.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/views/inference_view.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/views/overview.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/core_classes/views/pandas_to_view.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/data_algorithms/dataframes/overview.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/data_algorithms/graphs/overview.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/data_algorithms/overview.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/data_algorithms/spark/overview.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/data_algorithms/sql/overview.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/enterprise/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/enterprise/private_saas.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/enterprise/project_branding.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/enterprise/themes.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/getting_started/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/glue/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/3d_descriptor_pipeline.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/3d_descriptor_pipeline_detail.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/3d_descriptor_v2_pipeline.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/agent_repl_chat.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/bedrock_prompt_path.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/big_spider.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/chemprop_logd.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/chemprop_mt_expansion.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/chemprop_mt_transfer.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/chemprop_overview.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/chemprop_shap_logd.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/chemprop_shap_pipeline.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/confidence_percentile.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/conformal_calibration.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/confusion_explorer/drilldown_on_errors.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/confusion_explorer/high_confidence.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/confusion_explorer/overview.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/default_stack_flow.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/endpoint_architecture.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/ensemble_disagreement.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/graph_representation.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/meta_endpoint_ensemble.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/meta_endpoint_feature.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/powered_aws_dark_blue.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/powered_aws_transparent.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/powered_aws_white.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/powered_aws_with_tm_grey.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/scp.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/scp_labs.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/small_spider.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/uq_conf_residual.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/uq_pred_scatter.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/workbench_async_stack_flow.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/workbench_concepts.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/images/workbench_stack_flow.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/javascripts/mathjax.js +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/lambda_layer/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/misc/faq.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/misc/general_info.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/misc/scp_consulting.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/misc/workbench_classes_concepts.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/ml_pipelines/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/model_utils/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/models/chemprop_models.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/models/cleanlab_models.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/models/fingerprint_models.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/models/images/chemprop_decision_tree.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/models/images/confidence.jpg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/models/images/hybrid_architecture.svg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/models/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/models/meta_endpoints.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/models/pytorch_models.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/models/sklearn_models.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/models/xgboost_models.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/plugins/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/presentations/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/release_notes/0_8_158.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/release_notes/0_8_339.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/release_notes/0_8_358.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/release_notes/0_8_384.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/release_notes/0_8_396.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/release_notes/0_8_398.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/repl/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/road_maps/0_9_0.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/road_maps/0_9_5.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/stylesheets/extra.css +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/themes/details.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/docs/themes/index.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/ag-grid/hello_world.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/chem_utils/curate_admet_dataset.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/chem_utils/tag_molecules.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/chem_utils/tautomerize_smiles.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/datasource/datasource_from_df.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/datasource/datasource_from_s3.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/datasource/datasource_query.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/datasource/datasource_stats.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/datasource/datasource_to_featureset.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/endpoint/endpoint_details.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/endpoint/endpoint_inference.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/endpoint/endpoint_metrics.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/featureset/featureset_eda.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/featureset/featureset_query.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/full_ml_pipeline.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/glue_jobs/glue_example_1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/glue_jobs/glue_example_2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/glue_jobs/glue_example_3.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/glue_jobs/glue_launcher_examples/example_1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/glue_jobs/glue_launcher_examples/example_2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/meta/meta_list_endpoints.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/meta/meta_list_models.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/meta/meta_model_summary.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/ml_flow/.gitignore +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/ml_flow/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/ml_flow/aqsol_mlflow.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/ml_flow/aqsol_workbench_holdout.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/model_utils/model_metrics.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/model_utils/model_to_endpoint.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/model_utils/onboard_model.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/aqsol_example.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/chemprop_bounded_loss_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/chemprop_foundation.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/chemprop_logp_logd_synthetic.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/chemprop_logp_logd_tiered.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/chemprop_new_uq.py +0 -0
- /workbench-0.8.415/examples/models/chemprop.py → /workbench-0.8.421/examples/models/chemprop_open_admet.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/chemprop_v2_uq.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/dbscan.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/knn.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/meta_endpoint.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/pytorch.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/pytorch_new_uq.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/pytorch_v2_uq.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/random_forest.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/split_comparison_chemprop.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/split_comparison_pytorch.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/split_comparison_xgb.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/uq/bayesian_ridge.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/uq/ensemble_xgb.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/uq/gaussian_process.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/uq/meta_uq.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/uq/ngboost.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/uq/quant_xgb.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/xgb_model.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/xgb_model_new_uq.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/models/xgb_model_v2_uq.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/monitor/monitor_setup.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/monitor/monitor_usage.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/assets/hello/render.js +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/assets/hello/styles.css +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/branding/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/branding/scp.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/components/custom_plugin.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/components/endpoint_plugin.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/components/endpoint_turbo.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/components/model_markdown.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/components/model_plugin.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/packages/my_plugin_utils/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/packages/my_plugin_utils/assets/foo.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/packages/my_plugin_utils/cool_stuff.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/pages/plugin_page_1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/pages/plugin_page_2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/pages/plugin_page_3.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/pages/plugin_page_assets.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/templates/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/views/model_plugin_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/examples/plugins/views/my_view_plugin.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/experiments/chem_info/bulk_sims.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/experiments/chem_info/knn_sims.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/experiments/confidence_roc_curve.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/experiments/coverage_probability.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/experiments/db_scan_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/experiments/log_testing.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/experiments/networkx_id.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/experiments/prediction_intervals.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/experiments/residual_analysis.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/experiments/rocauc_testing.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/experiments/scatter_zoom_issue.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/_common.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/model_scripts/molecular_utils/fingerprints.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/model_scripts/molecular_utils/mol_descriptors.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/model_scripts/molecular_utils/mol_descriptors_3d.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/model_scripts/molecular_utils/mol_descriptors_3d_v2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/model_scripts/molecular_utils/mol_standardize.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/model_scripts/requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/model_scripts/smiles_to_2d_model_script.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/model_scripts/smiles_to_2d_salt_model_script.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/model_scripts/smiles_to_3d_v1_model_script.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/model_scripts/smiles_to_3d_v2_model_script.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/model_scripts/smiles_to_fingerprints_model_script.template +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/smiles_to_2d_3d_salt_v2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/smiles_to_2d_3d_v1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/smiles_to_2d_3d_v2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/smiles_to_2d_salt_v1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/smiles_to_2d_v1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/smiles_to_3d_v1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/smiles_to_3d_v2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/feature_endpoints/smiles_to_fingerprints_v1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/glue_jobs/create_glue_workflow_with_trigger.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/glue_jobs/example_glue_job.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/lambda_layers/.gitignore +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/lambda_layers/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/lambda_layers/build_deploy.sh +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/lambda_layers/example_lambda/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/lambda_layers/example_lambda/handler.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/lambda_layers/example_lambda/local_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/lambda_layers/example_lambda/sample_pipelines/demo/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/lambda_layers/requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/mkdocs.yml +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/.gitignore +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/README_rx.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/caco2_efflux/caco2_efflux.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/caco2_efflux/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/caco2_papp_a_b/caco2_papp_a_b.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/caco2_papp_a_b/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/hlm_clint/hlm_clint.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/hlm_clint/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/images/confidence.jpg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/images/open_admet_model.jpg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/ksol/ksol.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/ksol/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/load_data/load_data.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/load_data/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/logd/logd.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/logd/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/mbpb/mbpb.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/mbpb/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/mgmb/mgmb.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/mgmb/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/mlm_clint/mlm_clint.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/mlm_clint/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/mppb/mppb.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/mppb/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/pxr/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/pxr/phase1/pxr_chemprop_chemeleon_phase1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/pxr/phase1/pxr_chemprop_mt_phase1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/pxr/phase1/pxr_chemprop_phase1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/pxr/phase1/pxr_chemprop_tuned_phase1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/pxr/phase2/activity_leaderboard_phase2.csv +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/pxr/phase2/pxr_chemprop_mt_phase2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/pxr/phase2/pxr_chemprop_phase2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/pxr/pxr_chemprop_mt_feature_sets.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/pxr/pxr_feature_sets.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/pxr/pxr_pytorch_3dv2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/support/hello_world.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/support/model_metrics.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/support/run_inference.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/OpenADMET/support/utils/compute_model_metrics.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/Testing/AqSol/aqsol_class_1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/Testing/AqSol/aqsol_class_2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/Testing/AqSol/aqsol_feature_set.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/Testing/AqSol/aqsol_reg_1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/Testing/AqSol/aqsol_reg_2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/Testing/AqSol/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/Testing/abalone/abalone.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/Testing/abalone/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/Testing/test_data/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/Testing/test_data/test_data.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/Testing/wine_data/pipelines.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/Testing/wine_data/wine_classifier.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/plugins/models/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ml_pipelines/plugins/models/model_promotion.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/notebooks/Inference_On_Legacy_Models.ipynb +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/notebooks/ML_Pipeline_with_Workbench.ipynb +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/notebooks/ML_Pipeline_with_Workbench_2.ipynb +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/notebooks/Outliers_in_Workbench.ipynb +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/notebooks/Regression_Confidence_Experiments.ipynb +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/notebooks/Residual_Analysis.ipynb +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/notebooks/images/athena_query_aqsol.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/notebooks/images/aws_dashboard_aqsol.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/notebooks/images/dashboard_aqsol_features.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/notebooks/images/model_screenshot.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/notebooks/images/scp_labs.png +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/presentations/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/base/inference/requirements.in +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/base/inference/requirements.lock +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/base/training/requirements.in +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/base/training/requirements.lock +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/build_deploy.sh +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/deploy_all +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/ml_pipelines/ml_pipeline_runner.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/ml_pipelines/requirements.lock +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/pytorch_chem/inference/requirements.in +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/pytorch_chem/inference/requirements.lock +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/pytorch_chem/training/requirements.in +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/pytorch_chem/training/requirements.lock +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/shared/main.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/shared/serve +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/tests/data/abalone_sm.csv +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/tests/example_model_script.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/tests/run_tests.sh +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/tests/test_inference.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/sagemaker_images/tests/test_training.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/active_logs.sh +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admet/partition_aqsol_alignment.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/async_typical_usage.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/athena_ddl_mixed_case.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/backfill_autoscaling_alarm_metadata.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/backfill_contest_reports.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/backfill_prm_endpoint_tags.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/capture_check.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/check_all_glue_tables.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/chemprop_timing_report.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/compact_inference_cache.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/delete_invalid_views.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/delete_old_lambda_layers.sh +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/delete_redis_keys.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/find_models_with_bridges.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/find_orphan_artifacts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/find_orphan_models.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/inference_cache_concurrency_check.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/list_datacatalog.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/migration/TAG_MIGRATION.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/migration/migrate_legacy_tags.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/populate_activity_cliffs_reference_compounds.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/populate_reference_compounds.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/pull_image_digest.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/redis_reaper.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/reference_compounds/3d.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/reference_compounds/3d_perf.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/reference_compounds/complexity_skips.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/reference_compounds/corner_cases.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/reference_compounds/standardization.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/reference_compounds_common.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/smiles_nan_investigation.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/spam_list_tags.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/storage/convert_training_views.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/storage/copy_data_sources_across_envs.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/storage/migrate_data_source_via_df.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/storage/migrate_ds_meta.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/test_3d_descriptors.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/test_3d_endpoint.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/test_batch_job_failure.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/test_no_workbench_config.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/admin/verify_async_autoscaling.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/benchmark_fp_proximity.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/compare_dataframes.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/compare_model_packages.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/delete_data_capture.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/endpoint_timing.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/get_tags.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/llm_deploys/deepseek_deploy.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/model_cache_refresh.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/model_endpoint_sanity_check.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/monitor_event_bridge.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/onboard_endpoints.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/onboard_models.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/pubchem/pubchem_example.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/pubchem/pubchem_query.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/pubchem/pubchem_query_with_cid.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/sagemaker_pipeline_model_endpoint.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/seaborn_to_plotly.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/test_feature_set_creation.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/tox21/test_tox_heuristic.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/tox21/tox21_to_df_store.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/scripts/uq_v1_baseline_metrics.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/setup.cfg +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/bosco.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/api_classes.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/batch.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/code_search.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/contests.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/dashboard.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/data_and_features.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/endpoints.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/exploring.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/feature_endpoints.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/general.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/introspection.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/making_models.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/monitoring.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/pipelines.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/plotting.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/promotion.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/public_data.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/publishing.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/security.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/tokens.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/tutorial.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/uq.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/guides/using_bosco.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/personalities.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/agent/tools.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/activity_landscape.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/data_source_eda.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/feature_space_proximity.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/fingerprint_proximity.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/multi_task_alignment.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/projection_2d.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/proximity.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/residual_features.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/smart_aggregator.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/storage/aggregation.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/storage/feature_spider.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/storage/row_tagger.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/storage/target_gradients.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/uq_model_v0.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/uq_model_v1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/dataframe/uq_model_v2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/graph/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/graph/heavy/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/graph/light/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/graph/light/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/graph/light/laplacian_smoothness.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/graph/light/proximity_graph.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/models/cleanlab_model.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/models/noise_model.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/spark/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/sql/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/sql/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/sql/column_stats.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/sql/correlations.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/sql/descriptive_stats.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/sql/outliers.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/sql/sample_rows.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/algorithms/sql/value_counts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/compound.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/data_source.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/df_store.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/endpoint.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/feature_set.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/graph_store.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/inference_cache.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/inference_store.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/meta.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/meta_endpoint.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/model.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/monitor.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/parameter_store.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/public_data.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/api/reports.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/batch/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/batch/models/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/batch/models/model_promotion.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/cached/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/cached/cached_artifact_mixin.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/cached/cached_data_source.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/cached/cached_endpoint.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/cached/cached_feature_set.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/cached/cached_meta.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/cached/cached_model.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/artifacts/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/artifacts/artifact.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/artifacts/async_endpoint_core.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/artifacts/athena_source.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/artifacts/data_capture_core.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/artifacts/data_source_abstract.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/artifacts/data_source_factory.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/artifacts/endpoint_core.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/artifacts/feature_set_core.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/artifacts/model_core.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/artifacts/monitor_core.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/cloud_platform/aws/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/cloud_platform/aws/aws_account_clamp.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/cloud_platform/aws/aws_graph_store.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/cloud_platform/aws/aws_meta.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/cloud_platform/aws/aws_secrets_manager.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/cloud_platform/aws/aws_session.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/cloud_platform/aws/boto_session.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/cloud_platform/aws/cache_dataframe.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/cloud_platform/azure/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/cloud_platform/cloud_meta.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/cloud_platform/gcp/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/df_store_core.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/parameter_store_core.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/pipelines/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/pipelines/pipeline_meta.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_loaders/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_loaders/heavy/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_loaders/heavy/s3_heavy_to_data_source.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_loaders/light/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_loaders/light/csv_to_data_source.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_loaders/light/json_to_data_source.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_loaders/light/s3_to_data_source_light.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_data/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_data/heavy/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_data/heavy/emr/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_data/heavy/glue/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_data/light/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_data/light/clean_data.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_data/light/data_to_data_light.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_features/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_features/heavy/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_features/heavy/chunk/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_features/heavy/emr/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_features/heavy/glue/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_features/light/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_features/light/data_to_features_light.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/data_to_features/light/molecular_descriptors.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/features_to_features/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/features_to_features/heavy/emr/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/features_to_features/heavy/glue/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/features_to_model/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/features_to_model/features_to_model.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/model_to_endpoint/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/model_to_endpoint/model_to_endpoint.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/pandas_transforms/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/pandas_transforms/data_to_pandas.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/pandas_transforms/features_to_pandas.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/pandas_transforms/pandas_to_data.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/pandas_transforms/pandas_to_features.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/pandas_transforms/pandas_to_features_chunked.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/transforms/transform.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/views/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/views/column_subset_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/views/computation_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/views/create_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/views/display_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/views/inference_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/views/pandas_to_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/views/view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/core/views/view_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/async_inference.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/chemprop_shap_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/df_store.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/fast_inference.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/fingerprint_proximity.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/fingerprints.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/inference.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/meta_endpoint_dag.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/parameter_store.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/proximity.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/pytorch_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/residual_features.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/uq_harness.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/uq_model_v0.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/uq_model_v1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/uq_model_v2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/endpoints/uq_regression.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/lambda_layer/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/lambda_layer/pipeline_manager.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/chemprop/requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/custom_models/network_security/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/custom_models/uq_models/Readme.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/custom_models/uq_models/bayesian_ridge.template +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/custom_models/uq_models/ensemble_xgb.template +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/custom_models/uq_models/feature_space_proximity.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/custom_models/uq_models/gaussian_process.template +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/custom_models/uq_models/ngboost.template +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/custom_models/uq_models/requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/custom_script_example/custom_model_script.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/custom_script_example/requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/meta_endpoint/meta_endpoint.template +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/pytorch_model/pytorch.template +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/pytorch_model/requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/scikit_learn/requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/scikit_learn/scikit_learn.template +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/script_generation.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/xgb_model/requirements.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/model_scripts/xgb_model/xgb_model.template +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/repl/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/repl/workbench_shell.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/resources/open_source_api.key +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/resources/signature_verify_pub.pem +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/bedrock_verify.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/check_double_bond_stereo.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/df_store.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/endpoint_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/ensemble_sim.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/glue_launcher.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/lambda_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/ml_pipeline_batch.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/ml_pipeline_launcher.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/ml_pipeline_sqs.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/monitor_cloud_watch.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/redis_expire.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/redis_report.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/redis_tunnel.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/show_config.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/scripts/training_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/themes/dark/base_css.url +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/themes/dark/custom.css +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/themes/dark/plotly.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/themes/light/base_css.url +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/themes/light/branding.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/themes/light/custom.css +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/themes/light/plotly.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/themes/midnight_blue/base_css.url +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/themes/midnight_blue/branding.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/themes/midnight_blue/custom.css +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/themes/midnight_blue/plotly.json +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/training/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/training/training_harness.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/training/validation.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/aggregation_nodes.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/async_endpoint_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/athena_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/aws_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/batch_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/bedrock_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/bulk_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/cache.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chem_utils/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chem_utils/fingerprints.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chem_utils/misc.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chem_utils/mol_descriptors.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chem_utils/mol_descriptors_3d.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chem_utils/mol_descriptors_3d_v2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chem_utils/mol_standardize.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chem_utils/mol_tagging.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chem_utils/projections.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chem_utils/salts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chem_utils/sdf.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chem_utils/toxicity.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chem_utils/vis.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/chemprop_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/cloudwatch_handler.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/cloudwatch_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/color_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/config_manager.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/contest_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/cow_puns.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/dashboard_metrics.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/dashboard_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/datetime_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/deprecated_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/df_to_endpoint.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/distribution_stats.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/ecs_info.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/endpoint_autoscaling.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/endpoint_metrics.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/endpoint_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/ensemble_simulator.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/ensemble_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/execution_environment.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/extract_model_artifact.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/glue_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/graph_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/inference_cache_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/ipython_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/json_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/license_manager.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/log_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/markdown_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/meta_endpoint_dag.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/metrics_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/model_comparison.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/model_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/monitor_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/multi_task.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/pandas_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/performance_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/pipeline_serializer.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/pipeline_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/plot_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/plugin_manager.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/prox_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/pytorch_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/redis_cache.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/repl_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/s3_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/shap_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/shapley_values.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/symbols.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/synthetic_data_generator.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/theme_manager.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/tree_render.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/type_abbrev.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/workbench_cache.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/workbench_event_bridge.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/workbench_logging.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/workbench_sqs.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/xgboost_local_crossfold.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/utils/xgboost_model_utils.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/component_interface.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/correlation_matrix.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/data_details_markdown.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/endpoint_metric_plots.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/experiments/dashboard_metric_plots.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/experiments/outlier_plot.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugin_interface.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugin_unit_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/ag_table.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/confusion_explorer.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/confusion_matrix.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/confusion_triangle.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/dashboard_status.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/data_details.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/endpoint_details.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/example_plot.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/graph_plot.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/license_details.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/model_details.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/model_plot.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/molecule_panel.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/molecule_viewer.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/multi_task_alignment_map.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/proximity_mini_graph.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/scatter_plot.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/plugins/shap_summary_plot.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/settings_menu.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/components/violin_plots.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/page_views/contests_page_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/page_views/data_sources_page_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/page_views/endpoints_page_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/page_views/feature_sets_page_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/page_views/main_page.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/page_views/ml_pipelines_page_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/page_views/models_page_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/page_views/page_view.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/utils/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench/web_interface/utils/clientside_callbacks.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench.egg-info/dependency_links.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench.egg-info/entry_points.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/src/workbench.egg-info/top_level.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_aqsol_artifacts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_aqsol_artifacts_all.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_aqsol_rt_artifacts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_basic_test_artifacts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_copy_artifacts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_empty_model_group.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_endpoints_for_timing.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_graph_artifacts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_knn_artifacts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_meta_endpoints.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_proximity_models.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_quant_regression_artifacts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_realtime_endpoint.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_sagemaker_pipeline_model.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_training_adjusted_artifacts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/create_wine_artifacts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/delete_stress_test_artifacts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/delete_test_artifacts.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/hyper_testing.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/regression_ensemble.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/test_artifacts/stress_test_aws.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/README.md +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/agent/test_guide_api_references.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/agent/test_run_python_log_capture.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/artifacts/data_source_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/artifacts/empty_model_group.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/artifacts/featureset_ingest_boundaries.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/artifacts/featureset_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/artifacts/graph_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/artifacts/meta_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/artifacts/model_metrics_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/artifacts/model_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/aws_account/aws_account_clamp_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/cached/cached_artifact_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/cached/cached_meta_api_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/cached/cached_meta_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/chem_info/test_complexity_cost_guard.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/chem_info/test_conformer_energies.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/chem_info/test_descriptors_3d_v2.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/chem_info/test_standardization_reference.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/chem_info/test_tagging_reference.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/chem_info/test_tautomerization.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/confidence/test_uq_harness.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/corner_cases/end_to_end.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/df_store/df_store_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/df_store/reports_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/endpoints/endpoint_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/endpoints/inference_cache_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/endpoints/meta_endpoint_dag_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/endpoints/test_async_idempotent.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/endpoints/test_async_passthrough.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/endpoints/test_async_warmup.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/endpoints/test_capture_inference_metrics.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/feature_endpoints/test_3d_complexity_skips.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/feature_endpoints/test_3d_corner_cases.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/feature_endpoints/test_3d_timing.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/feature_endpoints/test_smiles_to_3d_v1.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/lambda_layer/test_layer_dependencies.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/pandas_tests/test_convert_column_types.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/pandas_tests/test_drift.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/pandas_tests/test_multi_task.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/pandas_tests/test_temporal_split.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/parameter_store/param_store_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/pipelines/test_pipeline_launcher.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/pipelines/test_pipeline_manager.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/pipelines/test_pipeline_meta.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/pipelines/test_pipeline_serializer.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/plugin_tests/crashing_plugin.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/pytorch/pytorch_hello.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/requirements-dev.txt +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/specific/capital_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/specific/column_changes.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/specific/config_manager.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/specific/deletion_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/specific/feature_ingest_multiprocessing_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/specific/multi_task_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/specific/public_data_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/specific/shap_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/specific/tag_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/transforms/data_to_data_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/transforms/data_to_features_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/transforms/features_to_model_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/transforms/model_to_endpoint_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/transforms/pandas_to_data_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/transforms/pandas_to_features_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/uq/__init__.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/uq/conftest.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/uq/fixtures.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/uq/reference_v0_8_338.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/utils/test_execution_environment.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/utils/test_model_comparison.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/utils/test_tree_render.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/validation/chemprop_validation_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/validation/pytorch_validation_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/validation/row_roles_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/validation/validation_split_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/validation/xgb_validation_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/views/view_tests.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/views/view_tests_complex.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/web_components/confusion_matrix_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/web_components/correlation_matrix_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/web_components/graph_plot_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/web_components/plugin_interface_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tests/web_components/scatter_plot_test.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/tox.ini +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ui_testing/assets/custom.css +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ui_testing/table_comparison.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ui_testing/theme_switching.py +0 -0
- {workbench-0.8.415 → workbench-0.8.421}/ui_testing/theme_switching_2.py +0 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
.PHONY: help clean clean-pyc clean-build list
|
|
2
|
+
|
|
3
|
+
# Prune virtualenv and git internals so cleans never touch installed packages
|
|
4
|
+
PRUNE := \( -path ./.venv -o -path ./.git \) -prune -o
|
|
5
|
+
|
|
6
|
+
help:
|
|
7
|
+
@echo "clean - remove ALL build/python/misc artifacts"
|
|
8
|
+
@echo "clean-build - remove build artifacts"
|
|
9
|
+
@echo "clean-pyc - remove Python Complied file artifacts"
|
|
10
|
+
@echo "clean-misc - remove misc artifacts"
|
|
11
|
+
|
|
12
|
+
clean: clean-build clean-pyc clean-misc
|
|
13
|
+
|
|
14
|
+
clean-build:
|
|
15
|
+
find . $(PRUNE) -name 'build' -exec rm -rf {} +
|
|
16
|
+
find . $(PRUNE) -name '_build' -exec rm -rf {} +
|
|
17
|
+
find . $(PRUNE) -name 'dist' -exec rm -rf {} +
|
|
18
|
+
find . $(PRUNE) -name '*.egg-info' -exec rm -rf {} +
|
|
19
|
+
find . $(PRUNE) -name '*.eggs' -exec rm -rf {} +
|
|
20
|
+
find . $(PRUNE) -name '*.tar.gz' -exec rm -rf {} +
|
|
21
|
+
find . $(PRUNE) -name '.tox' -exec rm -rf {} +
|
|
22
|
+
find . $(PRUNE) -name '.coverage' -exec rm -rf {} +
|
|
23
|
+
find . $(PRUNE) -name '.cache' -exec rm -rf {} +
|
|
24
|
+
find . $(PRUNE) -name '__pycache__' -exec rm -rf {} +
|
|
25
|
+
find . $(PRUNE) -name 'cdk.out' -exec rm -rf {} +
|
|
26
|
+
|
|
27
|
+
clean-pyc:
|
|
28
|
+
find . $(PRUNE) -name '*.pyc' -exec rm -rf {} +
|
|
29
|
+
find . $(PRUNE) -name '*.pyo' -exec rm -rf {} +
|
|
30
|
+
find . $(PRUNE) -name '*~' -exec rm -rf {} +
|
|
31
|
+
|
|
32
|
+
clean-misc:
|
|
33
|
+
find . $(PRUNE) -name '.ipynb_checkpoints' -exec rm -rf {} +
|
|
34
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: workbench
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.421
|
|
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
|
|
@@ -71,6 +71,7 @@ Provides-Extra: training
|
|
|
71
71
|
Requires-Dist: ray[tune]; extra == "training"
|
|
72
72
|
Requires-Dist: optuna; extra == "training"
|
|
73
73
|
Provides-Extra: dev
|
|
74
|
+
Requires-Dist: tox; extra == "dev"
|
|
74
75
|
Requires-Dist: pytest; extra == "dev"
|
|
75
76
|
Requires-Dist: pytest-sugar; extra == "dev"
|
|
76
77
|
Requires-Dist: pytest-xdist; extra == "dev"
|
|
@@ -29,7 +29,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
|
|
|
29
29
|
-r /tmp/requirements.lock
|
|
30
30
|
|
|
31
31
|
# Layer 2: Workbench only (changes often, ~20 MB)
|
|
32
|
-
ARG WORKBENCH_VERSION=0.8.
|
|
32
|
+
ARG WORKBENCH_VERSION=0.8.420
|
|
33
33
|
RUN pip install --no-deps "workbench==${WORKBENCH_VERSION}"
|
|
34
34
|
|
|
35
35
|
# Copy app code and configuration (after pip installs to avoid cache invalidation)
|
|
@@ -46,6 +46,7 @@ PYPROJECT = REPO_ROOT / "pyproject.toml"
|
|
|
46
46
|
_FRAMEWORK_SPECIFIC = {
|
|
47
47
|
"workbench.endpoints.pytorch_utils": {"torch"},
|
|
48
48
|
"workbench.endpoints.chemprop_shap_utils": {"torch", "chemprop"},
|
|
49
|
+
"workbench.endpoints.chemprop_utils": {"chemprop"},
|
|
49
50
|
}
|
|
50
51
|
|
|
51
52
|
# Extras that don't ship to any container at runtime and aren't relevant to
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
# PyPI Release Notes
|
|
2
|
+
|
|
3
|
+
Releases normally happen automatically: pushing a `v*` tag triggers the
|
|
4
|
+
`.github/workflows/publish.yml` GitHub Action, which lints, builds,
|
|
5
|
+
publishes to PyPI via trusted publishing (OIDC), and creates a GitHub Release. These
|
|
6
|
+
notes cover doing the same thing **manually from a laptop** when the Action is
|
|
7
|
+
unavailable or you need to bypass it.
|
|
8
|
+
|
|
9
|
+
For full details on packaging see the
|
|
10
|
+
[Packaging tutorial](https://packaging.python.org/tutorials/packaging-projects/#packaging-your-project).
|
|
11
|
+
|
|
12
|
+
> **Heads up — the tag triggers the Action.** `git push --tags` is what fires
|
|
13
|
+
> `publish.yml`. If the tag is already pushed, the Action is already publishing that
|
|
14
|
+
> version, so don't also publish manually — you'll just get a "file already exists" 400
|
|
15
|
+
> from PyPI. Do a manual release either (a) as a **fallback** after the Action failed on
|
|
16
|
+
> an already-pushed tag, or (b) as a **full bypass** where you build and upload *before*
|
|
17
|
+
> pushing the tag.
|
|
18
|
+
|
|
19
|
+
### Package Requirements
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pip install --upgrade build twine tox
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### How the version is set
|
|
26
|
+
|
|
27
|
+
The version is derived from the git tag by `setuptools_scm` (see `[tool.setuptools_scm]`
|
|
28
|
+
in `pyproject.toml`) — there is no hardcoded version string. The build must run from a
|
|
29
|
+
**tagged commit**, otherwise you get a `.devN` version instead of the clean release
|
|
30
|
+
version.
|
|
31
|
+
|
|
32
|
+
### Set up ~/.pypirc
|
|
33
|
+
|
|
34
|
+
The Action uses OIDC trusted publishing and needs no token. A manual upload from your
|
|
35
|
+
laptop still needs an API token. Put it in `~/.pypirc`:
|
|
36
|
+
|
|
37
|
+
```ini
|
|
38
|
+
[distutils]
|
|
39
|
+
index-servers =
|
|
40
|
+
pypi
|
|
41
|
+
testpypi
|
|
42
|
+
|
|
43
|
+
[pypi]
|
|
44
|
+
username = __token__
|
|
45
|
+
password = pypi-AgEIcH...
|
|
46
|
+
|
|
47
|
+
[testpypi]
|
|
48
|
+
username = __token__
|
|
49
|
+
password = pypi-AgENdG...
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### Lint (matches the Action's gate)
|
|
53
|
+
|
|
54
|
+
The Action publishes only if lint passes, so run the same checks locally first:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
black --check --line-length=120 src/workbench applications tests
|
|
58
|
+
flake8 --exclude '*generated*' src/workbench applications tests
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Optionally run the full test suite via tox, which installs the built package into a clean
|
|
62
|
+
virtualenv and runs the tests against it:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
tox
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### Clean previous distribution files
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
make clean
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### Tag the new version
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
git tag v0.1.8 # or whatever the next version is
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Push the tag **now** only if you want the GitHub Action to do the release. For a manual
|
|
81
|
+
bypass, hold off on pushing until after the upload (see the last step).
|
|
82
|
+
|
|
83
|
+
### Build
|
|
84
|
+
|
|
85
|
+
`setuptools_scm` reads the version from the tag you just created.
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
python -m build
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### (Optional) Test PyPI dry run
|
|
92
|
+
|
|
93
|
+
```bash
|
|
94
|
+
twine upload dist/* -r testpypi
|
|
95
|
+
pip install --index-url https://test.pypi.org/simple workbench
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
### Publish to PyPI
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
twine upload dist/* -r pypi
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
### Push the tag and any changes
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
git push
|
|
108
|
+
git push --tags
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
If you published manually as a **full bypass**, pushing the tag here will still trigger
|
|
112
|
+
the Action. It will fail at the PyPI upload step (version already exists) but will still
|
|
113
|
+
create the GitHub Release — or create that release yourself:
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
gh release create v0.1.8 dist/* --title v0.1.8 --generate-notes
|
|
117
|
+
```
|
|
@@ -28,14 +28,14 @@ The common alternative — an agent calling a vendor-hosted model API — moves
|
|
|
28
28
|
several controls outside your account. This table is the concrete difference,
|
|
29
29
|
stated so you can check each row against your own requirements.
|
|
30
30
|
|
|
31
|
-
| | Vendor-hosted model API | Bedrock |
|
|
31
|
+
| Control | Vendor-hosted model API | Bedrock |
|
|
32
32
|
|---|---|---|
|
|
33
|
-
| Account boundary | Vendor's | Yours |
|
|
34
|
-
| Credential | Shared API key in a config file | Your existing IAM role |
|
|
35
|
-
| Attribution | One key for the whole team | Per-user, via `sts:AssumeRole` |
|
|
36
|
-
| Revocation | Rotate a key everyone shares | Remove a role assignment |
|
|
37
|
-
| Audit trail | Vendor's dashboard | Your CloudTrail |
|
|
38
|
-
| Egress | Public internet to a third party | AWS network, in your region |
|
|
33
|
+
| **Account boundary** | ✗ Vendor's | ✓ Yours |
|
|
34
|
+
| **Credential** | ✗ Shared API key in a config file | ✓ Your existing IAM role |
|
|
35
|
+
| **Attribution** | ✗ One key for the whole team | ✓ Per-user, via `sts:AssumeRole` |
|
|
36
|
+
| **Revocation** | ✗ Rotate a key everyone shares | ✓ Remove a role assignment |
|
|
37
|
+
| **Audit trail** | ✗ Vendor's dashboard | ✓ Your CloudTrail |
|
|
38
|
+
| **Egress** | ✗ Public internet to a third party | ✓ AWS network, in your region |
|
|
39
39
|
|
|
40
40
|
The credential row is the one that matters most in practice. A public API key
|
|
41
41
|
is a long-lived secret that has to live on every analyst's laptop, grants the
|
|
@@ -46,18 +46,13 @@ revokes their model access at the same time.
|
|
|
46
46
|
|
|
47
47
|
## Where the model actually runs
|
|
48
48
|
|
|
49
|
-
A Bedrock foundation model does not run in your account, and it does not run on
|
|
50
|
-
Anthropic's servers either.
|
|
51
|
-
|
|
52
49
|
Anthropic supplies the model weights and inference software to AWS. AWS deploys
|
|
53
50
|
a copy into an AWS-owned account operated by the Bedrock service team, in the
|
|
54
51
|
region you call. Anthropic has no access to that account — no network path, no
|
|
55
52
|
credentials, no logs.
|
|
56
53
|
|
|
57
54
|
!!! note "The practical consequence"
|
|
58
|
-
Your prompts are never handled by the model
|
|
59
|
-
is a structural property of how Bedrock is built, not a promise about
|
|
60
|
-
conduct.
|
|
55
|
+
Your prompts are never handled by the model provider's infrastructure. This is a structural property of how AWS Bedrock is managed. The model provider cannot see your data, and you do not have to trust them to keep it private.
|
|
61
56
|
|
|
62
57
|
## What the agent can do
|
|
63
58
|
|
|
@@ -91,7 +86,7 @@ Under the AWS service terms for third-party models on Bedrock, you retain all
|
|
|
91
86
|
rights to your inputs, you own the outputs, and the model provider may not
|
|
92
87
|
train on them.
|
|
93
88
|
|
|
94
|
-
Bedrock
|
|
89
|
+
Bedrock enforces a **zero-operator-access** model: no AWS operator can read your
|
|
95
90
|
inputs or outputs. Under the default retention setting AWS may retain them for
|
|
96
91
|
safety and abuse prevention, but the model provider never receives them.
|
|
97
92
|
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"""Baseline example: a plain 5-fold Chemprop regressor on the AQSol feature set.
|
|
2
|
+
|
|
3
|
+
The hyperparameter-searched counterpart is ``chemprop_hpo.py`` — this is the same
|
|
4
|
+
model and feature set with the ``hpo`` block dropped, so the two are directly
|
|
5
|
+
comparable (the search should match or beat this baseline). Open-ADMET multi-task /
|
|
6
|
+
hybrid / classifier examples live in ``chemprop_open_admet.py``.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from workbench.api import Endpoint, FeatureSet, Model, ModelFramework, ModelType
|
|
10
|
+
|
|
11
|
+
# Recreate flag in case you want to recreate the artifacts
|
|
12
|
+
recreate = True
|
|
13
|
+
model_name = "aqsol-chemprop"
|
|
14
|
+
|
|
15
|
+
# =============================================================================
|
|
16
|
+
# Chemprop Regression Model (baseline for the HPO comparison)
|
|
17
|
+
# =============================================================================
|
|
18
|
+
if recreate or not Model(model_name).exists():
|
|
19
|
+
fs = FeatureSet("aqsol_features")
|
|
20
|
+
m = fs.to_model(
|
|
21
|
+
name=model_name,
|
|
22
|
+
model_type=ModelType.UQ_REGRESSOR,
|
|
23
|
+
model_framework=ModelFramework.CHEMPROP,
|
|
24
|
+
target_column="solubility",
|
|
25
|
+
feature_list=["smiles"],
|
|
26
|
+
description="AQSol Chemprop regressor (hand-tuned baseline)",
|
|
27
|
+
tags=["aqsol", "chemprop"],
|
|
28
|
+
hyperparameters={"uq_version": "v1"},
|
|
29
|
+
)
|
|
30
|
+
m.set_owner("BW")
|
|
31
|
+
|
|
32
|
+
# Create an Endpoint for the model
|
|
33
|
+
if recreate or not Endpoint(model_name).exists():
|
|
34
|
+
end = Model(model_name).to_endpoint(tags=["aqsol", "chemprop"])
|
|
35
|
+
end.set_owner("BW")
|
|
36
|
+
end.test_inference()
|
|
37
|
+
end.cross_fold_inference()
|
|
@@ -28,9 +28,17 @@ if recreate or not Model(model_name).exists():
|
|
|
28
28
|
hyperparameters={
|
|
29
29
|
"uq_version": "v1",
|
|
30
30
|
"hpo": {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
31
|
+
# "ray" + max_parallel > 1 runs trials concurrently (ASHA) and puts the job
|
|
32
|
+
# on a 4-GPU instance; "optuna" is the serial single-GPU path.
|
|
33
|
+
"backend": "ray",
|
|
34
|
+
"max_parallel": 8, # 4 GPUs x 2 trials each (see gpus_per_trial)
|
|
35
|
+
"n_trials": 60, # 5 baseline trials (pruner warmup) + 55 pruned candidates
|
|
36
|
+
# search_space defaults to "basic+lr" (capacity + LR schedule + batch size);
|
|
37
|
+
# pass "basic" to search architecture capacity only.
|
|
38
|
+
# The search only shortlists: its top rerank_top_k configs are then re-scored
|
|
39
|
+
# against these hyperparameters as-is, and the winner of *that* is published.
|
|
40
|
+
# So a search that finds nothing real publishes the untuned baseline.
|
|
41
|
+
"rerank_top_k": 5,
|
|
34
42
|
},
|
|
35
43
|
},
|
|
36
44
|
# For an honest out-of-distribution objective, pass validation_ids=[...]: those
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"""PXR phase-1 model: hyperparameter-searched Chemprop on the shared FeatureSet.
|
|
2
|
+
|
|
3
|
+
Same held-out setup as pxr_chemprop_phase1.py (the phase1_test rows are held out of
|
|
4
|
+
training via validation_ids and captured), but the Chemprop knobs are searched rather
|
|
5
|
+
than hand-picked. The search runs inside the single training job — trials are ephemeral,
|
|
6
|
+
so only the winning config is published as this model.
|
|
7
|
+
|
|
8
|
+
The search objective is `cv_mae` on scaffold folds of the *training* rows, forced with
|
|
9
|
+
hpo["metric"]. Without that override the designated validation rows would become the
|
|
10
|
+
objective, which would tune the model on Analog Set 1 and make the pxr_phase1_test
|
|
11
|
+
capture optimistic — and unfair against the other phase-1 models, which never see those
|
|
12
|
+
labels during fitting.
|
|
13
|
+
|
|
14
|
+
Build the FeatureSet first: python ../pxr_feature_sets.py
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
from workbench.api import FeatureSet, ModelFramework, ModelType
|
|
18
|
+
|
|
19
|
+
fs_name = "openadmet_pxr_f1"
|
|
20
|
+
model_name = "pxr-reg-chemprop-hpo-phase1"
|
|
21
|
+
tags = ["openadmet_pxr", "chemprop", "hpo", "phase1"]
|
|
22
|
+
|
|
23
|
+
fs = FeatureSet(fs_name)
|
|
24
|
+
df = fs.pull_dataframe()
|
|
25
|
+
phase1 = df[df["split"] == "phase1_test"]
|
|
26
|
+
|
|
27
|
+
m = fs.to_model(
|
|
28
|
+
name=model_name,
|
|
29
|
+
model_type=ModelType.UQ_REGRESSOR,
|
|
30
|
+
model_framework=ModelFramework.CHEMPROP,
|
|
31
|
+
feature_list=["smiles"],
|
|
32
|
+
target_column="pec50",
|
|
33
|
+
description="PXR phase-1 pEC50 Chemprop (hyperparameter-searched; phase1_test held out of training)",
|
|
34
|
+
tags=tags,
|
|
35
|
+
hyperparameters={
|
|
36
|
+
"uq_version": "v1",
|
|
37
|
+
"hpo": {
|
|
38
|
+
# "ray" + max_parallel > 1 runs trials concurrently (ASHA) on a 4-GPU instance.
|
|
39
|
+
"backend": "ray",
|
|
40
|
+
"max_parallel": 8, # 4 GPUs x 2 trials each
|
|
41
|
+
"n_trials": 60,
|
|
42
|
+
# Score on scaffold folds of the training rows, NOT on the held-out phase1_test
|
|
43
|
+
# rows — see the module docstring.
|
|
44
|
+
"metric": "cv_mae",
|
|
45
|
+
# search_space defaults to "basic+lr" (capacity + LR schedule + batch size).
|
|
46
|
+
# The search only shortlists: its top rerank_top_k configs are re-scored against
|
|
47
|
+
# these hyperparameters as-is, and the winner of *that* is published. So a search
|
|
48
|
+
# that finds nothing real publishes the untuned baseline.
|
|
49
|
+
"rerank_top_k": 5,
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
validation_ids=list(phase1["molecule_name"]), # held-out validation set (not trained)
|
|
53
|
+
)
|
|
54
|
+
m.set_owner("open_admet_pxr")
|
|
55
|
+
end = m.to_endpoint(tags=tags)
|
|
56
|
+
end.set_owner("open_admet_pxr")
|
|
57
|
+
end.test_inference()
|
|
58
|
+
end.cross_fold_inference()
|
|
59
|
+
|
|
60
|
+
# Held-out capture on the phase1_test rows (the model never trained on them)
|
|
61
|
+
end.inference(phase1[["molecule_name", "smiles", "pec50"]], capture_name="pxr_phase1_hpo_test")
|
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
"outputs": ["model:pxr-reg-chemprop-phase1", "endpoint:pxr-reg-chemprop-phase1"]},
|
|
9
9
|
{"script": "phase1/pxr_chemprop_tuned_phase1.py", "inputs": ["fs:openadmet_pxr_f1"],
|
|
10
10
|
"outputs": ["model:pxr-reg-chemprop-tuned-phase1", "endpoint:pxr-reg-chemprop-tuned-phase1"]},
|
|
11
|
+
{"script": "phase1/pxr_chemprop_hpo_phase1.py", "inputs": ["fs:openadmet_pxr_f1"],
|
|
12
|
+
"outputs": ["model:pxr-reg-chemprop-hpo-phase1", "endpoint:pxr-reg-chemprop-hpo-phase1"]},
|
|
11
13
|
{"script": "phase2/pxr_chemprop_phase2.py", "inputs": ["fs:openadmet_pxr_f1"],
|
|
12
14
|
"outputs": ["model:pxr-reg-chemprop-phase2", "endpoint:pxr-reg-chemprop-phase2"]},
|
|
13
15
|
{"script": "phase1/pxr_chemprop_chemeleon_phase1.py", "inputs": ["fs:openadmet_pxr_f1"],
|
|
@@ -29,6 +31,7 @@
|
|
|
29
31
|
"model:pxr-2d-3dv2-reg-pytorch-100", "endpoint:pxr-2d-3dv2-reg-pytorch-100"]},
|
|
30
32
|
{"script": "workbench:models/model_promotion.py",
|
|
31
33
|
"inputs": ["model:pxr-reg-chemprop-phase1", "model:pxr-reg-chemprop-tuned-phase1",
|
|
34
|
+
"model:pxr-reg-chemprop-hpo-phase1",
|
|
32
35
|
"model:pxr-reg-chemprop-phase2", "model:pxr-reg-chemprop-chemeleon-phase1-frz0",
|
|
33
36
|
"model:pxr-reg-chemprop-chemeleon-phase1-frz10", "model:pxr-reg-chemprop-chemeleon-phase1-frz20",
|
|
34
37
|
"model:pxr-reg-chemprop-mt-logp", "model:pxr-reg-chemprop-mt-logd",
|
|
@@ -92,7 +92,7 @@ training = [
|
|
|
92
92
|
"ray[tune]",
|
|
93
93
|
"optuna",
|
|
94
94
|
]
|
|
95
|
-
dev = ["pytest", "pytest-sugar", "pytest-xdist", "coverage", "pytest-cov", "flake8", "black", "aws-cdk-lib"]
|
|
95
|
+
dev = ["tox", "pytest", "pytest-sugar", "pytest-xdist", "coverage", "pytest-cov", "flake8", "black", "aws-cdk-lib"]
|
|
96
96
|
# Docs toolchain (mkdocs site + mkdocstrings API reference). Kept in sync with .github/workflows/deploy-docs.yml
|
|
97
97
|
docs = [
|
|
98
98
|
# Cap mkdocs/material below 2.0/10 — MkDocs 2.0 is a breaking rewrite that Material 10 will require
|
|
@@ -36,7 +36,7 @@ COPY --from=builder /usr/local/bin /usr/local/bin
|
|
|
36
36
|
# workbench-bridges==0.2.10 retained for backward compat with existing
|
|
37
37
|
# deployed-endpoint model bundles; drop in a future image rev once no
|
|
38
38
|
# production endpoint references workbench_bridges.
|
|
39
|
-
ARG WORKBENCH_VERSION=0.8.
|
|
39
|
+
ARG WORKBENCH_VERSION=0.8.420
|
|
40
40
|
RUN pip install --no-deps "workbench==${WORKBENCH_VERSION}" && \
|
|
41
41
|
pip install --no-deps "workbench-bridges==0.2.10"
|
|
42
42
|
|
|
@@ -35,6 +35,6 @@ COPY --from=builder /usr/local/bin /usr/local/bin
|
|
|
35
35
|
# workbench-bridges==0.2.10 is retained for backward compatibility with
|
|
36
36
|
# existing deployed-endpoint model bundles; drop in a future image rev once
|
|
37
37
|
# no production endpoint references workbench_bridges.
|
|
38
|
-
ARG WORKBENCH_VERSION=0.8.
|
|
38
|
+
ARG WORKBENCH_VERSION=0.8.420
|
|
39
39
|
RUN pip install --no-deps "workbench==${WORKBENCH_VERSION}" && \
|
|
40
40
|
pip install --no-deps "workbench-bridges==0.2.10"
|
|
@@ -48,7 +48,7 @@ COPY --from=builder /usr/local/bin /usr/local/bin
|
|
|
48
48
|
# Layer 2: Workbench + Bridges (changes often, small layer)
|
|
49
49
|
# workbench-bridges==0.2.10 pinned for reproducibility while we still depend
|
|
50
50
|
# on it; on track for deprecation once nothing references workbench_bridges.
|
|
51
|
-
ARG WORKBENCH_VERSION=0.8.
|
|
51
|
+
ARG WORKBENCH_VERSION=0.8.420
|
|
52
52
|
RUN pip install --no-deps "workbench==${WORKBENCH_VERSION}" && \
|
|
53
53
|
pip install --no-deps "workbench-bridges==0.2.10"
|
|
54
54
|
|
|
@@ -40,7 +40,7 @@ COPY --from=builder /usr/local/bin /usr/local/bin
|
|
|
40
40
|
# Layer 2: Workbench + bridges — rebuilds per version bump, ~20 MB delta.
|
|
41
41
|
# workbench-bridges==0.2.10 retained for backward compat with existing
|
|
42
42
|
# deployed-endpoint model bundles.
|
|
43
|
-
ARG WORKBENCH_VERSION=0.8.
|
|
43
|
+
ARG WORKBENCH_VERSION=0.8.420
|
|
44
44
|
RUN pip install --no-deps "workbench==${WORKBENCH_VERSION}" && \
|
|
45
45
|
pip install --no-deps "workbench-bridges==0.2.10"
|
|
46
46
|
|
|
@@ -34,6 +34,6 @@ RUN --mount=type=cache,target=/root/.cache/uv \
|
|
|
34
34
|
# Layer 2: Workbench + bridges — rebuilds per version bump, ~20 MB delta.
|
|
35
35
|
# workbench-bridges==0.2.10 retained for backward compat with existing
|
|
36
36
|
# deployed-endpoint model bundles.
|
|
37
|
-
ARG WORKBENCH_VERSION=0.8.
|
|
37
|
+
ARG WORKBENCH_VERSION=0.8.420
|
|
38
38
|
RUN pip install --no-deps "workbench==${WORKBENCH_VERSION}" && \
|
|
39
39
|
pip install --no-deps "workbench-bridges==0.2.10"
|
|
@@ -28,13 +28,13 @@ and `dir(module)` in the REPL are the documentation. Reach for them freely.
|
|
|
28
28
|
|
|
29
29
|
## How Workbench computes fingerprints
|
|
30
30
|
|
|
31
|
-
`chem_utils/fingerprints.py` → `compute_morgan_fingerprints(df, radius=2, n_bits=
|
|
31
|
+
`chem_utils/fingerprints.py` → `compute_morgan_fingerprints(df, radius=2, n_bits=4096)`.
|
|
32
32
|
The choices that aren't obvious:
|
|
33
33
|
|
|
34
34
|
- **Count, not binary.** Each bit holds how many times the substructure appears
|
|
35
35
|
(clamped to 0–255), stored as a comma-separated string. Count fingerprints beat
|
|
36
36
|
binary for ADMET property prediction — the citation is in the module docstring.
|
|
37
|
-
- **radius=2** is ECFP4-equivalent; **
|
|
37
|
+
- **radius=2** is ECFP4-equivalent; **4096 bits**.
|
|
38
38
|
- **Largest fragment first.** Salts/counterions are stripped
|
|
39
39
|
(`rdMolStandardize.LargestFragmentChooser`) before hashing, so the fingerprint
|
|
40
40
|
describes the parent, not the salt.
|
|
@@ -36,7 +36,8 @@ SMILES string**, not a DataFrame or a Series:
|
|
|
36
36
|
```python
|
|
37
37
|
show(df["smiles"].iloc[0]) # first compound
|
|
38
38
|
show("CN1C=NC2=C1C(=O)N(C(=O)N2C)C") # caffeine
|
|
39
|
-
show(smiles, width=
|
|
39
|
+
show(smiles, width=300, height=300) # smaller; default is 500x500
|
|
40
|
+
show(smiles, background="rgba(255, 255, 255, 0.5)") # white/half alpha; default is dark grey
|
|
40
41
|
```
|
|
41
42
|
|
|
42
43
|
To look at several, loop — but keep it to a handful, since each opens an image:
|
|
@@ -52,7 +52,7 @@ FeatureSpaceProximity(df, id_column="id", features=[...])
|
|
|
52
52
|
## Neighbors of a compound in the set
|
|
53
53
|
|
|
54
54
|
```python
|
|
55
|
-
nbrs = prox.neighbors(compound_id, n_neighbors=6
|
|
55
|
+
nbrs = prox.neighbors(compound_id, n_neighbors=6)
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
One row per neighbor:
|
|
@@ -64,13 +64,6 @@ One row per neighbor:
|
|
|
64
64
|
| `similarity` / `distance` | Tanimoto similarity 0–1 (FingerprintProximity) or standardized Euclidean distance (FeatureSpaceProximity) |
|
|
65
65
|
| `<target>` | the neighbor's target value (may be `NaN` for a multi-task model's off-task rows) |
|
|
66
66
|
|
|
67
|
-
Two gotchas:
|
|
68
|
-
|
|
69
|
-
- **`include_self` defaults to `True`.** A compound is its own closest neighbor, so
|
|
70
|
-
pass `include_self=False` to get real neighbors.
|
|
71
|
-
- **`n_neighbors` counts before self is dropped.** With `include_self=False`, request
|
|
72
|
-
`k + 1` to get `k` neighbors back.
|
|
73
|
-
|
|
74
67
|
Don't hardcode the query id column — it's `prox.id_column`. `neighbor_id` is stable.
|
|
75
68
|
|
|
76
69
|
## Neighbors of a novel compound
|
|
@@ -89,8 +82,8 @@ with a warning rather than raising.
|
|
|
89
82
|
## Controlling the search
|
|
90
83
|
|
|
91
84
|
```python
|
|
92
|
-
prox.neighbors(cid, min_similarity=0.5
|
|
93
|
-
prox.neighbors(cid, radius=2.0
|
|
85
|
+
prox.neighbors(cid, min_similarity=0.5) # FingerprintProximity: all >= 0.5 Tanimoto
|
|
86
|
+
prox.neighbors(cid, radius=2.0) # FeatureSpaceProximity: all within distance
|
|
94
87
|
```
|
|
95
88
|
|
|
96
89
|
The threshold overrides `n_neighbors` — use it when "how many are actually close"
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"""Dual-use ChemProp dataset helpers — shared by training and endpoint inference.
|
|
2
|
+
|
|
3
|
+
Lives on the endpoint import surface (per the :mod:`workbench.endpoints` contract)
|
|
4
|
+
because the serving ``predict_fn`` builds datapoints the same way training does.
|
|
5
|
+
Top-level deps are numpy + chemprop; ``create_molecule_datapoints`` additionally needs
|
|
6
|
+
rdkit at call time (imported inside the function). All three ship in the ``pytorch_chem``
|
|
7
|
+
base image.
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
import numpy as np
|
|
11
|
+
|
|
12
|
+
from chemprop import data
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def safe_batch_size(dataset_len: int, batch_size: int) -> int:
|
|
16
|
+
"""Compute a batch size that avoids ChemProp's drop_last behavior.
|
|
17
|
+
|
|
18
|
+
ChemProp's build_dataloader sets drop_last=True when len(dataset) % batch_size == 1
|
|
19
|
+
to avoid batch norm issues with single-sample batches. For prediction/inference this
|
|
20
|
+
drops a sample, causing misalignment with the source DataFrame. Bumping batch_size
|
|
21
|
+
by 1 in that case makes the last batch 2 samples instead of 1, avoiding both problems.
|
|
22
|
+
"""
|
|
23
|
+
if dataset_len % batch_size == 1:
|
|
24
|
+
return batch_size + 1
|
|
25
|
+
return batch_size
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def find_smiles_column(columns: list[str]) -> str:
|
|
29
|
+
"""Find SMILES column (case-insensitive match for 'smiles')."""
|
|
30
|
+
smiles_col = next((c for c in columns if c.lower() == "smiles"), None)
|
|
31
|
+
if smiles_col is None:
|
|
32
|
+
raise ValueError("Column list must contain a 'smiles' column (case-insensitive)")
|
|
33
|
+
return smiles_col
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def create_molecule_datapoints(
|
|
37
|
+
smiles_list: list[str],
|
|
38
|
+
targets: np.ndarray | None = None,
|
|
39
|
+
extra_descriptors: np.ndarray | None = None,
|
|
40
|
+
gt_mask: np.ndarray | None = None,
|
|
41
|
+
lt_mask: np.ndarray | None = None,
|
|
42
|
+
) -> tuple[list[data.MoleculeDatapoint], list[int]]:
|
|
43
|
+
"""Create ChemProp MoleculeDatapoints from SMILES strings.
|
|
44
|
+
|
|
45
|
+
gt_mask/lt_mask are per-(row, target) boolean arrays for bounded-loss training:
|
|
46
|
+
gt_mask[i, j] == True means target j on row i is right-censored (true value >= y).
|
|
47
|
+
lt_mask[i, j] == True means target j on row i is left-censored (true value <= y).
|
|
48
|
+
|
|
49
|
+
Returns the datapoints plus the indices of the SMILES RDKit could parse (rows that
|
|
50
|
+
fail to parse are dropped, so callers must align downstream arrays on these indices).
|
|
51
|
+
"""
|
|
52
|
+
from rdkit import Chem
|
|
53
|
+
|
|
54
|
+
datapoints, valid_indices = [], []
|
|
55
|
+
if targets is not None:
|
|
56
|
+
targets = np.asarray(targets)
|
|
57
|
+
if targets.ndim == 1:
|
|
58
|
+
targets = np.atleast_2d(targets).T
|
|
59
|
+
|
|
60
|
+
for i, smi in enumerate(smiles_list):
|
|
61
|
+
# Guard the RDKit call: MolFromSmiles(None) raises, and blank strings parse to None.
|
|
62
|
+
if not isinstance(smi, str) or not smi.strip() or Chem.MolFromSmiles(smi) is None:
|
|
63
|
+
continue
|
|
64
|
+
y = targets[i].tolist() if targets is not None else None
|
|
65
|
+
x_d = extra_descriptors[i] if extra_descriptors is not None else None
|
|
66
|
+
kwargs = {"y": y, "x_d": x_d}
|
|
67
|
+
if gt_mask is not None:
|
|
68
|
+
kwargs["gt_mask"] = gt_mask[i]
|
|
69
|
+
if lt_mask is not None:
|
|
70
|
+
kwargs["lt_mask"] = lt_mask[i]
|
|
71
|
+
datapoints.append(data.MoleculeDatapoint.from_smi(smi, **kwargs))
|
|
72
|
+
valid_indices.append(i)
|
|
73
|
+
|
|
74
|
+
return datapoints, valid_indices
|