workbench 0.8.198__tar.gz → 0.8.225__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.
Potentially problematic release.
This version of workbench might be problematic. Click here for more details.
- workbench-0.8.225/.gitignore +153 -0
- workbench-0.8.225/PKG-INFO +197 -0
- workbench-0.8.225/applications/aws_dashboard/Dockerfile +36 -0
- workbench-0.8.225/applications/aws_dashboard/app.py +158 -0
- workbench-0.8.225/applications/aws_dashboard/pages/data_sources/page.py +68 -0
- workbench-0.8.225/applications/aws_dashboard/pages/endpoints/page.py +71 -0
- workbench-0.8.225/applications/aws_dashboard/pages/feature_sets/page.py +64 -0
- workbench-0.8.225/applications/aws_dashboard/pages/main/page.py +48 -0
- workbench-0.8.225/applications/aws_dashboard/pages/models/callbacks.py +154 -0
- workbench-0.8.225/applications/aws_dashboard/pages/models/layout.py +72 -0
- workbench-0.8.225/applications/aws_dashboard/pages/models/page.py +82 -0
- workbench-0.8.225/applications/aws_dashboard/pages/pipelines/callbacks.py +88 -0
- workbench-0.8.225/applications/aws_dashboard/pages/status/page.py +40 -0
- workbench-0.8.225/applications/compound_explorer/app.py +72 -0
- workbench-0.8.225/applications/compound_explorer/requirements.txt +24 -0
- workbench-0.8.225/aws_setup/aws_identity_check.py +51 -0
- workbench-0.8.225/aws_setup/workbench_compute/app.py +69 -0
- workbench-0.8.225/aws_setup/workbench_compute/workbench_compute/lambdas/batch_failure/handler.py +154 -0
- workbench-0.8.225/aws_setup/workbench_compute/workbench_compute/lambdas/batch_trigger/handler.py +216 -0
- workbench-0.8.225/aws_setup/workbench_compute/workbench_compute/workbench_compute_stack.py +302 -0
- workbench-0.8.225/aws_setup/workbench_core/workbench_core/workbench_core_stack.py +1597 -0
- workbench-0.8.225/aws_setup/workbench_dashboard_full/app.py +61 -0
- workbench-0.8.225/aws_setup/workbench_dashboard_full/workbench_dashboard_full/workbench_dashboard_stack.py +177 -0
- workbench-0.8.225/aws_setup/workbench_dashboard_lite/app.py +60 -0
- workbench-0.8.225/docs/admin/images/dashboard_secret_click.png +0 -0
- workbench-0.8.225/docs/admin/images/serverless_quotas.png +0 -0
- workbench-0.8.225/docs/admin/images/status_showing_S3_path.png +0 -0
- workbench-0.8.225/docs/advanced_models/images/confidence.jpg +0 -0
- workbench-0.8.225/docs/advanced_models/index.md +134 -0
- workbench-0.8.225/docs/api_classes/endpoint.md +144 -0
- workbench-0.8.225/docs/api_classes/meta.md +132 -0
- workbench-0.8.225/docs/cached/cached_meta.md +132 -0
- workbench-0.8.225/docs/core_classes/transforms/features_to_model.md +129 -0
- workbench-0.8.225/docs/images/big_spider.png +0 -0
- workbench-0.8.225/docs/images/graph_representation.png +0 -0
- workbench-0.8.225/docs/images/powered_aws_dark_blue.png +0 -0
- workbench-0.8.225/docs/images/powered_aws_transparent.png +0 -0
- workbench-0.8.225/docs/images/powered_aws_with_tm_grey.png +0 -0
- workbench-0.8.225/docs/images/scp.png +0 -0
- workbench-0.8.225/docs/images/scp_labs.png +0 -0
- workbench-0.8.225/docs/images/small_spider.png +0 -0
- workbench-0.8.225/docs/images/workbench_concepts.png +0 -0
- workbench-0.8.225/examples/datasource/datasource_from_df.py +9 -0
- workbench-0.8.225/examples/endpoint/endpoint_inference.py +18 -0
- workbench-0.8.225/examples/glue_jobs/glue_example_1.py +21 -0
- workbench-0.8.225/examples/glue_jobs/glue_example_2.py +22 -0
- workbench-0.8.225/examples/glue_jobs/glue_example_3.py +22 -0
- workbench-0.8.225/examples/ml_pipelines/list_models.py +10 -0
- workbench-0.8.225/examples/ml_pipelines/wine_classifier.py +40 -0
- workbench-0.8.225/examples/models/chemprop.py +140 -0
- workbench-0.8.225/examples/models/chemprop_foundation.py +210 -0
- workbench-0.8.225/examples/models/custom_model.py +24 -0
- workbench-0.8.225/examples/models/dbscan.py +27 -0
- workbench-0.8.225/examples/models/meta_model.py +34 -0
- workbench-0.8.225/examples/models/pytorch.py +58 -0
- workbench-0.8.225/examples/models/smiles_to_fingerprints.py +25 -0
- workbench-0.8.225/examples/models/smiles_to_md_v1.py +26 -0
- workbench-0.8.225/examples/models/uq/bayesian_ridge.py +31 -0
- workbench-0.8.225/examples/models/uq/ensemble_xgb.py +31 -0
- workbench-0.8.225/examples/models/uq/gaussian_process.py +38 -0
- workbench-0.8.225/examples/models/uq/meta_uq.py +39 -0
- workbench-0.8.225/examples/models/uq/ngboost.py +38 -0
- workbench-0.8.225/examples/models/uq/quant_xgb.py +26 -0
- workbench-0.8.225/examples/models/xgb_model.py +76 -0
- workbench-0.8.225/examples/plugins/components/custom_plugin.py +53 -0
- workbench-0.8.225/examples/plugins/components/endpoint_plugin.py +60 -0
- workbench-0.8.225/examples/plugins/components/endpoint_turbo.py +105 -0
- workbench-0.8.225/examples/plugins/pages/plugin_page_2.py +96 -0
- workbench-0.8.225/examples/plugins/pages/plugin_page_3.py +172 -0
- workbench-0.8.225/experiments/chem_info/knn_sims.py +22 -0
- workbench-0.8.225/experiments/cleanlab_bug_report.py +17 -0
- workbench-0.8.225/experiments/db_scan_test.py +92 -0
- workbench-0.8.225/experiments/rocauc_testing.py +61 -0
- workbench-0.8.225/experiments/sol_pipeline.py +119 -0
- workbench-0.8.225/feature_endpoints/model_scripts/molecular_utils/mol_descriptors.py +482 -0
- workbench-0.8.225/feature_endpoints/model_scripts/rdkit_mordred_model_script.py +89 -0
- workbench-0.8.225/feature_endpoints/model_scripts/rdkit_mordred_model_script_keep_salts.py +89 -0
- workbench-0.8.225/feature_endpoints/model_scripts/requirements.txt +2 -0
- workbench-0.8.225/feature_endpoints/rdkit_mordred_keep_salts_v1.py +65 -0
- workbench-0.8.225/feature_endpoints/rdkit_mordred_v1.py +65 -0
- workbench-0.8.225/glue_jobs/example_glue_job.py +21 -0
- workbench-0.8.225/glue_jobs/glue_job_pipeline.py +107 -0
- workbench-0.8.225/mkdocs.yml +163 -0
- workbench-0.8.225/ml_pipelines/hyper_uq.py +49 -0
- workbench-0.8.225/model_docker_images/inference/Dockerfile +38 -0
- workbench-0.8.225/model_docker_images/inference/requirements.txt +10 -0
- workbench-0.8.225/model_docker_images/meta_inference/Dockerfile +35 -0
- workbench-0.8.225/model_docker_images/meta_inference/requirements.txt +5 -0
- workbench-0.8.225/model_docker_images/meta_training/Dockerfile +20 -0
- workbench-0.8.225/model_docker_images/meta_training/requirements.txt +3 -0
- workbench-0.8.225/model_docker_images/ml_pipelines/Dockerfile +38 -0
- workbench-0.8.225/model_docker_images/ml_pipelines/requirements.txt +14 -0
- workbench-0.8.225/model_docker_images/pytorch_inference/requirements.txt +14 -0
- workbench-0.8.225/model_docker_images/pytorch_training/Dockerfile +25 -0
- workbench-0.8.225/model_docker_images/pytorch_training/requirements.txt +12 -0
- workbench-0.8.225/model_docker_images/pytorch_training/sagemaker_entrypoint.py +152 -0
- workbench-0.8.225/model_docker_images/scripts/build_deploy.sh +210 -0
- workbench-0.8.225/model_docker_images/tests/example_model_script.py +381 -0
- workbench-0.8.225/model_docker_images/tests/test_training.py +165 -0
- workbench-0.8.225/model_docker_images/training/Dockerfile +24 -0
- workbench-0.8.225/model_docker_images/training/requirements.txt +8 -0
- workbench-0.8.225/notebooks/images/athena_query_aqsol.png +0 -0
- workbench-0.8.225/notebooks/images/aws_dashboard_aqsol.png +0 -0
- workbench-0.8.225/notebooks/images/dashboard_aqsol_features.png +0 -0
- workbench-0.8.225/notebooks/images/model_screenshot.png +0 -0
- workbench-0.8.225/notebooks/images/scp_labs.png +0 -0
- workbench-0.8.225/open_admet/.gitignore +1 -0
- workbench-0.8.225/open_admet/README.md +110 -0
- workbench-0.8.225/open_admet/all_models.py +218 -0
- workbench-0.8.225/open_admet/hello_world.py +37 -0
- workbench-0.8.225/open_admet/images/confidence.jpg +0 -0
- workbench-0.8.225/open_admet/images/open_admet_model.jpg +0 -0
- workbench-0.8.225/open_admet/load_data.py +115 -0
- workbench-0.8.225/open_admet/model_metrics.md +67 -0
- workbench-0.8.225/open_admet/run_inference.py +281 -0
- workbench-0.8.225/open_admet/utils/compute_model_metrics.py +86 -0
- workbench-0.8.225/pyproject.toml +103 -0
- workbench-0.8.225/scripts/admin/athena_ddl_mixed_case.py +62 -0
- workbench-0.8.225/scripts/admin/migration/model_migrate.py +40 -0
- workbench-0.8.225/scripts/admin/test_batch_job_failure.py +10 -0
- workbench-0.8.225/scripts/admin/test_no_workbench_config.py +17 -0
- workbench-0.8.225/scripts/ag_table_row_selection.py +60 -0
- workbench-0.8.225/scripts/compare_dataframes.py +27 -0
- workbench-0.8.225/scripts/endpoint_timing.py +54 -0
- workbench-0.8.225/scripts/llm_deploys/deepseek_deploy.py +53 -0
- workbench-0.8.225/scripts/storage/dns_data_to_features.py +35 -0
- workbench-0.8.225/scripts/tox21/tox21_to_df_store.py +186 -0
- workbench-0.8.225/src/workbench/__init__.py +46 -0
- workbench-0.8.225/src/workbench/algorithms/dataframe/compound_dataset_overlap.py +321 -0
- workbench-0.8.225/src/workbench/algorithms/dataframe/feature_space_proximity.py +194 -0
- workbench-0.8.225/src/workbench/algorithms/dataframe/fingerprint_proximity.py +498 -0
- workbench-0.8.225/src/workbench/algorithms/dataframe/projection_2d.py +220 -0
- workbench-0.8.225/src/workbench/algorithms/dataframe/proximity.py +338 -0
- workbench-0.8.225/src/workbench/algorithms/graph/light/proximity_graph.py +254 -0
- workbench-0.8.225/src/workbench/algorithms/models/cleanlab_model.py +382 -0
- workbench-0.8.225/src/workbench/algorithms/models/noise_model.py +388 -0
- workbench-0.8.225/src/workbench/algorithms/sql/column_stats.py +146 -0
- workbench-0.8.225/src/workbench/algorithms/sql/correlations.py +115 -0
- workbench-0.8.225/src/workbench/algorithms/sql/descriptive_stats.py +108 -0
- workbench-0.8.225/src/workbench/algorithms/sql/outliers.py +243 -0
- workbench-0.8.225/src/workbench/api/__init__.py +36 -0
- workbench-0.8.225/src/workbench/api/df_store.py +103 -0
- workbench-0.8.225/src/workbench/api/endpoint.py +111 -0
- workbench-0.8.225/src/workbench/api/feature_set.py +274 -0
- workbench-0.8.225/src/workbench/api/meta.py +275 -0
- workbench-0.8.225/src/workbench/api/meta_model.py +289 -0
- workbench-0.8.225/src/workbench/api/model.py +157 -0
- workbench-0.8.225/src/workbench/api/parameter_store.py +91 -0
- workbench-0.8.225/src/workbench/cached/cached_meta.py +379 -0
- workbench-0.8.225/src/workbench/cached/cached_model.py +129 -0
- workbench-0.8.225/src/workbench/core/artifacts/__init__.py +30 -0
- workbench-0.8.225/src/workbench/core/artifacts/artifact.py +488 -0
- workbench-0.8.225/src/workbench/core/artifacts/df_store_core.py +114 -0
- workbench-0.8.225/src/workbench/core/artifacts/endpoint_core.py +1254 -0
- workbench-0.8.225/src/workbench/core/artifacts/feature_set_core.py +950 -0
- workbench-0.8.225/src/workbench/core/artifacts/model_core.py +1280 -0
- workbench-0.8.225/src/workbench/core/artifacts/parameter_store_core.py +98 -0
- workbench-0.8.225/src/workbench/core/cloud_platform/cloud_meta.py +283 -0
- workbench-0.8.225/src/workbench/core/pipelines/pipeline_executor.py +161 -0
- workbench-0.8.225/src/workbench/core/transforms/features_to_model/features_to_model.py +438 -0
- workbench-0.8.225/src/workbench/core/transforms/model_to_endpoint/model_to_endpoint.py +190 -0
- workbench-0.8.225/src/workbench/core/transforms/pandas_transforms/pandas_to_features.py +494 -0
- workbench-0.8.225/src/workbench/core/views/view.py +376 -0
- workbench-0.8.225/src/workbench/model_script_utils/model_script_utils.py +339 -0
- workbench-0.8.225/src/workbench/model_script_utils/pytorch_utils.py +405 -0
- workbench-0.8.225/src/workbench/model_script_utils/uq_harness.py +277 -0
- workbench-0.8.225/src/workbench/model_scripts/chemprop/chemprop.template +774 -0
- workbench-0.8.225/src/workbench/model_scripts/chemprop/generated_model_script.py +774 -0
- workbench-0.8.225/src/workbench/model_scripts/chemprop/model_script_utils.py +339 -0
- workbench-0.8.225/src/workbench/model_scripts/chemprop/requirements.txt +3 -0
- workbench-0.8.225/src/workbench/model_scripts/custom_models/chem_info/fingerprints.py +175 -0
- workbench-0.8.225/src/workbench/model_scripts/custom_models/chem_info/mol_descriptors.py +482 -0
- workbench-0.8.225/src/workbench/model_scripts/custom_models/chem_info/molecular_descriptors.py +80 -0
- workbench-0.8.225/src/workbench/model_scripts/custom_models/chem_info/morgan_fingerprints.py +84 -0
- workbench-0.8.225/src/workbench/model_scripts/custom_models/proximity/feature_space_proximity.py +194 -0
- workbench-0.8.225/src/workbench/model_scripts/custom_models/proximity/feature_space_proximity.template +136 -0
- workbench-0.8.225/src/workbench/model_scripts/custom_models/uq_models/ensemble_xgb.template +354 -0
- workbench-0.8.225/src/workbench/model_scripts/custom_models/uq_models/feature_space_proximity.py +194 -0
- workbench-0.8.225/src/workbench/model_scripts/custom_models/uq_models/ngboost.template +239 -0
- workbench-0.8.225/src/workbench/model_scripts/ensemble_xgb/ensemble_xgb.template +277 -0
- workbench-0.8.225/src/workbench/model_scripts/meta_model/generated_model_script.py +209 -0
- workbench-0.8.225/src/workbench/model_scripts/meta_model/meta_model.template +209 -0
- workbench-0.8.225/src/workbench/model_scripts/pytorch_model/generated_model_script.py +520 -0
- workbench-0.8.225/src/workbench/model_scripts/pytorch_model/model_script_utils.py +339 -0
- workbench-0.8.225/src/workbench/model_scripts/pytorch_model/pytorch.template +520 -0
- workbench-0.8.225/src/workbench/model_scripts/pytorch_model/pytorch_utils.py +405 -0
- workbench-0.8.225/src/workbench/model_scripts/pytorch_model/requirements.txt +2 -0
- workbench-0.8.225/src/workbench/model_scripts/pytorch_model/uq_harness.py +277 -0
- workbench-0.8.225/src/workbench/model_scripts/scikit_learn/generated_model_script.py +302 -0
- workbench-0.8.225/src/workbench/model_scripts/script_generation.py +208 -0
- workbench-0.8.225/src/workbench/model_scripts/uq_models/generated_model_script.py +248 -0
- workbench-0.8.225/src/workbench/model_scripts/xgb_model/generated_model_script.py +445 -0
- workbench-0.8.225/src/workbench/model_scripts/xgb_model/model_script_utils.py +339 -0
- workbench-0.8.225/src/workbench/model_scripts/xgb_model/uq_harness.py +277 -0
- workbench-0.8.225/src/workbench/model_scripts/xgb_model/xgb_model.template +445 -0
- workbench-0.8.225/src/workbench/repl/workbench_shell.py +586 -0
- workbench-0.8.225/src/workbench/resources/open_source_api.key +1 -0
- workbench-0.8.225/src/workbench/scripts/endpoint_test.py +162 -0
- workbench-0.8.225/src/workbench/scripts/lambda_test.py +73 -0
- workbench-0.8.225/src/workbench/scripts/meta_model_sim.py +35 -0
- workbench-0.8.225/src/workbench/scripts/ml_pipeline_sqs.py +255 -0
- workbench-0.8.225/src/workbench/scripts/training_test.py +85 -0
- workbench-0.8.225/src/workbench/themes/dark/custom.css +190 -0
- workbench-0.8.225/src/workbench/themes/light/custom.css +209 -0
- workbench-0.8.225/src/workbench/themes/midnight_blue/custom.css +213 -0
- workbench-0.8.225/src/workbench/utils/aws_utils.py +628 -0
- workbench-0.8.225/src/workbench/utils/chem_utils/fingerprints.py +175 -0
- workbench-0.8.225/src/workbench/utils/chem_utils/mol_descriptors.py +482 -0
- workbench-0.8.225/src/workbench/utils/chem_utils/mol_standardize.py +450 -0
- workbench-0.8.225/src/workbench/utils/chem_utils/projections.py +219 -0
- workbench-0.8.225/src/workbench/utils/chem_utils/vis.py +250 -0
- workbench-0.8.225/src/workbench/utils/chemprop_utils.py +141 -0
- workbench-0.8.225/src/workbench/utils/meta_model_simulator.py +499 -0
- workbench-0.8.225/src/workbench/utils/metrics_utils.py +256 -0
- workbench-0.8.225/src/workbench/utils/model_utils.py +520 -0
- workbench-0.8.225/src/workbench/utils/pipeline_utils.py +71 -0
- workbench-0.8.225/src/workbench/utils/plot_utils.py +325 -0
- workbench-0.8.225/src/workbench/utils/pytorch_utils.py +87 -0
- workbench-0.8.225/src/workbench/utils/shap_utils.py +266 -0
- workbench-0.8.225/src/workbench/utils/theme_manager.py +366 -0
- workbench-0.8.225/src/workbench/utils/xgboost_local_crossfold.py +267 -0
- workbench-0.8.225/src/workbench/utils/xgboost_model_utils.py +324 -0
- workbench-0.8.225/src/workbench/web_interface/components/experiments/outlier_plot.py +102 -0
- workbench-0.8.225/src/workbench/web_interface/components/model_plot.py +73 -0
- workbench-0.8.225/src/workbench/web_interface/components/plugin_unit_test.py +170 -0
- workbench-0.8.225/src/workbench/web_interface/components/plugins/ag_table.py +113 -0
- workbench-0.8.225/src/workbench/web_interface/components/plugins/confusion_matrix.py +190 -0
- workbench-0.8.225/src/workbench/web_interface/components/plugins/model_details.py +228 -0
- workbench-0.8.225/src/workbench/web_interface/components/plugins/scatter_plot.py +524 -0
- workbench-0.8.225/src/workbench/web_interface/components/settings_menu.py +184 -0
- workbench-0.8.225/src/workbench/web_interface/page_views/main_page.py +225 -0
- workbench-0.8.225/src/workbench.egg-info/PKG-INFO +197 -0
- workbench-0.8.225/src/workbench.egg-info/SOURCES.txt +808 -0
- workbench-0.8.225/src/workbench.egg-info/entry_points.txt +11 -0
- workbench-0.8.225/src/workbench.egg-info/requires.txt +43 -0
- workbench-0.8.225/test_artifacts/create_aqsol_artifacts.py +115 -0
- workbench-0.8.225/test_artifacts/create_aqsol_artifacts_all.py +342 -0
- workbench-0.8.225/test_artifacts/create_aqsol_rt_artifacts.py +78 -0
- workbench-0.8.225/test_artifacts/create_basic_test_artifacts.py +138 -0
- workbench-0.8.225/test_artifacts/create_copy_artifacts.py +53 -0
- workbench-0.8.225/test_artifacts/create_knn_artifacts.py +92 -0
- workbench-0.8.225/test_artifacts/create_meta_endpoints.py +49 -0
- workbench-0.8.225/test_artifacts/create_pipeline_model.py +30 -0
- workbench-0.8.225/test_artifacts/create_proximity_models.py +49 -0
- workbench-0.8.225/test_artifacts/create_quant_regression_artifacts.py +120 -0
- workbench-0.8.225/test_artifacts/create_training_adjusted_artifacts.py +52 -0
- workbench-0.8.225/test_artifacts/create_wine_artifacts.py +54 -0
- workbench-0.8.225/test_artifacts/delete_stress_test_artifacts.py +31 -0
- workbench-0.8.225/test_artifacts/delete_test_artifacts.py +66 -0
- workbench-0.8.225/test_artifacts/hyper_testing.py +70 -0
- workbench-0.8.225/test_artifacts/regression_ensemble.py +62 -0
- workbench-0.8.225/test_artifacts/stress_test_aws.py +93 -0
- workbench-0.8.225/tests/artifacts/empty_model_group.py +71 -0
- workbench-0.8.225/tests/artifacts/model_metrics_tests.py +183 -0
- workbench-0.8.225/tests/plugin_tests/crashing_plugin.py +61 -0
- workbench-0.8.225/tests/pytorch/pytorch_hello.py +63 -0
- workbench-0.8.225/tests/web_components/plugin_interface_test.py +148 -0
- workbench-0.8.225/tox.ini +73 -0
- workbench-0.8.225/ui_testing/table_comparison.py +156 -0
- workbench-0.8.198/.gitignore +0 -153
- workbench-0.8.198/PKG-INFO +0 -205
- workbench-0.8.198/applications/aws_dashboard/Dockerfile +0 -36
- workbench-0.8.198/applications/aws_dashboard/app.py +0 -102
- workbench-0.8.198/applications/aws_dashboard/pages/data_sources/page.py +0 -76
- workbench-0.8.198/applications/aws_dashboard/pages/endpoints/page.py +0 -73
- workbench-0.8.198/applications/aws_dashboard/pages/feature_sets/page.py +0 -70
- workbench-0.8.198/applications/aws_dashboard/pages/main/page.py +0 -64
- workbench-0.8.198/applications/aws_dashboard/pages/models/callbacks.py +0 -120
- workbench-0.8.198/applications/aws_dashboard/pages/models/layout.py +0 -67
- workbench-0.8.198/applications/aws_dashboard/pages/models/page.py +0 -65
- workbench-0.8.198/applications/aws_dashboard/pages/pipelines/callbacks.py +0 -89
- workbench-0.8.198/applications/aws_dashboard/pages/status/page.py +0 -41
- workbench-0.8.198/applications/compound_explorer/app.py +0 -73
- workbench-0.8.198/applications/compound_explorer/requirements.txt +0 -24
- workbench-0.8.198/aws_setup/aws_identity_check.py +0 -52
- workbench-0.8.198/aws_setup/workbench_compute/app.py +0 -64
- workbench-0.8.198/aws_setup/workbench_compute/tests/unit/test_workbench_compute_stack.py +0 -17
- workbench-0.8.198/aws_setup/workbench_compute/workbench_compute/workbench_compute_stack.py +0 -279
- workbench-0.8.198/aws_setup/workbench_core/workbench_core/workbench_core_stack.py +0 -1596
- workbench-0.8.198/aws_setup/workbench_dashboard_full/app.py +0 -61
- workbench-0.8.198/aws_setup/workbench_dashboard_full/workbench_dashboard_full/workbench_dashboard_stack.py +0 -178
- workbench-0.8.198/aws_setup/workbench_dashboard_lite/app.py +0 -61
- workbench-0.8.198/docs/admin/images/dashboard_secret_click.png +0 -0
- workbench-0.8.198/docs/admin/images/serverless_quotas.png +0 -0
- workbench-0.8.198/docs/admin/images/status_showing_S3_path.png +0 -0
- workbench-0.8.198/docs/api_classes/endpoint.md +0 -144
- workbench-0.8.198/docs/api_classes/meta.md +0 -132
- workbench-0.8.198/docs/cached/cached_meta.md +0 -132
- workbench-0.8.198/docs/core_classes/transforms/features_to_model.md +0 -129
- workbench-0.8.198/docs/images/big_spider.png +0 -0
- workbench-0.8.198/docs/images/graph_representation.png +0 -0
- workbench-0.8.198/docs/images/powered_aws_dark_blue.png +0 -0
- workbench-0.8.198/docs/images/powered_aws_transparent.png +0 -0
- workbench-0.8.198/docs/images/powered_aws_with_tm_grey.png +0 -0
- workbench-0.8.198/docs/images/scp.png +0 -0
- workbench-0.8.198/docs/images/scp_labs.png +0 -0
- workbench-0.8.198/docs/images/small_spider.png +0 -0
- workbench-0.8.198/docs/images/workbench_concepts.png +0 -0
- workbench-0.8.198/examples/datasource/datasource_from_df.py +0 -10
- workbench-0.8.198/examples/endpoint/endpoint_inference.py +0 -18
- workbench-0.8.198/examples/glue_jobs/glue_example_1.py +0 -21
- workbench-0.8.198/examples/glue_jobs/glue_example_2.py +0 -22
- workbench-0.8.198/examples/glue_jobs/glue_example_3.py +0 -22
- workbench-0.8.198/examples/ml_pipelines/list_models.py +0 -11
- workbench-0.8.198/examples/ml_pipelines/wine_classifier.py +0 -41
- workbench-0.8.198/examples/models/custom_model.py +0 -24
- workbench-0.8.198/examples/models/dbscan.py +0 -27
- workbench-0.8.198/examples/models/pytorch.py +0 -59
- workbench-0.8.198/examples/models/smiles_to_md_v1.py +0 -27
- workbench-0.8.198/examples/models/uq/bayesian_ridge.py +0 -31
- workbench-0.8.198/examples/models/uq/ensemble_xgb.py +0 -31
- workbench-0.8.198/examples/models/uq/gaussian_process.py +0 -38
- workbench-0.8.198/examples/models/uq/mapie.py +0 -38
- workbench-0.8.198/examples/models/uq/meta_uq.py +0 -39
- workbench-0.8.198/examples/models/uq/ngboost.py +0 -38
- workbench-0.8.198/examples/models/uq/quant_xgb.py +0 -26
- workbench-0.8.198/examples/plugins/components/custom_plugin.py +0 -54
- workbench-0.8.198/examples/plugins/components/endpoint_plugin.py +0 -62
- workbench-0.8.198/examples/plugins/components/endpoint_turbo.py +0 -106
- workbench-0.8.198/examples/plugins/pages/plugin_page_2.py +0 -96
- workbench-0.8.198/examples/plugins/pages/plugin_page_3.py +0 -172
- workbench-0.8.198/examples/storage/data_to_data.py +0 -34
- workbench-0.8.198/examples/storage/data_to_features.py +0 -19
- workbench-0.8.198/examples/storage/endpoint_inference.py +0 -40
- workbench-0.8.198/examples/storage/hello_world_pipeline.py +0 -44
- workbench-0.8.198/examples/storage/plugin_page_example.py +0 -122
- workbench-0.8.198/experiments/chem_info/knn_sims.py +0 -25
- workbench-0.8.198/experiments/chemprop_model.py +0 -492
- workbench-0.8.198/experiments/mapie_model.py +0 -477
- workbench-0.8.198/experiments/neighbor_outliers.py +0 -69
- workbench-0.8.198/experiments/pytorch_model.py +0 -583
- workbench-0.8.198/experiments/quantile_regression.py +0 -157
- workbench-0.8.198/experiments/quantile_regression_2.py +0 -236
- workbench-0.8.198/experiments/regression_confidence.py +0 -94
- workbench-0.8.198/experiments/rocauc_testing.py +0 -61
- workbench-0.8.198/experiments/sol_pipeline.py +0 -119
- workbench-0.8.198/glue_jobs/example_glue_job.py +0 -20
- workbench-0.8.198/glue_jobs/glue_job_pipeline.py +0 -107
- workbench-0.8.198/mkdocs.yml +0 -162
- workbench-0.8.198/ml_pipelines/hyper_uq.py +0 -50
- workbench-0.8.198/model_docker_images/inference/Dockerfile +0 -41
- workbench-0.8.198/model_docker_images/inference/requirements.txt +0 -9
- workbench-0.8.198/model_docker_images/meta_endpoint/requirements.txt +0 -5
- workbench-0.8.198/model_docker_images/ml_pipelines/Dockerfile +0 -38
- workbench-0.8.198/model_docker_images/ml_pipelines/requirements.txt +0 -16
- workbench-0.8.198/model_docker_images/pytorch_inference/Dockerfile +0 -38
- workbench-0.8.198/model_docker_images/pytorch_inference/requirements.txt +0 -11
- workbench-0.8.198/model_docker_images/pytorch_training/Dockerfile +0 -23
- workbench-0.8.198/model_docker_images/pytorch_training/requirements.txt +0 -9
- workbench-0.8.198/model_docker_images/scripts/build_deploy.sh +0 -209
- workbench-0.8.198/model_docker_images/tests/example_model_script.py +0 -382
- workbench-0.8.198/model_docker_images/tests/test_training.py +0 -163
- workbench-0.8.198/model_docker_images/training/Dockerfile +0 -27
- workbench-0.8.198/model_docker_images/training/requirements.txt +0 -7
- workbench-0.8.198/notebooks/images/athena_query_aqsol.png +0 -0
- workbench-0.8.198/notebooks/images/aws_dashboard_aqsol.png +0 -0
- workbench-0.8.198/notebooks/images/dashboard_aqsol_features.png +0 -0
- workbench-0.8.198/notebooks/images/model_screenshot.png +0 -0
- workbench-0.8.198/notebooks/images/scp_labs.png +0 -0
- workbench-0.8.198/pyproject.toml +0 -108
- workbench-0.8.198/scripts/admin/athena_ddl_mixed_case.py +0 -63
- workbench-0.8.198/scripts/admin/db_scan_test.py +0 -92
- workbench-0.8.198/scripts/admin/migration/model_migrate.py +0 -40
- workbench-0.8.198/scripts/ag_table_row_selection.py +0 -60
- workbench-0.8.198/scripts/compare_dataframes.py +0 -21
- workbench-0.8.198/scripts/endpoint_timing.py +0 -55
- workbench-0.8.198/scripts/find_smiles_issues.py +0 -31
- workbench-0.8.198/scripts/llm_deploys/deepseek_deploy.py +0 -54
- workbench-0.8.198/scripts/storage/dns_data_to_features.py +0 -36
- workbench-0.8.198/scripts/test_no_workbench_config.py +0 -15
- workbench-0.8.198/scripts/tox21/tox21_to_df_store.py +0 -186
- workbench-0.8.198/src/workbench/__init__.py +0 -45
- workbench-0.8.198/src/workbench/algorithms/dataframe/feature_space_proximity.py +0 -101
- workbench-0.8.198/src/workbench/algorithms/dataframe/fingerprint_proximity.py +0 -162
- workbench-0.8.198/src/workbench/algorithms/dataframe/projection_2d.py +0 -197
- workbench-0.8.198/src/workbench/algorithms/dataframe/proximity.py +0 -403
- workbench-0.8.198/src/workbench/algorithms/graph/light/proximity_graph.py +0 -254
- workbench-0.8.198/src/workbench/algorithms/sql/column_stats.py +0 -147
- workbench-0.8.198/src/workbench/algorithms/sql/correlations.py +0 -116
- workbench-0.8.198/src/workbench/algorithms/sql/descriptive_stats.py +0 -109
- workbench-0.8.198/src/workbench/algorithms/sql/outliers.py +0 -243
- workbench-0.8.198/src/workbench/api/__init__.py +0 -32
- workbench-0.8.198/src/workbench/api/df_store.py +0 -194
- workbench-0.8.198/src/workbench/api/endpoint.py +0 -109
- workbench-0.8.198/src/workbench/api/feature_set.py +0 -168
- workbench-0.8.198/src/workbench/api/meta.py +0 -276
- workbench-0.8.198/src/workbench/api/model.py +0 -124
- workbench-0.8.198/src/workbench/api/parameter_store.py +0 -140
- workbench-0.8.198/src/workbench/cached/cached_meta.py +0 -380
- workbench-0.8.198/src/workbench/cached/cached_model.py +0 -129
- workbench-0.8.198/src/workbench/core/artifacts/__init__.py +0 -21
- workbench-0.8.198/src/workbench/core/artifacts/artifact.py +0 -488
- workbench-0.8.198/src/workbench/core/artifacts/endpoint_core.py +0 -1224
- workbench-0.8.198/src/workbench/core/artifacts/feature_set_core.py +0 -927
- workbench-0.8.198/src/workbench/core/artifacts/model_core.py +0 -1242
- workbench-0.8.198/src/workbench/core/cloud_platform/aws/aws_df_store.py +0 -404
- workbench-0.8.198/src/workbench/core/cloud_platform/aws/aws_parameter_store.py +0 -280
- workbench-0.8.198/src/workbench/core/cloud_platform/cloud_meta.py +0 -284
- workbench-0.8.198/src/workbench/core/pipelines/pipeline_executor.py +0 -161
- workbench-0.8.198/src/workbench/core/transforms/features_to_model/features_to_model.py +0 -427
- workbench-0.8.198/src/workbench/core/transforms/model_to_endpoint/model_to_endpoint.py +0 -157
- workbench-0.8.198/src/workbench/core/transforms/pandas_transforms/pandas_to_features.py +0 -485
- workbench-0.8.198/src/workbench/core/views/view.py +0 -376
- workbench-0.8.198/src/workbench/model_scripts/__pycache__/script_generation.cpython-312.pyc +0 -0
- workbench-0.8.198/src/workbench/model_scripts/__pycache__/script_generation.cpython-313.pyc +0 -0
- workbench-0.8.198/src/workbench/model_scripts/custom_models/chem_info/mol_descriptors.py +0 -483
- workbench-0.8.198/src/workbench/model_scripts/custom_models/chem_info/molecular_descriptors.py +0 -81
- workbench-0.8.198/src/workbench/model_scripts/custom_models/chem_info/morgan_fingerprints.py +0 -85
- workbench-0.8.198/src/workbench/model_scripts/custom_models/meta_endpoints/example.py +0 -53
- workbench-0.8.198/src/workbench/model_scripts/custom_models/proximity/feature_space_proximity.template +0 -136
- workbench-0.8.198/src/workbench/model_scripts/custom_models/proximity/proximity.py +0 -403
- workbench-0.8.198/src/workbench/model_scripts/custom_models/uq_models/ensemble_xgb.template +0 -348
- workbench-0.8.198/src/workbench/model_scripts/custom_models/uq_models/meta_uq.template +0 -371
- workbench-0.8.198/src/workbench/model_scripts/custom_models/uq_models/ngboost.template +0 -233
- workbench-0.8.198/src/workbench/model_scripts/custom_models/uq_models/proximity.py +0 -403
- workbench-0.8.198/src/workbench/model_scripts/ensemble_xgb/ensemble_xgb.template +0 -271
- workbench-0.8.198/src/workbench/model_scripts/pytorch_model/generated_model_script.py +0 -567
- workbench-0.8.198/src/workbench/model_scripts/pytorch_model/pytorch.template +0 -567
- workbench-0.8.198/src/workbench/model_scripts/pytorch_model/requirements.txt +0 -2
- workbench-0.8.198/src/workbench/model_scripts/script_generation.py +0 -205
- workbench-0.8.198/src/workbench/model_scripts/uq_models/generated_model_script.py +0 -589
- workbench-0.8.198/src/workbench/model_scripts/uq_models/mapie.template +0 -589
- workbench-0.8.198/src/workbench/model_scripts/uq_models/requirements.txt +0 -1
- workbench-0.8.198/src/workbench/model_scripts/xgb_model/generated_model_script.py +0 -468
- workbench-0.8.198/src/workbench/model_scripts/xgb_model/xgb_model.template +0 -468
- workbench-0.8.198/src/workbench/repl/workbench_shell.py +0 -582
- workbench-0.8.198/src/workbench/resources/open_source_api.key +0 -1
- workbench-0.8.198/src/workbench/scripts/lambda_launcher.py +0 -63
- workbench-0.8.198/src/workbench/scripts/ml_pipeline_sqs.py +0 -186
- workbench-0.8.198/src/workbench/themes/dark/custom.css +0 -131
- workbench-0.8.198/src/workbench/themes/light/custom.css +0 -145
- workbench-0.8.198/src/workbench/themes/midnight_blue/custom.css +0 -154
- workbench-0.8.198/src/workbench/themes/quartz/base_css.url +0 -1
- workbench-0.8.198/src/workbench/themes/quartz/custom.css +0 -117
- workbench-0.8.198/src/workbench/themes/quartz/plotly.json +0 -642
- workbench-0.8.198/src/workbench/themes/quartz_dark/base_css.url +0 -1
- workbench-0.8.198/src/workbench/themes/quartz_dark/custom.css +0 -131
- workbench-0.8.198/src/workbench/themes/quartz_dark/plotly.json +0 -642
- workbench-0.8.198/src/workbench/utils/__init__.py +0 -0
- workbench-0.8.198/src/workbench/utils/aws_utils.py +0 -629
- workbench-0.8.198/src/workbench/utils/chem_utils/__init__.py +0 -0
- workbench-0.8.198/src/workbench/utils/chem_utils/fingerprints.py +0 -134
- workbench-0.8.198/src/workbench/utils/chem_utils/mol_descriptors.py +0 -483
- workbench-0.8.198/src/workbench/utils/chem_utils/projections.py +0 -209
- workbench-0.8.198/src/workbench/utils/chem_utils/vis.py +0 -253
- workbench-0.8.198/src/workbench/utils/model_utils.py +0 -382
- workbench-0.8.198/src/workbench/utils/pipeline_utils.py +0 -72
- workbench-0.8.198/src/workbench/utils/plot_utils.py +0 -207
- workbench-0.8.198/src/workbench/utils/shap_utils.py +0 -320
- workbench-0.8.198/src/workbench/utils/theme_manager.py +0 -301
- workbench-0.8.198/src/workbench/utils/xgboost_model_utils.py +0 -626
- workbench-0.8.198/src/workbench/web_interface/components/experiments/outlier_plot.py +0 -103
- workbench-0.8.198/src/workbench/web_interface/components/model_plot.py +0 -67
- workbench-0.8.198/src/workbench/web_interface/components/plugin_unit_test.py +0 -171
- workbench-0.8.198/src/workbench/web_interface/components/plugins/ag_table.py +0 -115
- workbench-0.8.198/src/workbench/web_interface/components/plugins/confusion_matrix.py +0 -191
- workbench-0.8.198/src/workbench/web_interface/components/plugins/model_details.py +0 -266
- workbench-0.8.198/src/workbench/web_interface/components/plugins/scatter_plot.py +0 -441
- workbench-0.8.198/src/workbench/web_interface/page_views/main_page.py +0 -226
- workbench-0.8.198/src/workbench.egg-info/PKG-INFO +0 -205
- workbench-0.8.198/src/workbench.egg-info/SOURCES.txt +0 -779
- workbench-0.8.198/src/workbench.egg-info/entry_points.txt +0 -8
- workbench-0.8.198/src/workbench.egg-info/requires.txt +0 -51
- workbench-0.8.198/test_artifacts/100_percent_models.py +0 -95
- workbench-0.8.198/test_artifacts/create_aqsol_artifacts.py +0 -345
- workbench-0.8.198/test_artifacts/create_aqsol_rt_artifacts.py +0 -79
- workbench-0.8.198/test_artifacts/create_aqsol_uq_artifacts.py +0 -48
- workbench-0.8.198/test_artifacts/create_basic_test_artifacts.py +0 -138
- workbench-0.8.198/test_artifacts/create_copy_artifacts.py +0 -54
- workbench-0.8.198/test_artifacts/create_knn_artifacts.py +0 -92
- workbench-0.8.198/test_artifacts/create_meta_endpoints.py +0 -49
- workbench-0.8.198/test_artifacts/create_pipeline_model.py +0 -31
- workbench-0.8.198/test_artifacts/create_proximity_models.py +0 -49
- workbench-0.8.198/test_artifacts/create_quant_regression_artifacts.py +0 -120
- workbench-0.8.198/test_artifacts/create_training_adjusted_artifacts.py +0 -54
- workbench-0.8.198/test_artifacts/create_wine_artifacts.py +0 -55
- workbench-0.8.198/test_artifacts/delete_stress_test_artifacts.py +0 -32
- workbench-0.8.198/test_artifacts/delete_test_artifacts.py +0 -67
- workbench-0.8.198/test_artifacts/hyper_testing.py +0 -70
- workbench-0.8.198/test_artifacts/hyper_uq_testing.py +0 -54
- workbench-0.8.198/test_artifacts/regression_ensemble.py +0 -62
- workbench-0.8.198/test_artifacts/stress_test_aws.py +0 -93
- workbench-0.8.198/tests/artifacts/empty_model_group.py +0 -72
- workbench-0.8.198/tests/artifacts/model_metrics_tests.py +0 -184
- workbench-0.8.198/tests/plugin_tests/crashing_plugin.py +0 -62
- workbench-0.8.198/tests/pytorch/pytorch_hello.py +0 -246
- workbench-0.8.198/tests/web_components/plugin_interface_test.py +0 -149
- workbench-0.8.198/tox.ini +0 -73
- workbench-0.8.198/ui_testing/table_comparison.py +0 -156
- {workbench-0.8.198 → workbench-0.8.225}/.flake8 +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/.github/dependabot.yml +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/.github/workflows/deploy-docs.yml +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/.github/workflows/python-lint.yml +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/CONTRIBUTING.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/Dockerfile +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/LICENSE +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/Makefile +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/README.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/SECURITY.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/README.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/assets/favicon.ico +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/dashboard +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/deploy.sh +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/nginx.conf +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/open_source_config.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/pages/data_sources/callbacks.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/pages/data_sources/layout.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/pages/endpoints/callbacks.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/pages/endpoints/layout.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/pages/feature_sets/callbacks.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/pages/feature_sets/layout.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/pages/license/page.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/pages/main/callbacks.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/pages/main/layout.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/pages/pipelines/layout.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/pages/pipelines/page.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/static/dark.css +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/static/light.css +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/aws_dashboard/supervisord.conf +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/compound_explorer/Dockerfile +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/compound_explorer/README.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/compound_explorer/assets/favicon.ico +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/compound_explorer/callbacks.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/compound_explorer/explorer +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/compound_explorer/layout.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/compound_explorer/nginx.conf +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/compound_explorer/open_source_config.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/compound_explorer/storage/callbacks.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/compound_explorer/storage/callbacks_new.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/compound_explorer/storage/layout_new.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/applications/compound_explorer/supervisord.conf +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/aws_account_setup.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/build_ml_pipeline.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/compound_explorer/.gitignore +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/compound_explorer/README.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/compound_explorer/app.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/compound_explorer/cdk.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/compound_explorer/compound_explorer/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/compound_explorer/compound_explorer/compound_explorer_stack.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/compound_explorer/requirements.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/event_bridge/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_compute/README.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_compute/cdk.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_compute/requirements.txt +0 -0
- {workbench-0.8.198/aws_setup/workbench_compute/tests → workbench-0.8.225/aws_setup/workbench_compute/workbench_compute}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_core/.gitignore +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_core/README.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_core/app.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_core/cdk.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_core/requirements-dev.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_core/requirements.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_core/source.bat +0 -0
- {workbench-0.8.198/aws_setup/workbench_compute/tests/unit → workbench-0.8.225/aws_setup/workbench_core/workbench_core}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_dashboard_full/.gitignore +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_dashboard_full/README.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_dashboard_full/cdk.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_dashboard_full/requirements-dev.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_dashboard_full/requirements.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_dashboard_full/source.bat +0 -0
- {workbench-0.8.198/aws_setup/workbench_compute/workbench_compute → workbench-0.8.225/aws_setup/workbench_dashboard_full/workbench_dashboard_full}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_dashboard_lite/.gitignore +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_dashboard_lite/README.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_dashboard_lite/cdk.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_dashboard_lite/requirements.txt +0 -0
- {workbench-0.8.198/aws_setup/workbench_core/workbench_core → workbench-0.8.225/aws_setup/workbench_dashboard_lite/workbench_dashboard_lite}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/aws_setup/workbench_dashboard_lite/workbench_dashboard_lite/workbench_dashboard_stack.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/data/abalone.csv +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/data/karate_graph.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/data/test_data.csv +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/data/test_data.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/data/wine_dataset.csv +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/deploy_docker.sh +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/admin/aws_service_limits.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/admin/base_docker_push.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/admin/dashboard_docker_push.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/admin/dashboard_s3_plugins.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/admin/explorer_docker_push.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/admin/pypi_release.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/admin/workbench_docker_for_lambdas.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/api_classes/data_source.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/api_classes/df_store.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/api_classes/feature_set.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/api_classes/model.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/api_classes/monitor.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/api_classes/overview.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/api_classes/parameter_store.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/api_classes/pipelines.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/api_classes/views.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/aws_setup/aws_access_management.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/aws_setup/aws_client_vpn.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/aws_setup/aws_setup.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/aws_setup/aws_tips_and_tricks.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/aws_setup/core_stack.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/aws_setup/dashboard_stack.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/aws_setup/domain_cert_setup.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/aws_setup/full_pipeline.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/aws_setup/iam_assume_role.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/aws_setup/sso_assume_role.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/blogs/aws_credentials_lock.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/blogs/canonicalization_and_tautomerization.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/blogs/compound_etl.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/blogs/compound_explorer.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/blogs/descriptor_drilldown.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/blogs/eda.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/blogs/feature_importances.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/blogs/fun_with_workbench/fun_with_endpoints.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/blogs/htg.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/blogs/index.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/blogs/model_monitoring.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/blogs/residual_analysis.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/cached/cached_data_source.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/cached/cached_endpoint.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/cached/cached_feature_set.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/cached/cached_model.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/cached/overview.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/chem_utils/index.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/cloudwatch/index.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/comparisons/workbench_vs_databricks.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/compound_explorer/tox21.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/compound_explorer/toxicity_modeling.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/artifacts/artifact.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/artifacts/athena_source.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/artifacts/data_source_abstract.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/artifacts/endpoint_core.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/artifacts/feature_set_core.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/artifacts/model_core.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/artifacts/monitor_core.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/artifacts/overview.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/overview.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/transforms/data_loaders_heavy.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/transforms/data_loaders_light.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/transforms/data_to_features.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/transforms/model_to_endpoint.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/transforms/overview.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/transforms/pandas_transforms.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/transforms/transform.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/views/computation_view.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/views/display_view.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/views/inference_view.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/views/overview.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/core_classes/views/training_view.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/data_algorithms/dataframes/overview.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/data_algorithms/graphs/overview.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/data_algorithms/overview.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/data_algorithms/spark/overview.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/data_algorithms/sql/overview.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/enterprise/index.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/enterprise/private_saas.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/enterprise/project_branding.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/enterprise/themes.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/getting_started/index.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/glue/index.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/images/powered_aws_white.png +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/index.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/lambda_layer/index.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/misc/faq.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/misc/general_info.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/misc/scp_consulting.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/misc/workbench_classes_concepts.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/model_utils/index.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/plugins/index.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/presentations/index.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/0_8_106.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/0_8_158.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/0_8_50.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/0_8_55.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/0_8_58.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/0_8_60.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/0_8_71.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/0_8_74.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/0_8_78.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_7_8.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_11.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_20.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_22.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_23.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_27.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_29.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_33.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_35.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_36.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_39.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_42.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_46.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_6.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/release_notes/archived/0_8_8.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/repl/index.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/road_maps/0_9_0.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/road_maps/0_9_5.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/themes/details.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/docs/themes/index.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/ag-grid/hello_world.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/chem_utils/tautomerize_smiles.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/datasource/datasource_from_s3.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/datasource/datasource_query.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/datasource/datasource_stats.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/datasource/datasource_to_featureset.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/endpoint/endpoint_details.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/endpoint/endpoint_metrics.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/featureset/featureset_eda.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/featureset/featureset_query.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/full_ml_pipeline.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/glue_jobs/glue_launcher_examples/example_1.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/glue_jobs/glue_launcher_examples/example_2.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/meta/meta_list_endpoints.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/meta/meta_list_models.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/meta/meta_model_metrics.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/model_utils/model_metrics.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/model_utils/model_to_endpoint.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/model_utils/onboard_model.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/models/knn.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/models/random_forest.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/monitor/monitor_setup.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/monitor/monitor_usage.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/plugins/branding/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/plugins/branding/scp.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/plugins/components/model_markdown.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/plugins/components/model_plugin.py +0 -0
- {workbench-0.8.198/aws_setup/workbench_dashboard_full/workbench_dashboard_full → workbench-0.8.225/examples/plugins/packages/my_plugin_utils}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/plugins/packages/my_plugin_utils/assets/foo.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/plugins/packages/my_plugin_utils/cool_stuff.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/plugins/pages/plugin_page_1.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/plugins/templates/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/plugins/views/model_plugin_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/examples/plugins/views/my_view_plugin.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/experiments/chem_info/bulk_sims.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/experiments/confidence_roc_curve.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/experiments/coverage_probability.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/experiments/log_testing.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/experiments/networkx_id.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/experiments/prediction_intervals.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/experiments/residual_analysis.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/experiments/scatter_zoom_issue.py +0 -0
- {workbench-0.8.198/src/workbench/model_scripts/custom_models/chem_info → workbench-0.8.225/feature_endpoints/model_scripts/molecular_utils}/mol_standardize.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/glue_jobs/create_glue_workflow_with_trigger.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/glue_jobs/glue_mixed_case.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/inference/main.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/inference/serve +0 -0
- {workbench-0.8.198/model_docker_images/meta_endpoint → workbench-0.8.225/model_docker_images/meta_inference}/main.py +0 -0
- {workbench-0.8.198/model_docker_images/meta_endpoint → workbench-0.8.225/model_docker_images/meta_inference}/serve +0 -0
- {workbench-0.8.198/model_docker_images/pytorch_training → workbench-0.8.225/model_docker_images/meta_training}/sagemaker_entrypoint.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/ml_pipelines/ml_pipeline_runner.py +0 -0
- {workbench-0.8.198/model_docker_images/meta_endpoint → workbench-0.8.225/model_docker_images/pytorch_inference}/Dockerfile +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/pytorch_inference/main.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/pytorch_inference/serve +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/tests/data/abalone_sm.csv +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/tests/run_tests.sh +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/tests/test_inference.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/training/sagemaker_entrypoint.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/workbench_inference/Dockerfile +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/workbench_inference/main.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/workbench_inference/requirements.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/model_docker_images/workbench_inference/serve +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/notebooks/Inference_On_Legacy_Models.ipynb +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/notebooks/ML_Pipeline_with_Workbench.ipynb +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/notebooks/ML_Pipeline_with_Workbench_2.ipynb +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/notebooks/Outliers_in_Workbench.ipynb +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/notebooks/Regression_Confidence_Experiments.ipynb +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/notebooks/Residual_Analysis.ipynb +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/presentations/README.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/active_logs.sh +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/check_all_glue_tables.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/delete_invalid_views.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/delete_redis_keys.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/list_datacatalog.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/migration/copy_glue_database.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/migration/delete_sageworks_glue_database.sh +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/migration/ds_migrate.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/migration/endpoint_migrate.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/migration/fs_migrate.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/pull_image_digest.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/redis_reaper.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/spam_list_tags.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/storage/convert_training_views.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/storage/migrate_data_source_via_df.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/admin/storage/migrate_ds_meta.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/compare_model_packages.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/delete_data_capture.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/get_tags.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/instantiation_timings.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/model_cache_refresh.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/model_endpoint_sanity_check.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/monitor_event_bridge.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/onboard_endpoints.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/onboard_models.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/pipeline_model_endpoint.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/pubchem/pubchem_example.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/pubchem/pubchem_query.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/pubchem/pubchem_query_with_cid.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/sagemaker_feature_group_issue.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/seaborn_to_plotly.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/storage/generate_jsonl_data.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/test_feature_resolution.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/test_feature_set_creation.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/scripts/tox21/test_tox_heuristic.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/setup.cfg +0 -0
- {workbench-0.8.198/aws_setup/workbench_dashboard_lite/workbench_dashboard_lite → workbench-0.8.225/src/workbench/algorithms}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/dataframe/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/dataframe/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/dataframe/data_source_eda.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/dataframe/storage/aggregation.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/dataframe/storage/feature_resolution.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/dataframe/storage/feature_spider.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/dataframe/storage/residuals_calculator.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/dataframe/storage/row_tagger.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/dataframe/storage/target_gradients.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/graph/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/graph/heavy/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/graph/light/Readme.md +0 -0
- {workbench-0.8.198/examples/plugins/packages/my_plugin_utils → workbench-0.8.225/src/workbench/algorithms/graph/light}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/spark/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/sql/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/sql/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/sql/sample_rows.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/algorithms/sql/value_counts.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/api/compound.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/api/data_source.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/api/graph_store.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/api/monitor.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/api/pipeline.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/cached/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/cached/cached_data_source.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/cached/cached_endpoint.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/cached/cached_feature_set.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/cached/cached_pipeline.py +0 -0
- {workbench-0.8.198/src/workbench/algorithms → workbench-0.8.225/src/workbench/core}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/artifacts/athena_source.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/artifacts/cached_artifact_mixin.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/artifacts/data_capture_core.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/artifacts/data_source_abstract.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/artifacts/data_source_factory.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/artifacts/monitor_core.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/cloud_platform/aws/README.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/cloud_platform/aws/aws_account_clamp.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/cloud_platform/aws/aws_graph_store.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/cloud_platform/aws/aws_meta.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/cloud_platform/aws/aws_secrets_manager.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/cloud_platform/aws/aws_session.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/cloud_platform/aws/cache_dataframe.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/cloud_platform/azure/README.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/cloud_platform/gcp/README.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/Readme.md +0 -0
- {workbench-0.8.198/src/workbench/algorithms/graph/light → workbench-0.8.225/src/workbench/core/transforms}/__init__.py +0 -0
- {workbench-0.8.198/src/workbench/core → workbench-0.8.225/src/workbench/core/transforms/data_loaders}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_loaders/heavy/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_loaders/heavy/s3_heavy_to_data_source.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_loaders/light/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_loaders/light/csv_to_data_source.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_loaders/light/json_to_data_source.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_loaders/light/s3_to_data_source_light.py +0 -0
- {workbench-0.8.198/src/workbench/core/transforms → workbench-0.8.225/src/workbench/core/transforms/data_to_data}/__init__.py +0 -0
- {workbench-0.8.198/src/workbench/core/transforms/data_loaders → workbench-0.8.225/src/workbench/core/transforms/data_to_data/heavy}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_to_data/heavy/emr/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_to_data/heavy/glue/Readme.md +0 -0
- {workbench-0.8.198/src/workbench/core/transforms/data_to_data → workbench-0.8.225/src/workbench/core/transforms/data_to_data/light}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_to_data/light/clean_data.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_to_data/light/data_to_data_light.py +0 -0
- {workbench-0.8.198/src/workbench/core/transforms/data_to_data/heavy → workbench-0.8.225/src/workbench/core/transforms/data_to_features}/__init__.py +0 -0
- {workbench-0.8.198/src/workbench/core/transforms/data_to_data/light → workbench-0.8.225/src/workbench/core/transforms/data_to_features/heavy}/__init__.py +0 -0
- {workbench-0.8.198/src/workbench/core/transforms/data_to_features → workbench-0.8.225/src/workbench/core/transforms/data_to_features/heavy/chunk}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_to_features/heavy/chunk/data_to_features_chunk.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_to_features/heavy/emr/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_to_features/heavy/glue/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_to_features/heavy/storage/data_to_features_heavy_old.py +0 -0
- {workbench-0.8.198/src/workbench/core/transforms/data_to_features/heavy → workbench-0.8.225/src/workbench/core/transforms/data_to_features/light}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_to_features/light/data_to_features_light.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/data_to_features/light/molecular_descriptors.py +0 -0
- {workbench-0.8.198/src/workbench/core/transforms/data_to_features/heavy/chunk → workbench-0.8.225/src/workbench/core/transforms/features_to_features}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/features_to_features/heavy/emr/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/features_to_features/heavy/glue/Readme.md +0 -0
- {workbench-0.8.198/src/workbench/core/transforms/data_to_features/light → workbench-0.8.225/src/workbench/core/transforms/features_to_model}/__init__.py +0 -0
- {workbench-0.8.198/src/workbench/core/transforms/features_to_features → workbench-0.8.225/src/workbench/core/transforms/model_to_endpoint}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/pandas_transforms/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/pandas_transforms/data_to_pandas.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/pandas_transforms/features_to_pandas.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/pandas_transforms/pandas_to_data.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/pandas_transforms/pandas_to_features_chunked.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/transforms/transform.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/views/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/views/column_subset_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/views/computation_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/views/create_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/views/display_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/views/inference_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/views/pandas_to_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/views/storage/mdq_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/views/training_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/core/views/view_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/custom_models/chem_info/Readme.md +0 -0
- {workbench-0.8.198/src/workbench/utils/chem_utils → workbench-0.8.225/src/workbench/model_scripts/custom_models/chem_info}/mol_standardize.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/custom_models/chem_info/requirements.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/custom_models/network_security/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/custom_models/proximity/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/custom_models/proximity/requirements.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/custom_models/uq_models/Readme.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/custom_models/uq_models/bayesian_ridge.template +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/custom_models/uq_models/gaussian_process.template +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/custom_models/uq_models/requirements.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/custom_script_example/custom_model_script.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/custom_script_example/requirements.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/ensemble_xgb/requirements.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/scikit_learn/requirements.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/scikit_learn/scikit_learn.template +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/model_scripts/xgb_model/requirements.txt +0 -0
- {workbench-0.8.198/src/workbench/core/transforms/features_to_model → workbench-0.8.225/src/workbench/repl}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/resources/signature_verify_pub.pem +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/scripts/check_double_bond_stereo.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/scripts/glue_launcher.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/scripts/ml_pipeline_batch.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/scripts/monitor_cloud_watch.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/scripts/redis_expire.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/scripts/redis_report.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/scripts/show_config.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/themes/dark/base_css.url +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/themes/dark/plotly.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/themes/light/base_css.url +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/themes/light/branding.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/themes/light/plotly.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/themes/midnight_blue/base_css.url +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/themes/midnight_blue/branding.json +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/themes/midnight_blue/plotly.json +0 -0
- {workbench-0.8.198/src/workbench/core/transforms/model_to_endpoint → workbench-0.8.225/src/workbench/utils}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/ai_compound_generator.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/ai_summary.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/ai_synth.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/athena_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/bulk_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/cache.py +0 -0
- {workbench-0.8.198/src/workbench/repl → workbench-0.8.225/src/workbench/utils/chem_utils}/__init__.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/chem_utils/misc.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/chem_utils/mol_tagging.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/chem_utils/salts.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/chem_utils/sdf.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/chem_utils/toxicity.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/cloudwatch_handler.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/cloudwatch_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/color_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/config_manager.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/dashboard_metrics.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/datetime_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/deprecated_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/df_to_endpoint.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/ecs_info.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/endpoint_metrics.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/endpoint_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/extract_model_artifact.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/glue_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/graph_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/ipython_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/json_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/lambda_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/license_manager.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/log_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/markdown_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/monitor_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/pandas_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/performance_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/plugin_manager.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/prox_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/redis_cache.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/repl_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/s3_utils.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/shapley_values.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/symbols.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/test_data_generator.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/trace_calls.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/type_abbrev.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/workbench_cache.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/workbench_event_bridge.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/workbench_logging.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/utils/workbench_sqs.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/component_interface.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/correlation_matrix.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/data_details_markdown.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/endpoint_metric_plots.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/experiments/dashboard_metric_plots.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/plugin_interface.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/plugins/dashboard_status.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/plugins/data_details.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/plugins/endpoint_details.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/plugins/generated_compounds.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/plugins/graph_plot.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/plugins/license_details.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/plugins/molecule_panel.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/plugins/molecule_viewer.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/plugins/pipeline_details.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/plugins/proximity_mini_graph.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/plugins/shap_summary_plot.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/regression_plot.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/components/violin_plots.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/page_views/data_sources_page_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/page_views/endpoints_page_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/page_views/feature_sets_page_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/page_views/models_page_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/page_views/page_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench/web_interface/page_views/pipelines_page_view.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench.egg-info/dependency_links.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/src/workbench.egg-info/top_level.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/test_artifacts/create_empty_model_group.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/test_artifacts/create_endpoints_for_timing.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/test_artifacts/create_graph_artifacts.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/test_artifacts/create_realtime_endpoint.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/README.md +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/artifacts/data_source_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/artifacts/endpoint_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/artifacts/featureset_ingest_boundaries.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/artifacts/featureset_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/artifacts/graph_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/artifacts/model_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/aws_account/aws_account_clamp_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/cached/cached_artifact_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/chem_info/test_tautomerization.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/corner_cases/end_to_end.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/df_store/df_store_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/lambda/decompress_layers.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/pandas_tests/test_drift.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/parameter_store/param_store_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/requirements-dev.txt +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/specific/capital_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/specific/column_changes.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/specific/config_manager.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/specific/deletion_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/specific/shap_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/transforms/data_to_data_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/transforms/data_to_features_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/transforms/features_to_model_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/transforms/model_to_endpoint_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/transforms/pandas_to_data_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/transforms/pandas_to_features_test.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/views/view_tests.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/views/view_tests_complex.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/web_components/confusion_matrix_test.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/web_components/correlation_matrix_test.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/web_components/graph_plot_test.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/tests/web_components/scatter_plot_test.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/ui_testing/assets/custom.css +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/ui_testing/theme_switching.py +0 -0
- {workbench-0.8.198 → workbench-0.8.225}/ui_testing/theme_switching_2.py +0 -0
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
pip-wheel-metadata/
|
|
24
|
+
share/python-wheels/
|
|
25
|
+
*.egg-info/
|
|
26
|
+
.installed.cfg
|
|
27
|
+
*.egg
|
|
28
|
+
MANIFEST
|
|
29
|
+
|
|
30
|
+
# PyInstaller
|
|
31
|
+
# Usually these files are written by a python script from a template
|
|
32
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
33
|
+
*.manifest
|
|
34
|
+
*.spec
|
|
35
|
+
|
|
36
|
+
# Installer logs
|
|
37
|
+
pip-log.txt
|
|
38
|
+
pip-delete-this-directory.txt
|
|
39
|
+
|
|
40
|
+
# Unit test / coverage reports
|
|
41
|
+
htmlcov/
|
|
42
|
+
.tox/
|
|
43
|
+
.nox/
|
|
44
|
+
.coverage
|
|
45
|
+
.coverage.*
|
|
46
|
+
.cache
|
|
47
|
+
nosetests.xml
|
|
48
|
+
coverage.xml
|
|
49
|
+
*.cover
|
|
50
|
+
*.py,cover
|
|
51
|
+
.hypothesis/
|
|
52
|
+
.pytest_cache/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
target/
|
|
76
|
+
|
|
77
|
+
# Jupyter Notebook
|
|
78
|
+
.ipynb_checkpoints
|
|
79
|
+
|
|
80
|
+
# IPython
|
|
81
|
+
profile_default/
|
|
82
|
+
ipython_config.py
|
|
83
|
+
|
|
84
|
+
# pyenv
|
|
85
|
+
.python-version
|
|
86
|
+
|
|
87
|
+
# pipenv
|
|
88
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
89
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
90
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
91
|
+
# install all needed dependencies.
|
|
92
|
+
#Pipfile.lock
|
|
93
|
+
|
|
94
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
|
95
|
+
__pypackages__/
|
|
96
|
+
|
|
97
|
+
# Celery stuff
|
|
98
|
+
celerybeat-schedule
|
|
99
|
+
celerybeat.pid
|
|
100
|
+
|
|
101
|
+
# SageMath parsed files
|
|
102
|
+
*.sage.py
|
|
103
|
+
|
|
104
|
+
# Environments
|
|
105
|
+
.env
|
|
106
|
+
.venv
|
|
107
|
+
env/
|
|
108
|
+
venv/
|
|
109
|
+
ENV/
|
|
110
|
+
env.bak/
|
|
111
|
+
venv.bak/
|
|
112
|
+
|
|
113
|
+
# Spyder project settings
|
|
114
|
+
.spyderproject
|
|
115
|
+
.spyproject
|
|
116
|
+
|
|
117
|
+
# Rope project settings
|
|
118
|
+
.ropeproject
|
|
119
|
+
|
|
120
|
+
# mkdocs documentation
|
|
121
|
+
/site
|
|
122
|
+
|
|
123
|
+
# mypy
|
|
124
|
+
.mypy_cache/
|
|
125
|
+
.dmypy.json
|
|
126
|
+
dmypy.json
|
|
127
|
+
|
|
128
|
+
# Pyre type checker
|
|
129
|
+
.pyre/
|
|
130
|
+
|
|
131
|
+
# PyCharm Files
|
|
132
|
+
.idea/
|
|
133
|
+
|
|
134
|
+
# Mac filesystem
|
|
135
|
+
.DS_Store
|
|
136
|
+
|
|
137
|
+
# Generated Model Harness files
|
|
138
|
+
generated_*.py
|
|
139
|
+
|
|
140
|
+
# CDK context files (they are account specific, so we don't want them getting checked int)
|
|
141
|
+
cdk.context.json
|
|
142
|
+
|
|
143
|
+
# CDK Output files
|
|
144
|
+
cdk.out/
|
|
145
|
+
|
|
146
|
+
# Workbench Lambda Layer Output files
|
|
147
|
+
workbench_lambda_layer_output/
|
|
148
|
+
|
|
149
|
+
# Some test datasets
|
|
150
|
+
test_evaluation_data.csv
|
|
151
|
+
|
|
152
|
+
# PyTorch checkpoint/tmp directories
|
|
153
|
+
.pt_tmp/
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: workbench
|
|
3
|
+
Version: 0.8.225
|
|
4
|
+
Summary: Workbench: A Dashboard and Python API for creating and deploying AWS SageMaker Model Pipelines
|
|
5
|
+
Author-email: SuperCowPowers LLC <support@supercowpowers.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2021-2026 SuperCowPowers LLC
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Project-URL: Homepage, https://github.com/SuperCowPowers/workbench
|
|
29
|
+
Keywords: SageMaker,Machine Learning,AWS,Python,Utilities
|
|
30
|
+
Classifier: Development Status :: 4 - Beta
|
|
31
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
32
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
33
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
34
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
35
|
+
Classifier: Topic :: Scientific/Engineering
|
|
36
|
+
Requires-Python: >=3.10
|
|
37
|
+
Description-Content-Type: text/markdown
|
|
38
|
+
License-File: LICENSE
|
|
39
|
+
Requires-Dist: boto3>=1.31.76
|
|
40
|
+
Requires-Dist: botocore>=1.31.76
|
|
41
|
+
Requires-Dist: redis>=5.0.1
|
|
42
|
+
Requires-Dist: numpy>=1.26.4
|
|
43
|
+
Requires-Dist: pandas>=2.2.1
|
|
44
|
+
Requires-Dist: awswrangler>=3.4.0
|
|
45
|
+
Requires-Dist: sagemaker<3.0,>=2.143
|
|
46
|
+
Requires-Dist: cryptography>=44.0.2
|
|
47
|
+
Requires-Dist: ipython>=8.37.0
|
|
48
|
+
Requires-Dist: pyreadline3; sys_platform == "win32"
|
|
49
|
+
Requires-Dist: scikit-learn>=1.5.2
|
|
50
|
+
Requires-Dist: umap-learn>=0.5.8
|
|
51
|
+
Requires-Dist: xgboost>=3.0.3
|
|
52
|
+
Requires-Dist: joblib>=1.3.2
|
|
53
|
+
Requires-Dist: requests>=2.26.0
|
|
54
|
+
Requires-Dist: rdkit>=2024.9.5
|
|
55
|
+
Requires-Dist: mordredcommunity>=2.0.6
|
|
56
|
+
Requires-Dist: workbench-bridges>=0.1.16
|
|
57
|
+
Requires-Dist: cleanlab>=2.9.0
|
|
58
|
+
Provides-Extra: ui
|
|
59
|
+
Requires-Dist: plotly>=6.0.0; extra == "ui"
|
|
60
|
+
Requires-Dist: dash>=3.0.0; extra == "ui"
|
|
61
|
+
Requires-Dist: dash-bootstrap-components>=1.6.0; extra == "ui"
|
|
62
|
+
Requires-Dist: dash-bootstrap-templates>=1.3.0; extra == "ui"
|
|
63
|
+
Requires-Dist: dash_ag_grid; extra == "ui"
|
|
64
|
+
Requires-Dist: tabulate>=0.9.0; extra == "ui"
|
|
65
|
+
Requires-Dist: matplotlib>=3.9.2; extra == "ui"
|
|
66
|
+
Provides-Extra: dev
|
|
67
|
+
Requires-Dist: pytest; extra == "dev"
|
|
68
|
+
Requires-Dist: pytest-sugar; extra == "dev"
|
|
69
|
+
Requires-Dist: coverage; extra == "dev"
|
|
70
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
71
|
+
Requires-Dist: flake8; extra == "dev"
|
|
72
|
+
Requires-Dist: black; extra == "dev"
|
|
73
|
+
Provides-Extra: all
|
|
74
|
+
Requires-Dist: networkx>=3.2; extra == "all"
|
|
75
|
+
Requires-Dist: workbench[ui]; extra == "all"
|
|
76
|
+
Requires-Dist: workbench[dev]; extra == "all"
|
|
77
|
+
Dynamic: license-file
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
# Recent News
|
|
81
|
+
|
|
82
|
+
### Themes
|
|
83
|
+
|
|
84
|
+
Everyone knows that good data science requires... **Some Awesome Themes!**
|
|
85
|
+
|
|
86
|
+
<table>
|
|
87
|
+
<tr>
|
|
88
|
+
<td>
|
|
89
|
+
<a href="https://github.com/user-attachments/assets/82ab4eab-0688-4b93-ad8e-9b954564777b">
|
|
90
|
+
<img width="400" alt="theme_dark" src="https://github.com/user-attachments/assets/82ab4eab-0688-4b93-ad8e-9b954564777b" />
|
|
91
|
+
</a>
|
|
92
|
+
</td>
|
|
93
|
+
<td>
|
|
94
|
+
<a href="https://github.com/user-attachments/assets/b63a0789-c144-4048-afb6-f03e3d993680">
|
|
95
|
+
<img width="400" alt="theme_light" src="https://github.com/user-attachments/assets/b63a0789-c144-4048-afb6-f03e3d993680" />
|
|
96
|
+
</a>
|
|
97
|
+
</td>
|
|
98
|
+
</tr>
|
|
99
|
+
<tr>
|
|
100
|
+
<td>
|
|
101
|
+
<a href="https://github.com/user-attachments/assets/8a59be19-0c5d-42c6-9922-feafb1a1eecd">
|
|
102
|
+
<img width="400" alt="theme_quartz" src="https://github.com/user-attachments/assets/8a59be19-0c5d-42c6-9922-feafb1a1eecd" />
|
|
103
|
+
</a>
|
|
104
|
+
</td>
|
|
105
|
+
<td>
|
|
106
|
+
<a href="https://github.com/user-attachments/assets/5b01ec64-8d56-43bf-96c5-7da8ec48f527">
|
|
107
|
+
<img width="400" alt="theme_quartz_dark" src="https://github.com/user-attachments/assets/5b01ec64-8d56-43bf-96c5-7da8ec48f527" />
|
|
108
|
+
</a>
|
|
109
|
+
</td>
|
|
110
|
+
</tr>
|
|
111
|
+
</table>
|
|
112
|
+
|
|
113
|
+
All of the Dashboard pages, subpages, and plugins use our new `ThemeManager()` class. See [Workbench Themes](https://supercowpowers.github.io/workbench/themes/), also big thanks to our friends at [Dash Bootstrap Templates](https://github.com/AnnMarieW/dash-bootstrap-templates)
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
### Workbench up on the AWS Marketplace
|
|
118
|
+
|
|
119
|
+
Powered by AWS® to accelerate your Machine Learning Pipelines development with our new [Dashboard for ML Pipelines](https://aws.amazon.com/marketplace/pp/prodview-5idedc7uptbqo). Getting started with Workbench is a snap and can be billed through AWS.
|
|
120
|
+
|
|
121
|
+
### Coming Soon: `v0.9`
|
|
122
|
+
|
|
123
|
+
We're getting ready for our `v0.9` release. Here's the road map: [Workbench RoadMaps](https://supercowpowers.github.io/workbench/road_maps/0_9_0/)
|
|
124
|
+
|
|
125
|
+
# Welcome to Workbench
|
|
126
|
+
The Workbench framework makes AWS® both easier to use and more powerful. Workbench handles all the details around updating and managing a complex set of AWS Services. With a simple-to-use Python API and a beautiful set of web interfaces, Workbench makes creating AWS ML pipelines a snap. It also dramatically improves both the usability and visibility across the entire spectrum of services: Glue Job, Athena, Feature Store, Models, and Endpoints, Workbench makes it easy to build production ready, AWS powered, machine learning pipelines.
|
|
127
|
+
|
|
128
|
+
<img align="right" width="480" alt="workbench_new_light" src="https://github.com/SuperCowPowers/workbench/assets/4806709/ed2ed1bd-e2d8-49a1-b350-b2e19e2b7832">
|
|
129
|
+
|
|
130
|
+
### Full AWS ML OverView
|
|
131
|
+
- Health Monitoring 🟢
|
|
132
|
+
- Dynamic Updates
|
|
133
|
+
- High Level Summary
|
|
134
|
+
|
|
135
|
+
### Drill-Down Views
|
|
136
|
+
- Incoming Data
|
|
137
|
+
- Glue Jobs
|
|
138
|
+
- DataSources
|
|
139
|
+
- FeatureSets
|
|
140
|
+
- Models
|
|
141
|
+
- Endpoints
|
|
142
|
+
|
|
143
|
+
## Private SaaS Architecture
|
|
144
|
+
*Secure your Data, Empower your ML Pipelines*
|
|
145
|
+
|
|
146
|
+
Workbench is architected as a **Private SaaS** (also called BYOC: Bring Your Own Cloud). This hybrid architecture is the ultimate solution for businesses that prioritize data control and security. Workbench deploys as an AWS Stack within your own cloud environment, ensuring compliance with stringent corporate and regulatory standards. It offers the flexibility to tailor solutions to your specific business needs through our comprehensive plugin support. By using Workbench, you maintain absolute control over your data while benefiting from the power, security, and scalability of AWS cloud services. [Workbench Private SaaS Architecture](https://docs.google.com/presentation/d/1f_1gmE4-UAeUDDsoNdzK_d_MxALFXIkxORZwbJBjPq4/edit?usp=sharing)
|
|
147
|
+
|
|
148
|
+
<img alt="private_saas_compare" src="https://github.com/user-attachments/assets/2f6d3724-e340-4a70-bb97-d05383917cfe">
|
|
149
|
+
|
|
150
|
+
### API Installation
|
|
151
|
+
|
|
152
|
+
- ```pip install workbench``` Installs Workbench
|
|
153
|
+
|
|
154
|
+
- ```workbench``` Runs the Workbench REPL/Initial Setup
|
|
155
|
+
|
|
156
|
+
For the full instructions for connecting your AWS Account see:
|
|
157
|
+
|
|
158
|
+
- Getting Started: [Initial Setup](https://supercowpowers.github.io/workbench/getting_started/)
|
|
159
|
+
- One time AWS Onboarding: [AWS Setup](https://supercowpowers.github.io/workbench/aws_setup/core_stack/)
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
### Workbench Presentations
|
|
163
|
+
Even though Workbench makes AWS easier, it's taking something very complex (the full set of AWS ML Pipelines/Services) and making it less complex. Workbench has a depth and breadth of functionality so we've provided higher level conceptual documentation See: [Workbench Presentations](https://supercowpowers.github.io/workbench/presentations/)
|
|
164
|
+
|
|
165
|
+
<img align="right" width="420" alt="workbench_api" style="padding-left: 10px;" src="https://github.com/SuperCowPowers/workbench/assets/4806709/bf0e8591-75d4-44c1-be05-4bfdee4b7186">
|
|
166
|
+
|
|
167
|
+
### Workbench Documentation
|
|
168
|
+
|
|
169
|
+
The Workbench documentation [Workbench Docs](https://supercowpowers.github.io/workbench/) covers the Python API in depth and contains code examples. The documentation is fully searchable and fairly comprehensive.
|
|
170
|
+
|
|
171
|
+
The code examples are provided in the Github repo `examples/` directory. For a full code listing of any example please visit our [Workbench Examples](https://github.com/SuperCowPowers/workbench/blob/main/examples)
|
|
172
|
+
|
|
173
|
+
## Questions?
|
|
174
|
+
The SuperCowPowers team is happy to answer any questions you may have about AWS and Workbench. Please contact us at [workbench@supercowpowers.com](mailto:workbench@supercowpowers.com) or chat us up on [Discord](https://discord.gg/WHAJuz8sw8)
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
### Workbench Beta Program
|
|
178
|
+
Using Workbench will minimize the time and manpower needed to incorporate AWS ML into your organization. If your company would like to be a Workbench Beta Tester, contact us at [workbench@supercowpowers.com](mailto:workbench@supercowpowers.com).
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Using Workbench with Additional Packages
|
|
182
|
+
|
|
183
|
+
```
|
|
184
|
+
pip install workbench # Installs Workbench with Core Dependencies
|
|
185
|
+
pip install 'workbench[ui]' # + Plotly/Dash
|
|
186
|
+
pip install 'workbench[dev]' # + Pytest/flake8/black
|
|
187
|
+
pip install 'workbench[all]' # + All the things :)
|
|
188
|
+
|
|
189
|
+
*Note: Shells may interpret square brackets as globs, so the quotes are needed
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
### Contributions
|
|
193
|
+
If you'd like to contribute to the Workbench project, you're more than welcome. All contributions will fall under the existing project [license](https://github.com/SuperCowPowers/workbench/blob/main/LICENSE). If you are interested in contributing or have questions please feel free to contact us at [workbench@supercowpowers.com](mailto:workbench@supercowpowers.com).
|
|
194
|
+
|
|
195
|
+
<img align="right" src="docs/images/scp.png" width="180">
|
|
196
|
+
|
|
197
|
+
® Amazon Web Services, AWS, the Powered by AWS logo, are trademarks of Amazon.com, Inc. or its affiliates
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Base image: python:3.12.5-bookworm
|
|
2
|
+
FROM python:3.12.5-bookworm AS base
|
|
3
|
+
WORKDIR /app
|
|
4
|
+
EXPOSE 8000
|
|
5
|
+
|
|
6
|
+
# Set PYTHONHASHSEED to ensure consistent hashing across processes
|
|
7
|
+
ENV PYTHONHASHSEED=0
|
|
8
|
+
|
|
9
|
+
# Define workbench version
|
|
10
|
+
ARG WORKBENCH_VERSION=0.8.224
|
|
11
|
+
|
|
12
|
+
# Install system packages and gunicorn in one layer
|
|
13
|
+
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
14
|
+
nginx supervisor libnghttp2-dev && \
|
|
15
|
+
apt-get autoremove -y && apt-get clean && \
|
|
16
|
+
rm -rf /var/lib/apt/lists/* && \
|
|
17
|
+
pip install --no-cache-dir gunicorn
|
|
18
|
+
|
|
19
|
+
# Dependency Layer: Install all dependencies of workbench[ui]
|
|
20
|
+
RUN pip install --no-cache-dir "workbench[ui]==${WORKBENCH_VERSION}" && \
|
|
21
|
+
pip uninstall -y workbench && \
|
|
22
|
+
pip cache purge
|
|
23
|
+
|
|
24
|
+
# Install workbench[ui] in separate layer (dependencies already satisfied)
|
|
25
|
+
RUN pip install --no-cache-dir "workbench[ui]==${WORKBENCH_VERSION}"
|
|
26
|
+
|
|
27
|
+
# Copy app code and configuration (after pip installs to avoid cache invalidation)
|
|
28
|
+
COPY . /app
|
|
29
|
+
ARG WORKBENCH_CONFIG
|
|
30
|
+
COPY $WORKBENCH_CONFIG /app/workbench_config.json
|
|
31
|
+
ENV WORKBENCH_CONFIG=/app/workbench_config.json
|
|
32
|
+
|
|
33
|
+
# Configure Nginx and Supervisor
|
|
34
|
+
COPY nginx.conf /etc/nginx/sites-available/default
|
|
35
|
+
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
|
36
|
+
CMD ["/usr/bin/supervisord"]
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
"""Workbench Dashboard: A Workbench Web Application for viewing and managing Workbench Artifacts"""
|
|
2
|
+
|
|
3
|
+
from dash import Dash, html, dcc, page_container, Input, Output, State, ALL
|
|
4
|
+
import dash_bootstrap_components as dbc
|
|
5
|
+
from dash import page_registry
|
|
6
|
+
|
|
7
|
+
# Workbench Imports
|
|
8
|
+
from workbench.utils.plugin_manager import PluginManager
|
|
9
|
+
from workbench.utils.theme_manager import ThemeManager
|
|
10
|
+
from workbench.web_interface.components.settings_menu import SettingsMenu
|
|
11
|
+
|
|
12
|
+
# Set up the logging
|
|
13
|
+
import logging
|
|
14
|
+
|
|
15
|
+
log = logging.getLogger("workbench")
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# Note: The 'app' and 'server' objects need to be at the top level since NGINX/uWSGI needs to
|
|
19
|
+
# import this file and use the server object as an ^entry-point^ into the Dash Application Code
|
|
20
|
+
|
|
21
|
+
# Set up the Theme Manager
|
|
22
|
+
tm = ThemeManager()
|
|
23
|
+
tm.set_theme("auto")
|
|
24
|
+
css_files = tm.css_files()
|
|
25
|
+
print(css_files)
|
|
26
|
+
|
|
27
|
+
# Set the Dash App Title
|
|
28
|
+
app_title = tm.branding().get("app_title", "Workbench Dashboard")
|
|
29
|
+
|
|
30
|
+
# Create the Dash app
|
|
31
|
+
app = Dash(
|
|
32
|
+
__name__,
|
|
33
|
+
title=app_title,
|
|
34
|
+
use_pages=True,
|
|
35
|
+
external_stylesheets=css_files,
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
# Register the CSS route in the ThemeManager
|
|
39
|
+
tm.register_css_route(app)
|
|
40
|
+
|
|
41
|
+
# Custom index string to sync localStorage theme to cookie on page load
|
|
42
|
+
app.index_string = """
|
|
43
|
+
<!DOCTYPE html>
|
|
44
|
+
<html>
|
|
45
|
+
<head>
|
|
46
|
+
{%metas%}
|
|
47
|
+
<title>{%title%}</title>
|
|
48
|
+
{%favicon%}
|
|
49
|
+
{%css%}
|
|
50
|
+
<script>
|
|
51
|
+
// Sync localStorage theme to cookie on page load (before Flask renders)
|
|
52
|
+
(function() {
|
|
53
|
+
var theme = localStorage.getItem('wb_theme');
|
|
54
|
+
if (theme) {
|
|
55
|
+
document.cookie = 'wb_theme=' + theme + '; path=/; max-age=31536000';
|
|
56
|
+
}
|
|
57
|
+
})();
|
|
58
|
+
</script>
|
|
59
|
+
</head>
|
|
60
|
+
<body>
|
|
61
|
+
{%app_entry%}
|
|
62
|
+
<footer>
|
|
63
|
+
{%config%}
|
|
64
|
+
{%scripts%}
|
|
65
|
+
{%renderer%}
|
|
66
|
+
</footer>
|
|
67
|
+
</body>
|
|
68
|
+
</html>
|
|
69
|
+
"""
|
|
70
|
+
|
|
71
|
+
# Note: The 'server' object is required for running the app with NGINX/uWSGI
|
|
72
|
+
server = app.server
|
|
73
|
+
|
|
74
|
+
# Create the settings menu component
|
|
75
|
+
settings_menu = SettingsMenu()
|
|
76
|
+
settings_menu_id = "settings-menu"
|
|
77
|
+
|
|
78
|
+
# For Multi-Page Applications, we need to create a 'page container' to hold all the pages
|
|
79
|
+
plugin_info_id = "plugin-pages-info"
|
|
80
|
+
app.layout = html.Div(
|
|
81
|
+
[
|
|
82
|
+
# URL for subpage navigation (jumping to feature_sets, models, etc.)
|
|
83
|
+
dcc.Location(id="url", refresh="callback-nav"),
|
|
84
|
+
dcc.Store(id=plugin_info_id, data={}),
|
|
85
|
+
# Settings menu in top-right corner
|
|
86
|
+
html.Div(
|
|
87
|
+
settings_menu.create_component(settings_menu_id),
|
|
88
|
+
style={"position": "absolute", "top": "25px", "right": "20px", "zIndex": 1000},
|
|
89
|
+
),
|
|
90
|
+
dbc.Container([page_container], fluid=True, className="dbc dbc-ag-grid"),
|
|
91
|
+
],
|
|
92
|
+
**{"data-bs-theme": tm.data_bs_theme()},
|
|
93
|
+
)
|
|
94
|
+
|
|
95
|
+
# Clientside callback for theme switching (stores in localStorage, sets cookie, reloads page)
|
|
96
|
+
app.clientside_callback(
|
|
97
|
+
settings_menu.get_clientside_callback_code(settings_menu_id),
|
|
98
|
+
Output(f"{settings_menu_id}-dummy", "data"),
|
|
99
|
+
Input({"type": f"{settings_menu_id}-theme-item", "theme": ALL}, "n_clicks"),
|
|
100
|
+
State({"type": f"{settings_menu_id}-theme-item", "theme": ALL}, "id"),
|
|
101
|
+
)
|
|
102
|
+
|
|
103
|
+
# Clientside callback to update checkmarks based on localStorage
|
|
104
|
+
app.clientside_callback(
|
|
105
|
+
settings_menu.get_checkmark_callback_code(),
|
|
106
|
+
Output({"type": f"{settings_menu_id}-checkmark", "theme": ALL}, "children"),
|
|
107
|
+
Input(f"{settings_menu_id}-init", "data"),
|
|
108
|
+
State({"type": f"{settings_menu_id}-checkmark", "theme": ALL}, "id"),
|
|
109
|
+
)
|
|
110
|
+
|
|
111
|
+
# Spin up the Plugin Manager
|
|
112
|
+
pm = PluginManager()
|
|
113
|
+
|
|
114
|
+
# Grab any plugin pages
|
|
115
|
+
plugin_pages = pm.get_pages()
|
|
116
|
+
|
|
117
|
+
# Setup each if the plugin pages (call layout and callbacks internally)
|
|
118
|
+
for name, page in plugin_pages.items():
|
|
119
|
+
# Note: We need to catch any exceptions here
|
|
120
|
+
try:
|
|
121
|
+
page.page_setup(app)
|
|
122
|
+
except Exception as e:
|
|
123
|
+
# Put the exception full stack trace
|
|
124
|
+
log.critical(f"Error setting up plugin page: {name}")
|
|
125
|
+
log.critical(e, exc_info=True)
|
|
126
|
+
continue
|
|
127
|
+
log.info("Done with Plugin Pages")
|
|
128
|
+
|
|
129
|
+
# Grab our plugin page info from the page registry and populate our plugin-pages-info store
|
|
130
|
+
dashboard_page_paths = [
|
|
131
|
+
"/",
|
|
132
|
+
"/data_sources",
|
|
133
|
+
"/feature_sets",
|
|
134
|
+
"/models",
|
|
135
|
+
"/endpoints",
|
|
136
|
+
"/pipelines",
|
|
137
|
+
"/license",
|
|
138
|
+
"/status",
|
|
139
|
+
]
|
|
140
|
+
|
|
141
|
+
# Pull the plugin pages path and name
|
|
142
|
+
plugin_pages = {}
|
|
143
|
+
for page_id, page_info in page_registry.items():
|
|
144
|
+
if page_info["path"] not in dashboard_page_paths:
|
|
145
|
+
plugin_pages[page_info["path"]] = page_info["name"]
|
|
146
|
+
print(plugin_pages)
|
|
147
|
+
|
|
148
|
+
# Update the plugin-pages-info store
|
|
149
|
+
for component in app.layout.children:
|
|
150
|
+
if isinstance(component, dcc.Store) and component.id == plugin_info_id:
|
|
151
|
+
component.data = plugin_pages
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
if __name__ == "__main__":
|
|
155
|
+
"""Run our web application in TEST mode"""
|
|
156
|
+
# Note: This 'main' is purely for running/testing locally
|
|
157
|
+
# app.run(host="0.0.0.0", port=8000, debug=True)
|
|
158
|
+
app.run(host="0.0.0.0", port=8000)
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"""DataSources: A Workbench Web Interface to view, interact, and manage Data Sources"""
|
|
2
|
+
|
|
3
|
+
from dash import register_page
|
|
4
|
+
|
|
5
|
+
# Workbench Imports
|
|
6
|
+
from workbench.web_interface.components import violin_plots, correlation_matrix
|
|
7
|
+
from workbench.web_interface.components.plugins.ag_table import AGTable
|
|
8
|
+
from workbench.web_interface.components.plugins.data_details import DataDetails
|
|
9
|
+
from workbench.web_interface.page_views.data_sources_page_view import DataSourcesPageView
|
|
10
|
+
|
|
11
|
+
# Local Imports
|
|
12
|
+
from .layout import data_sources_layout
|
|
13
|
+
from . import callbacks
|
|
14
|
+
|
|
15
|
+
register_page(
|
|
16
|
+
__name__,
|
|
17
|
+
path="/data_sources",
|
|
18
|
+
name="Workbench - Data Sources",
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# Create a table to display the Data Sources
|
|
23
|
+
data_sources_table = AGTable()
|
|
24
|
+
data_sources_component = data_sources_table.create_component("data_sources_table", max_height=270)
|
|
25
|
+
|
|
26
|
+
# Create a table that sample rows from the currently selected data source
|
|
27
|
+
samples_table = AGTable()
|
|
28
|
+
samples_component = samples_table.create_component("data_source_sample_rows", max_height=250)
|
|
29
|
+
|
|
30
|
+
# Data Source Details Markdown PANEL
|
|
31
|
+
data_details = DataDetails()
|
|
32
|
+
data_details_component = data_details.create_component("data_details")
|
|
33
|
+
|
|
34
|
+
# Create a violin plot of all the numeric columns in the Data Source
|
|
35
|
+
violin = violin_plots.ViolinPlots().create_component("data_source_violin_plot")
|
|
36
|
+
|
|
37
|
+
# Create a correlation matrix of all the numeric columns in the Data Source
|
|
38
|
+
corr_matrix = correlation_matrix.CorrelationMatrix().create_component("data_source_correlation_matrix")
|
|
39
|
+
|
|
40
|
+
# Create our components
|
|
41
|
+
components = {
|
|
42
|
+
"data_sources_table": data_sources_component,
|
|
43
|
+
"data_source_sample_rows": samples_component,
|
|
44
|
+
"data_source_details": data_details_component,
|
|
45
|
+
"violin_plot": violin,
|
|
46
|
+
"correlation_matrix": corr_matrix,
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
# Set up our layout (Dash looks for a var called layout)
|
|
50
|
+
layout = data_sources_layout(**components)
|
|
51
|
+
|
|
52
|
+
# Grab a view that gives us a summary of the DataSources in Workbench
|
|
53
|
+
data_source_view = DataSourcesPageView()
|
|
54
|
+
|
|
55
|
+
# Callback for anything we want to happen on page load
|
|
56
|
+
callbacks.on_page_load()
|
|
57
|
+
|
|
58
|
+
# Periodic update to the data sources summary table
|
|
59
|
+
callbacks.data_sources_refresh(data_source_view, data_sources_table)
|
|
60
|
+
|
|
61
|
+
# Callbacks for when a data source is selected
|
|
62
|
+
callbacks.update_data_source_details(data_details)
|
|
63
|
+
callbacks.update_data_source_sample_rows(samples_table)
|
|
64
|
+
|
|
65
|
+
# Callbacks for selections
|
|
66
|
+
callbacks.violin_plot_selection()
|
|
67
|
+
callbacks.reorder_sample_rows()
|
|
68
|
+
callbacks.correlation_matrix_selection()
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"""Endpoints: A Workbench Web Interface to view and interact with Endpoints"""
|
|
2
|
+
|
|
3
|
+
from dash import register_page
|
|
4
|
+
|
|
5
|
+
# Local Imports
|
|
6
|
+
from .layout import endpoints_layout
|
|
7
|
+
from . import callbacks
|
|
8
|
+
|
|
9
|
+
# Workbench Imports
|
|
10
|
+
from workbench.web_interface.components import endpoint_metric_plots
|
|
11
|
+
from workbench.web_interface.components.plugins import endpoint_details, ag_table
|
|
12
|
+
from workbench.web_interface.components.plugin_interface import PluginPage
|
|
13
|
+
from workbench.web_interface.page_views.endpoints_page_view import EndpointsPageView
|
|
14
|
+
from workbench.utils.plugin_manager import PluginManager
|
|
15
|
+
|
|
16
|
+
# Register this page with Dash
|
|
17
|
+
register_page(
|
|
18
|
+
__name__,
|
|
19
|
+
path="/endpoints",
|
|
20
|
+
name="Workbench - Endpoints",
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
# Create a table to display the endpoints
|
|
25
|
+
endpoints_table = ag_table.AGTable()
|
|
26
|
+
endpoints_component = endpoints_table.create_component("endpoints_table", max_height=270)
|
|
27
|
+
|
|
28
|
+
# Create a Markdown component to display the endpoint details
|
|
29
|
+
endpoint_details = endpoint_details.EndpointDetails()
|
|
30
|
+
endpoint_details_component = endpoint_details.create_component("endpoint_details")
|
|
31
|
+
|
|
32
|
+
# Create a component to display the endpoint metrics
|
|
33
|
+
endpoint_metrics = endpoint_metric_plots.EndpointMetricPlots().create_component("endpoint_metrics")
|
|
34
|
+
|
|
35
|
+
# Capture our components in a dictionary to send off to the layout
|
|
36
|
+
components = {
|
|
37
|
+
"endpoints_table": endpoints_component,
|
|
38
|
+
"endpoint_details": endpoint_details_component,
|
|
39
|
+
"endpoint_metrics": endpoint_metrics,
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
# Load any web components plugins of type 'endpoint'
|
|
43
|
+
pm = PluginManager()
|
|
44
|
+
plugins = pm.get_list_of_web_plugins(plugin_page=PluginPage.ENDPOINT)
|
|
45
|
+
|
|
46
|
+
# Our endpoint details is a plugin, so we need to add it to the list
|
|
47
|
+
plugins.append(endpoint_details)
|
|
48
|
+
|
|
49
|
+
# Add the plugins to the components dictionary
|
|
50
|
+
for plugin in plugins:
|
|
51
|
+
component_id = plugin.generate_component_id()
|
|
52
|
+
components[component_id] = plugin.create_component(component_id)
|
|
53
|
+
|
|
54
|
+
# Set up our layout (Dash looks for a var called layout)
|
|
55
|
+
layout = endpoints_layout(**components)
|
|
56
|
+
|
|
57
|
+
# Grab a view that gives us a summary of the Endpoints in Workbench
|
|
58
|
+
endpoints_view = EndpointsPageView()
|
|
59
|
+
|
|
60
|
+
# Callback for anything we want to happen on page load
|
|
61
|
+
callbacks.on_page_load()
|
|
62
|
+
|
|
63
|
+
# Setup our callbacks/connections
|
|
64
|
+
callbacks.endpoint_table_refresh(endpoints_view, endpoints_table)
|
|
65
|
+
|
|
66
|
+
# Callback for the endpoints table
|
|
67
|
+
callbacks.update_endpoint_metrics(endpoints_view)
|
|
68
|
+
|
|
69
|
+
# For all the plugins we have we'll call their update_properties method
|
|
70
|
+
if plugins:
|
|
71
|
+
callbacks.setup_plugin_callbacks(plugins)
|