workbench 0.8.158__tar.gz → 0.8.159__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.

Files changed (779) hide show
  1. {workbench-0.8.158 → workbench-0.8.159}/PKG-INFO +5 -8
  2. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/requirements.txt +1 -1
  3. workbench-0.8.159/examples/models/pytorch.py +57 -0
  4. workbench-0.8.159/experiments/pytorch_model.py +561 -0
  5. workbench-0.8.159/model_docker_images/Readme.md +6 -0
  6. workbench-0.8.159/model_docker_images/inference/requirements.txt +7 -0
  7. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/meta_endpoint/requirements.txt +1 -1
  8. workbench-0.8.159/model_docker_images/pytorch_inference/Dockerfile +38 -0
  9. workbench-0.8.159/model_docker_images/pytorch_inference/requirements.txt +11 -0
  10. workbench-0.8.159/model_docker_images/pytorch_training/Dockerfile +23 -0
  11. workbench-0.8.159/model_docker_images/pytorch_training/requirements.txt +9 -0
  12. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/scripts/build_deploy.sh +8 -6
  13. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/training/requirements.txt +1 -1
  14. workbench-0.8.159/model_docker_images/training/sagemaker_entrypoint.py +150 -0
  15. workbench-0.8.159/model_docker_images/workbench_inference/main.py +150 -0
  16. workbench-0.8.159/model_docker_images/workbench_inference/requirements.txt +4 -0
  17. workbench-0.8.159/model_docker_images/workbench_inference/serve +6 -0
  18. {workbench-0.8.158 → workbench-0.8.159}/pyproject.toml +4 -6
  19. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/api/feature_set.py +12 -4
  20. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/api/meta.py +1 -1
  21. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/cached/cached_feature_set.py +1 -0
  22. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/cached/cached_meta.py +10 -12
  23. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/artifacts/cached_artifact_mixin.py +6 -3
  24. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/artifacts/model_core.py +19 -7
  25. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/cloud_platform/aws/aws_meta.py +66 -45
  26. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/cloud_platform/cloud_meta.py +5 -2
  27. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/features_to_model/features_to_model.py +9 -5
  28. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/model_to_endpoint/model_to_endpoint.py +6 -0
  29. {workbench-0.8.158/src/workbench/model_scripts/custom_models/nn_models → workbench-0.8.159/src/workbench/model_scripts/pytorch_model}/generated_model_script.py +170 -156
  30. {workbench-0.8.158/src/workbench/model_scripts/custom_models/nn_models → workbench-0.8.159/src/workbench/model_scripts/pytorch_model}/pytorch.template +153 -147
  31. workbench-0.8.159/src/workbench/model_scripts/pytorch_model/requirements.txt +2 -0
  32. workbench-0.8.159/src/workbench/model_scripts/scikit_learn/generated_model_script.py +307 -0
  33. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/script_generation.py +6 -2
  34. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/xgb_model/generated_model_script.py +6 -6
  35. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/repl/workbench_shell.py +4 -9
  36. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/json_utils.py +27 -8
  37. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/pandas_utils.py +12 -13
  38. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/redis_cache.py +28 -13
  39. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/workbench_cache.py +20 -14
  40. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/page_views/endpoints_page_view.py +1 -1
  41. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/page_views/main_page.py +1 -1
  42. {workbench-0.8.158 → workbench-0.8.159}/src/workbench.egg-info/PKG-INFO +5 -8
  43. {workbench-0.8.158 → workbench-0.8.159}/src/workbench.egg-info/SOURCES.txt +13 -5
  44. {workbench-0.8.158 → workbench-0.8.159}/src/workbench.egg-info/requires.txt +3 -7
  45. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_aqsol_artifacts.py +49 -22
  46. workbench-0.8.158/examples/models/featureset_to_model.py +0 -11
  47. workbench-0.8.158/model_docker_images/Readme.md +0 -0
  48. workbench-0.8.158/model_docker_images/inference/requirements.txt +0 -7
  49. workbench-0.8.158/model_docker_images/workbench_inference/requirements.txt +0 -4
  50. workbench-0.8.158/src/workbench/model_scripts/custom_models/nn_models/Readme.md +0 -9
  51. workbench-0.8.158/src/workbench/model_scripts/custom_models/nn_models/requirements.txt +0 -4
  52. {workbench-0.8.158 → workbench-0.8.159}/.flake8 +0 -0
  53. {workbench-0.8.158 → workbench-0.8.159}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  54. {workbench-0.8.158 → workbench-0.8.159}/.github/dependabot.yml +0 -0
  55. {workbench-0.8.158 → workbench-0.8.159}/.github/workflows/deploy-docs.yml +0 -0
  56. {workbench-0.8.158 → workbench-0.8.159}/.github/workflows/python-lint.yml +0 -0
  57. {workbench-0.8.158 → workbench-0.8.159}/.gitignore +0 -0
  58. {workbench-0.8.158 → workbench-0.8.159}/CONTRIBUTING.md +0 -0
  59. {workbench-0.8.158 → workbench-0.8.159}/Dockerfile +0 -0
  60. {workbench-0.8.158 → workbench-0.8.159}/LICENSE +0 -0
  61. {workbench-0.8.158 → workbench-0.8.159}/Makefile +0 -0
  62. {workbench-0.8.158 → workbench-0.8.159}/README.md +0 -0
  63. {workbench-0.8.158 → workbench-0.8.159}/SECURITY.md +0 -0
  64. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/Dockerfile +0 -0
  65. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/README.md +0 -0
  66. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/app.py +0 -0
  67. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/assets/favicon.ico +0 -0
  68. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/dashboard +0 -0
  69. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/deploy.sh +0 -0
  70. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/nginx.conf +0 -0
  71. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/open_source_config.json +0 -0
  72. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/data_sources/callbacks.py +0 -0
  73. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/data_sources/layout.py +0 -0
  74. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/data_sources/page.py +0 -0
  75. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/endpoints/callbacks.py +0 -0
  76. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/endpoints/layout.py +0 -0
  77. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/endpoints/page.py +0 -0
  78. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/feature_sets/callbacks.py +0 -0
  79. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/feature_sets/layout.py +0 -0
  80. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/feature_sets/page.py +0 -0
  81. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/license/page.py +0 -0
  82. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/main/callbacks.py +0 -0
  83. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/main/layout.py +0 -0
  84. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/main/page.py +0 -0
  85. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/models/callbacks.py +0 -0
  86. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/models/layout.py +0 -0
  87. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/models/page.py +0 -0
  88. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/pipelines/callbacks.py +0 -0
  89. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/pipelines/layout.py +0 -0
  90. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/pipelines/page.py +0 -0
  91. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/pages/status/page.py +0 -0
  92. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/static/dark.css +0 -0
  93. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/static/light.css +0 -0
  94. {workbench-0.8.158 → workbench-0.8.159}/applications/aws_dashboard/supervisord.conf +0 -0
  95. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/Dockerfile +0 -0
  96. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/README.md +0 -0
  97. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/app.py +0 -0
  98. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/assets/favicon.ico +0 -0
  99. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/callbacks.py +0 -0
  100. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/explorer +0 -0
  101. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/layout.py +0 -0
  102. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/nginx.conf +0 -0
  103. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/open_source_config.json +0 -0
  104. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/storage/callbacks.py +0 -0
  105. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/storage/callbacks_new.py +0 -0
  106. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/storage/layout_new.py +0 -0
  107. {workbench-0.8.158 → workbench-0.8.159}/applications/compound_explorer/supervisord.conf +0 -0
  108. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/aws_account_check.py +0 -0
  109. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/aws_identity_check.py +0 -0
  110. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/build_ml_pipeline.py +0 -0
  111. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/compound_explorer/.gitignore +0 -0
  112. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/compound_explorer/README.md +0 -0
  113. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/compound_explorer/app.py +0 -0
  114. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/compound_explorer/cdk.json +0 -0
  115. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/compound_explorer/compound_explorer/__init__.py +0 -0
  116. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/compound_explorer/compound_explorer/compound_explorer_stack.py +0 -0
  117. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/compound_explorer/requirements.txt +0 -0
  118. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/event_bridge/Readme.md +0 -0
  119. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/event_bridge/dynamic_docker/Readme.md +0 -0
  120. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/event_bridge/dynamic_docker/app.py +0 -0
  121. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/event_bridge/dynamic_docker/cdk.json +0 -0
  122. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/event_bridge/dynamic_docker/lambda/lambda_replace_task.py +0 -0
  123. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/event_bridge/dynamic_docker/workbench_image_update_stack.py +0 -0
  124. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_core/.gitignore +0 -0
  125. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_core/README.md +0 -0
  126. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_core/app.py +0 -0
  127. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_core/cdk.json +0 -0
  128. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_core/requirements-dev.txt +0 -0
  129. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_core/requirements.txt +0 -0
  130. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_core/source.bat +0 -0
  131. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_core/workbench_core/__init__.py +0 -0
  132. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_core/workbench_core/workbench_core_stack.py +0 -0
  133. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_full/.gitignore +0 -0
  134. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_full/README.md +0 -0
  135. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_full/app.py +0 -0
  136. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_full/cdk.json +0 -0
  137. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_full/requirements-dev.txt +0 -0
  138. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_full/requirements.txt +0 -0
  139. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_full/source.bat +0 -0
  140. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_full/workbench_dashboard_full/__init__.py +0 -0
  141. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_full/workbench_dashboard_full/workbench_dashboard_stack.py +0 -0
  142. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_lite/.gitignore +0 -0
  143. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_lite/README.md +0 -0
  144. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_lite/app.py +0 -0
  145. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_lite/cdk.json +0 -0
  146. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_lite/requirements.txt +0 -0
  147. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_lite/workbench_dashboard_lite/__init__.py +0 -0
  148. {workbench-0.8.158 → workbench-0.8.159}/aws_setup/workbench_dashboard_lite/workbench_dashboard_lite/workbench_dashboard_stack.py +0 -0
  149. {workbench-0.8.158 → workbench-0.8.159}/data/abalone.csv +0 -0
  150. {workbench-0.8.158 → workbench-0.8.159}/data/karate_graph.json +0 -0
  151. {workbench-0.8.158 → workbench-0.8.159}/data/test_data.csv +0 -0
  152. {workbench-0.8.158 → workbench-0.8.159}/data/test_data.json +0 -0
  153. {workbench-0.8.158 → workbench-0.8.159}/data/wine_dataset.csv +0 -0
  154. {workbench-0.8.158 → workbench-0.8.159}/deploy_docker.sh +0 -0
  155. {workbench-0.8.158 → workbench-0.8.159}/docs/admin/aws_service_limits.md +0 -0
  156. {workbench-0.8.158 → workbench-0.8.159}/docs/admin/base_docker_push.md +0 -0
  157. {workbench-0.8.158 → workbench-0.8.159}/docs/admin/dashboard_docker_push.md +0 -0
  158. {workbench-0.8.158 → workbench-0.8.159}/docs/admin/dashboard_s3_plugins.md +0 -0
  159. {workbench-0.8.158 → workbench-0.8.159}/docs/admin/explorer_docker_push.md +0 -0
  160. {workbench-0.8.158 → workbench-0.8.159}/docs/admin/images/dashboard_secret_click.png +0 -0
  161. {workbench-0.8.158 → workbench-0.8.159}/docs/admin/images/serverless_quotas.png +0 -0
  162. {workbench-0.8.158 → workbench-0.8.159}/docs/admin/images/status_showing_S3_path.png +0 -0
  163. {workbench-0.8.158 → workbench-0.8.159}/docs/admin/pypi_release.md +0 -0
  164. {workbench-0.8.158 → workbench-0.8.159}/docs/admin/workbench_docker_for_lambdas.md +0 -0
  165. {workbench-0.8.158 → workbench-0.8.159}/docs/api_classes/data_source.md +0 -0
  166. {workbench-0.8.158 → workbench-0.8.159}/docs/api_classes/df_store.md +0 -0
  167. {workbench-0.8.158 → workbench-0.8.159}/docs/api_classes/endpoint.md +0 -0
  168. {workbench-0.8.158 → workbench-0.8.159}/docs/api_classes/feature_set.md +0 -0
  169. {workbench-0.8.158 → workbench-0.8.159}/docs/api_classes/meta.md +0 -0
  170. {workbench-0.8.158 → workbench-0.8.159}/docs/api_classes/model.md +0 -0
  171. {workbench-0.8.158 → workbench-0.8.159}/docs/api_classes/monitor.md +0 -0
  172. {workbench-0.8.158 → workbench-0.8.159}/docs/api_classes/overview.md +0 -0
  173. {workbench-0.8.158 → workbench-0.8.159}/docs/api_classes/parameter_store.md +0 -0
  174. {workbench-0.8.158 → workbench-0.8.159}/docs/api_classes/pipelines.md +0 -0
  175. {workbench-0.8.158 → workbench-0.8.159}/docs/api_classes/views.md +0 -0
  176. {workbench-0.8.158 → workbench-0.8.159}/docs/aws_setup/aws_access_management.md +0 -0
  177. {workbench-0.8.158 → workbench-0.8.159}/docs/aws_setup/aws_client_vpn.md +0 -0
  178. {workbench-0.8.158 → workbench-0.8.159}/docs/aws_setup/aws_setup.md +0 -0
  179. {workbench-0.8.158 → workbench-0.8.159}/docs/aws_setup/aws_tips_and_tricks.md +0 -0
  180. {workbench-0.8.158 → workbench-0.8.159}/docs/aws_setup/core_stack.md +0 -0
  181. {workbench-0.8.158 → workbench-0.8.159}/docs/aws_setup/dashboard_stack.md +0 -0
  182. {workbench-0.8.158 → workbench-0.8.159}/docs/aws_setup/domain_cert_setup.md +0 -0
  183. {workbench-0.8.158 → workbench-0.8.159}/docs/aws_setup/full_pipeline.md +0 -0
  184. {workbench-0.8.158 → workbench-0.8.159}/docs/aws_setup/iam_assume_role.md +0 -0
  185. {workbench-0.8.158 → workbench-0.8.159}/docs/aws_setup/sso_assume_role.md +0 -0
  186. {workbench-0.8.158 → workbench-0.8.159}/docs/blogs/aws_credentials_lock.md +0 -0
  187. {workbench-0.8.158 → workbench-0.8.159}/docs/blogs/canonicalization_and_tautomerization.md +0 -0
  188. {workbench-0.8.158 → workbench-0.8.159}/docs/blogs/compound_etl.md +0 -0
  189. {workbench-0.8.158 → workbench-0.8.159}/docs/blogs/compound_explorer.md +0 -0
  190. {workbench-0.8.158 → workbench-0.8.159}/docs/blogs/descriptor_drilldown.md +0 -0
  191. {workbench-0.8.158 → workbench-0.8.159}/docs/blogs/eda.md +0 -0
  192. {workbench-0.8.158 → workbench-0.8.159}/docs/blogs/feature_importances.md +0 -0
  193. {workbench-0.8.158 → workbench-0.8.159}/docs/blogs/fun_with_workbench/fun_with_endpoints.md +0 -0
  194. {workbench-0.8.158 → workbench-0.8.159}/docs/blogs/htg.md +0 -0
  195. {workbench-0.8.158 → workbench-0.8.159}/docs/blogs/index.md +0 -0
  196. {workbench-0.8.158 → workbench-0.8.159}/docs/blogs/model_monitoring.md +0 -0
  197. {workbench-0.8.158 → workbench-0.8.159}/docs/blogs/residual_analysis.md +0 -0
  198. {workbench-0.8.158 → workbench-0.8.159}/docs/cached/cached_data_source.md +0 -0
  199. {workbench-0.8.158 → workbench-0.8.159}/docs/cached/cached_endpoint.md +0 -0
  200. {workbench-0.8.158 → workbench-0.8.159}/docs/cached/cached_feature_set.md +0 -0
  201. {workbench-0.8.158 → workbench-0.8.159}/docs/cached/cached_meta.md +0 -0
  202. {workbench-0.8.158 → workbench-0.8.159}/docs/cached/cached_model.md +0 -0
  203. {workbench-0.8.158 → workbench-0.8.159}/docs/cached/overview.md +0 -0
  204. {workbench-0.8.158 → workbench-0.8.159}/docs/chem_utils/index.md +0 -0
  205. {workbench-0.8.158 → workbench-0.8.159}/docs/cloudwatch/index.md +0 -0
  206. {workbench-0.8.158 → workbench-0.8.159}/docs/comparisons/workbench_vs_databricks.md +0 -0
  207. {workbench-0.8.158 → workbench-0.8.159}/docs/compound_explorer/tox21.md +0 -0
  208. {workbench-0.8.158 → workbench-0.8.159}/docs/compound_explorer/toxicity_modeling.md +0 -0
  209. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/artifacts/artifact.md +0 -0
  210. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/artifacts/athena_source.md +0 -0
  211. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/artifacts/data_source_abstract.md +0 -0
  212. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/artifacts/endpoint_core.md +0 -0
  213. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/artifacts/feature_set_core.md +0 -0
  214. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/artifacts/model_core.md +0 -0
  215. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/artifacts/monitor_core.md +0 -0
  216. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/artifacts/overview.md +0 -0
  217. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/overview.md +0 -0
  218. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/transforms/data_loaders_heavy.md +0 -0
  219. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/transforms/data_loaders_light.md +0 -0
  220. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/transforms/data_to_features.md +0 -0
  221. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/transforms/features_to_model.md +0 -0
  222. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/transforms/model_to_endpoint.md +0 -0
  223. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/transforms/overview.md +0 -0
  224. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/transforms/pandas_transforms.md +0 -0
  225. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/transforms/transform.md +0 -0
  226. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/views/computation_view.md +0 -0
  227. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/views/display_view.md +0 -0
  228. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/views/inference_view.md +0 -0
  229. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/views/overview.md +0 -0
  230. {workbench-0.8.158 → workbench-0.8.159}/docs/core_classes/views/training_view.md +0 -0
  231. {workbench-0.8.158 → workbench-0.8.159}/docs/data_algorithms/dataframes/overview.md +0 -0
  232. {workbench-0.8.158 → workbench-0.8.159}/docs/data_algorithms/graphs/overview.md +0 -0
  233. {workbench-0.8.158 → workbench-0.8.159}/docs/data_algorithms/overview.md +0 -0
  234. {workbench-0.8.158 → workbench-0.8.159}/docs/data_algorithms/spark/overview.md +0 -0
  235. {workbench-0.8.158 → workbench-0.8.159}/docs/data_algorithms/sql/overview.md +0 -0
  236. {workbench-0.8.158 → workbench-0.8.159}/docs/enterprise/index.md +0 -0
  237. {workbench-0.8.158 → workbench-0.8.159}/docs/enterprise/private_saas.md +0 -0
  238. {workbench-0.8.158 → workbench-0.8.159}/docs/enterprise/project_branding.md +0 -0
  239. {workbench-0.8.158 → workbench-0.8.159}/docs/enterprise/themes.md +0 -0
  240. {workbench-0.8.158 → workbench-0.8.159}/docs/getting_started/index.md +0 -0
  241. {workbench-0.8.158 → workbench-0.8.159}/docs/glue/index.md +0 -0
  242. {workbench-0.8.158 → workbench-0.8.159}/docs/images/big_spider.png +0 -0
  243. {workbench-0.8.158 → workbench-0.8.159}/docs/images/graph_representation.png +0 -0
  244. {workbench-0.8.158 → workbench-0.8.159}/docs/images/powered_aws_dark_blue.png +0 -0
  245. {workbench-0.8.158 → workbench-0.8.159}/docs/images/powered_aws_transparent.png +0 -0
  246. {workbench-0.8.158 → workbench-0.8.159}/docs/images/powered_aws_white.png +0 -0
  247. {workbench-0.8.158 → workbench-0.8.159}/docs/images/powered_aws_with_tm_grey.png +0 -0
  248. {workbench-0.8.158 → workbench-0.8.159}/docs/images/scp.png +0 -0
  249. {workbench-0.8.158 → workbench-0.8.159}/docs/images/scp_labs.png +0 -0
  250. {workbench-0.8.158 → workbench-0.8.159}/docs/images/small_spider.png +0 -0
  251. {workbench-0.8.158 → workbench-0.8.159}/docs/images/workbench_concepts.png +0 -0
  252. {workbench-0.8.158 → workbench-0.8.159}/docs/index.md +0 -0
  253. {workbench-0.8.158 → workbench-0.8.159}/docs/lambda_layer/index.md +0 -0
  254. {workbench-0.8.158 → workbench-0.8.159}/docs/misc/faq.md +0 -0
  255. {workbench-0.8.158 → workbench-0.8.159}/docs/misc/general_info.md +0 -0
  256. {workbench-0.8.158 → workbench-0.8.159}/docs/misc/scp_consulting.md +0 -0
  257. {workbench-0.8.158 → workbench-0.8.159}/docs/misc/workbench_classes_concepts.md +0 -0
  258. {workbench-0.8.158 → workbench-0.8.159}/docs/model_utils/index.md +0 -0
  259. {workbench-0.8.158 → workbench-0.8.159}/docs/plugins/index.md +0 -0
  260. {workbench-0.8.158 → workbench-0.8.159}/docs/presentations/index.md +0 -0
  261. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/0_8_106.md +0 -0
  262. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/0_8_158.md +0 -0
  263. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/0_8_50.md +0 -0
  264. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/0_8_55.md +0 -0
  265. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/0_8_58.md +0 -0
  266. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/0_8_60.md +0 -0
  267. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/0_8_71.md +0 -0
  268. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/0_8_74.md +0 -0
  269. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/0_8_78.md +0 -0
  270. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_7_8.md +0 -0
  271. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_11.md +0 -0
  272. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_20.md +0 -0
  273. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_22.md +0 -0
  274. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_23.md +0 -0
  275. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_27.md +0 -0
  276. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_29.md +0 -0
  277. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_33.md +0 -0
  278. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_35.md +0 -0
  279. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_36.md +0 -0
  280. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_39.md +0 -0
  281. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_42.md +0 -0
  282. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_46.md +0 -0
  283. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_6.md +0 -0
  284. {workbench-0.8.158 → workbench-0.8.159}/docs/release_notes/archived/0_8_8.md +0 -0
  285. {workbench-0.8.158 → workbench-0.8.159}/docs/repl/index.md +0 -0
  286. {workbench-0.8.158 → workbench-0.8.159}/docs/road_maps/0_9_0.md +0 -0
  287. {workbench-0.8.158 → workbench-0.8.159}/docs/road_maps/0_9_5.md +0 -0
  288. {workbench-0.8.158 → workbench-0.8.159}/docs/themes/details.md +0 -0
  289. {workbench-0.8.158 → workbench-0.8.159}/docs/themes/index.md +0 -0
  290. {workbench-0.8.158 → workbench-0.8.159}/examples/ag-grid/hello_world.py +0 -0
  291. {workbench-0.8.158 → workbench-0.8.159}/examples/chem_utils/canonicalize_smiles.py +0 -0
  292. {workbench-0.8.158 → workbench-0.8.159}/examples/chem_utils/tautomerize_smiles.py +0 -0
  293. {workbench-0.8.158 → workbench-0.8.159}/examples/datasource/datasource_from_df.py +0 -0
  294. {workbench-0.8.158 → workbench-0.8.159}/examples/datasource/datasource_from_s3.py +0 -0
  295. {workbench-0.8.158 → workbench-0.8.159}/examples/datasource/datasource_query.py +0 -0
  296. {workbench-0.8.158 → workbench-0.8.159}/examples/datasource/datasource_stats.py +0 -0
  297. {workbench-0.8.158 → workbench-0.8.159}/examples/datasource/datasource_to_featureset.py +0 -0
  298. {workbench-0.8.158 → workbench-0.8.159}/examples/endpoint/endpoint_details.py +0 -0
  299. {workbench-0.8.158 → workbench-0.8.159}/examples/endpoint/endpoint_inference.py +0 -0
  300. {workbench-0.8.158 → workbench-0.8.159}/examples/endpoint/endpoint_metrics.py +0 -0
  301. {workbench-0.8.158 → workbench-0.8.159}/examples/featureset/featureset_eda.py +0 -0
  302. {workbench-0.8.158 → workbench-0.8.159}/examples/featureset/featureset_query.py +0 -0
  303. {workbench-0.8.158 → workbench-0.8.159}/examples/full_ml_pipeline.py +0 -0
  304. {workbench-0.8.158 → workbench-0.8.159}/examples/glue_jobs/glue_example_1.py +0 -0
  305. {workbench-0.8.158 → workbench-0.8.159}/examples/glue_jobs/glue_example_2.py +0 -0
  306. {workbench-0.8.158 → workbench-0.8.159}/examples/glue_jobs/glue_example_3.py +0 -0
  307. {workbench-0.8.158 → workbench-0.8.159}/examples/glue_jobs/glue_launcher_examples/example_1.py +0 -0
  308. {workbench-0.8.158 → workbench-0.8.159}/examples/glue_jobs/glue_launcher_examples/example_2.py +0 -0
  309. {workbench-0.8.158 → workbench-0.8.159}/examples/meta/meta_list_endpoints.py +0 -0
  310. {workbench-0.8.158 → workbench-0.8.159}/examples/meta/meta_list_models.py +0 -0
  311. {workbench-0.8.158 → workbench-0.8.159}/examples/meta/meta_model_metrics.py +0 -0
  312. {workbench-0.8.158 → workbench-0.8.159}/examples/model_utils/model_metrics.py +0 -0
  313. {workbench-0.8.158 → workbench-0.8.159}/examples/model_utils/model_to_endpoint.py +0 -0
  314. {workbench-0.8.158 → workbench-0.8.159}/examples/model_utils/onboard_model.py +0 -0
  315. {workbench-0.8.158 → workbench-0.8.159}/examples/models/custom_model.py +0 -0
  316. {workbench-0.8.158 → workbench-0.8.159}/examples/models/dbscan.py +0 -0
  317. {workbench-0.8.158 → workbench-0.8.159}/examples/models/knn.py +0 -0
  318. {workbench-0.8.158 → workbench-0.8.159}/examples/models/random_forest.py +0 -0
  319. {workbench-0.8.158 → workbench-0.8.159}/examples/models/uq/bayesian_ridge.py +0 -0
  320. {workbench-0.8.158 → workbench-0.8.159}/examples/models/uq/ensemble_xgb.py +0 -0
  321. {workbench-0.8.158 → workbench-0.8.159}/examples/models/uq/gaussian_process.py +0 -0
  322. {workbench-0.8.158 → workbench-0.8.159}/examples/models/uq/mapie_xgb.py +0 -0
  323. {workbench-0.8.158 → workbench-0.8.159}/examples/models/uq/meta_uq.py +0 -0
  324. {workbench-0.8.158 → workbench-0.8.159}/examples/models/uq/ngboost.py +0 -0
  325. {workbench-0.8.158 → workbench-0.8.159}/examples/models/uq/quant_xgb.py +0 -0
  326. {workbench-0.8.158 → workbench-0.8.159}/examples/monitor/monitor_setup.py +0 -0
  327. {workbench-0.8.158 → workbench-0.8.159}/examples/monitor/monitor_usage.py +0 -0
  328. {workbench-0.8.158 → workbench-0.8.159}/examples/pipelines/abalone_pipeline_v1.json +0 -0
  329. {workbench-0.8.158 → workbench-0.8.159}/examples/pipelines/abalone_pipeline_v2.json +0 -0
  330. {workbench-0.8.158 → workbench-0.8.159}/examples/pipelines/aqsol_pipeline_v1.json +0 -0
  331. {workbench-0.8.158 → workbench-0.8.159}/examples/pipelines/pipeline_details.py +0 -0
  332. {workbench-0.8.158 → workbench-0.8.159}/examples/pipelines/pipeline_execute.py +0 -0
  333. {workbench-0.8.158 → workbench-0.8.159}/examples/pipelines/pipeline_manager.py +0 -0
  334. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/branding/Readme.md +0 -0
  335. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/branding/scp.json +0 -0
  336. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/components/custom_plugin.py +0 -0
  337. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/components/endpoint_plugin.py +0 -0
  338. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/components/endpoint_turbo.py +0 -0
  339. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/components/model_markdown.py +0 -0
  340. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/components/model_plugin.py +0 -0
  341. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/packages/my_plugin_utils/__init__.py +0 -0
  342. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/packages/my_plugin_utils/assets/foo.json +0 -0
  343. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/packages/my_plugin_utils/cool_stuff.py +0 -0
  344. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/pages/plugin_page_1.py +0 -0
  345. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/pages/plugin_page_2.py +0 -0
  346. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/pages/plugin_page_3.py +0 -0
  347. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/templates/Readme.md +0 -0
  348. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/views/model_plugin_view.py +0 -0
  349. {workbench-0.8.158 → workbench-0.8.159}/examples/plugins/views/my_view_plugin.py +0 -0
  350. {workbench-0.8.158 → workbench-0.8.159}/examples/storage/data_to_data.py +0 -0
  351. {workbench-0.8.158 → workbench-0.8.159}/examples/storage/data_to_features.py +0 -0
  352. {workbench-0.8.158 → workbench-0.8.159}/examples/storage/endpoint_inference.py +0 -0
  353. {workbench-0.8.158 → workbench-0.8.159}/examples/storage/hello_world_pipeline.py +0 -0
  354. {workbench-0.8.158 → workbench-0.8.159}/examples/storage/plugin_page_example.py +0 -0
  355. {workbench-0.8.158 → workbench-0.8.159}/examples/storage/sagemaker_pipelines/all_steps.py +0 -0
  356. {workbench-0.8.158 → workbench-0.8.159}/examples/storage/sagemaker_pipelines/hello.py +0 -0
  357. {workbench-0.8.158 → workbench-0.8.159}/examples/storage/sagemaker_pipelines/ml_pipeline.py +0 -0
  358. {workbench-0.8.158 → workbench-0.8.159}/examples/storage/sagemaker_pipelines/storage/full_pipeline_experiment/data_source.py +0 -0
  359. {workbench-0.8.158 → workbench-0.8.159}/examples/storage/sagemaker_pipelines/storage/full_pipeline_experiment/endpoint.py +0 -0
  360. {workbench-0.8.158 → workbench-0.8.159}/examples/storage/sagemaker_pipelines/storage/full_pipeline_experiment/feature_set.py +0 -0
  361. {workbench-0.8.158 → workbench-0.8.159}/examples/storage/sagemaker_pipelines/storage/full_pipeline_experiment/ml_pipeline.py +0 -0
  362. {workbench-0.8.158 → workbench-0.8.159}/examples/storage/sagemaker_pipelines/storage/full_pipeline_experiment/model.py +0 -0
  363. {workbench-0.8.158 → workbench-0.8.159}/experiments/chem_info/bulk_sims.py +0 -0
  364. {workbench-0.8.158 → workbench-0.8.159}/experiments/chem_info/knn_sims.py +0 -0
  365. {workbench-0.8.158 → workbench-0.8.159}/experiments/confidence_roc_curve.py +0 -0
  366. {workbench-0.8.158 → workbench-0.8.159}/experiments/coverage_probability.py +0 -0
  367. {workbench-0.8.158 → workbench-0.8.159}/experiments/log_testing.py +0 -0
  368. {workbench-0.8.158 → workbench-0.8.159}/experiments/neighbor_outliers.py +0 -0
  369. {workbench-0.8.158 → workbench-0.8.159}/experiments/networkx_id.py +0 -0
  370. {workbench-0.8.158 → workbench-0.8.159}/experiments/prediction_intervals.py +0 -0
  371. {workbench-0.8.158 → workbench-0.8.159}/experiments/quantile_regression.py +0 -0
  372. {workbench-0.8.158 → workbench-0.8.159}/experiments/quantile_regression_2.py +0 -0
  373. {workbench-0.8.158 → workbench-0.8.159}/experiments/regression_confidence.py +0 -0
  374. {workbench-0.8.158 → workbench-0.8.159}/experiments/residual_analysis.py +0 -0
  375. {workbench-0.8.158 → workbench-0.8.159}/experiments/rocauc_testing.py +0 -0
  376. {workbench-0.8.158 → workbench-0.8.159}/experiments/scatter_zoom_issue.py +0 -0
  377. {workbench-0.8.158 → workbench-0.8.159}/experiments/sol_pipeline.py +0 -0
  378. {workbench-0.8.158 → workbench-0.8.159}/glue_jobs/create_glue_workflow_with_trigger.py +0 -0
  379. {workbench-0.8.158 → workbench-0.8.159}/glue_jobs/example_glue_job.py +0 -0
  380. {workbench-0.8.158 → workbench-0.8.159}/glue_jobs/glue_job_pipeline.py +0 -0
  381. {workbench-0.8.158 → workbench-0.8.159}/glue_jobs/glue_mixed_case.py +0 -0
  382. {workbench-0.8.158 → workbench-0.8.159}/mkdocs.yml +0 -0
  383. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/inference/Dockerfile +0 -0
  384. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/inference/main.py +0 -0
  385. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/inference/serve +0 -0
  386. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/meta_endpoint/Dockerfile +0 -0
  387. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/meta_endpoint/main.py +0 -0
  388. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/meta_endpoint/serve +0 -0
  389. {workbench-0.8.158/model_docker_images/workbench_inference → workbench-0.8.159/model_docker_images/pytorch_inference}/main.py +0 -0
  390. {workbench-0.8.158/model_docker_images/workbench_inference → workbench-0.8.159/model_docker_images/pytorch_inference}/serve +0 -0
  391. {workbench-0.8.158/model_docker_images/training → workbench-0.8.159/model_docker_images/pytorch_training}/sagemaker_entrypoint.py +0 -0
  392. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/tests/data/abalone_sm.csv +0 -0
  393. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/tests/example_model_script.py +0 -0
  394. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/tests/run_tests.sh +0 -0
  395. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/tests/test_inference.py +0 -0
  396. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/tests/test_training.py +0 -0
  397. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/training/Dockerfile +0 -0
  398. {workbench-0.8.158 → workbench-0.8.159}/model_docker_images/workbench_inference/Dockerfile +0 -0
  399. {workbench-0.8.158 → workbench-0.8.159}/notebooks/Inference_On_Legacy_Models.ipynb +0 -0
  400. {workbench-0.8.158 → workbench-0.8.159}/notebooks/ML_Pipeline_with_Workbench.ipynb +0 -0
  401. {workbench-0.8.158 → workbench-0.8.159}/notebooks/ML_Pipeline_with_Workbench_2.ipynb +0 -0
  402. {workbench-0.8.158 → workbench-0.8.159}/notebooks/Outliers_in_Workbench.ipynb +0 -0
  403. {workbench-0.8.158 → workbench-0.8.159}/notebooks/Regression_Confidence_Experiments.ipynb +0 -0
  404. {workbench-0.8.158 → workbench-0.8.159}/notebooks/Residual_Analysis.ipynb +0 -0
  405. {workbench-0.8.158 → workbench-0.8.159}/notebooks/images/athena_query_aqsol.png +0 -0
  406. {workbench-0.8.158 → workbench-0.8.159}/notebooks/images/aws_dashboard_aqsol.png +0 -0
  407. {workbench-0.8.158 → workbench-0.8.159}/notebooks/images/dashboard_aqsol_features.png +0 -0
  408. {workbench-0.8.158 → workbench-0.8.159}/notebooks/images/model_screenshot.png +0 -0
  409. {workbench-0.8.158 → workbench-0.8.159}/notebooks/images/scp_labs.png +0 -0
  410. {workbench-0.8.158 → workbench-0.8.159}/presentations/README.md +0 -0
  411. {workbench-0.8.158 → workbench-0.8.159}/scripts/active_logs.sh +0 -0
  412. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/athena_ddl_mixed_case.py +0 -0
  413. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/check_all_glue_tables.py +0 -0
  414. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/db_scan_test.py +0 -0
  415. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/delete_invalid_views.py +0 -0
  416. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/delete_redis_keys.py +0 -0
  417. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/list_datacatalog.py +0 -0
  418. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/migration/copy_glue_database.py +0 -0
  419. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/migration/delete_sageworks_glue_database.sh +0 -0
  420. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/migration/ds_migrate.py +0 -0
  421. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/migration/endpoint_migrate.py +0 -0
  422. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/migration/fs_migrate.py +0 -0
  423. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/migration/model_migrate.py +0 -0
  424. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/pull_image_digest.py +0 -0
  425. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/redis_reaper.py +0 -0
  426. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/spam_list_tags.py +0 -0
  427. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/storage/convert_training_views.py +0 -0
  428. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/storage/migrate_data_source_via_df.py +0 -0
  429. {workbench-0.8.158 → workbench-0.8.159}/scripts/admin/storage/migrate_ds_meta.py +0 -0
  430. {workbench-0.8.158 → workbench-0.8.159}/scripts/ag_table_row_selection.py +0 -0
  431. {workbench-0.8.158 → workbench-0.8.159}/scripts/compare_dataframes.py +0 -0
  432. {workbench-0.8.158 → workbench-0.8.159}/scripts/compare_model_packages.py +0 -0
  433. {workbench-0.8.158 → workbench-0.8.159}/scripts/endpoint_inference_launch.py +0 -0
  434. {workbench-0.8.158 → workbench-0.8.159}/scripts/endpoint_timing/endpoint_timing.py +0 -0
  435. {workbench-0.8.158 → workbench-0.8.159}/scripts/endpoint_timing/endpoint_timing_old.py +0 -0
  436. {workbench-0.8.158 → workbench-0.8.159}/scripts/endpoint_timing/timing_plot.py +0 -0
  437. {workbench-0.8.158 → workbench-0.8.159}/scripts/find_smiles_issues.py +0 -0
  438. {workbench-0.8.158 → workbench-0.8.159}/scripts/get_tags.py +0 -0
  439. {workbench-0.8.158 → workbench-0.8.159}/scripts/instantiation_timings.py +0 -0
  440. {workbench-0.8.158 → workbench-0.8.159}/scripts/llm_deploys/deepseek_deploy.py +0 -0
  441. {workbench-0.8.158 → workbench-0.8.159}/scripts/model_cache_refresh.py +0 -0
  442. {workbench-0.8.158 → workbench-0.8.159}/scripts/model_endpoint_sanity_check.py +0 -0
  443. {workbench-0.8.158 → workbench-0.8.159}/scripts/model_to_endpoint_debugging.py +0 -0
  444. {workbench-0.8.158 → workbench-0.8.159}/scripts/monitor_event_bridge.py +0 -0
  445. {workbench-0.8.158 → workbench-0.8.159}/scripts/onboard_endpoints.py +0 -0
  446. {workbench-0.8.158 → workbench-0.8.159}/scripts/onboard_models.py +0 -0
  447. {workbench-0.8.158 → workbench-0.8.159}/scripts/pipeline_model_endpoint.py +0 -0
  448. {workbench-0.8.158 → workbench-0.8.159}/scripts/pubchem/pubchem_example.py +0 -0
  449. {workbench-0.8.158 → workbench-0.8.159}/scripts/pubchem/pubchem_query.py +0 -0
  450. {workbench-0.8.158 → workbench-0.8.159}/scripts/pubchem/pubchem_query_with_cid.py +0 -0
  451. {workbench-0.8.158 → workbench-0.8.159}/scripts/seaborn_to_plotly.py +0 -0
  452. {workbench-0.8.158 → workbench-0.8.159}/scripts/storage/dns_data_to_features.py +0 -0
  453. {workbench-0.8.158 → workbench-0.8.159}/scripts/storage/generate_jsonl_data.py +0 -0
  454. {workbench-0.8.158 → workbench-0.8.159}/scripts/test_feature_resolution.py +0 -0
  455. {workbench-0.8.158 → workbench-0.8.159}/scripts/test_no_workbench_config.py +0 -0
  456. {workbench-0.8.158 → workbench-0.8.159}/scripts/tox21/test_tox_heuristic.py +0 -0
  457. {workbench-0.8.158 → workbench-0.8.159}/scripts/tox21/tox21_to_df_store.py +0 -0
  458. {workbench-0.8.158 → workbench-0.8.159}/setup.cfg +0 -0
  459. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/__init__.py +0 -0
  460. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/__init__.py +0 -0
  461. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/dataframe/Readme.md +0 -0
  462. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/dataframe/__init__.py +0 -0
  463. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/dataframe/data_source_eda.py +0 -0
  464. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/dataframe/feature_space_proximity.py +0 -0
  465. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/dataframe/fingerprint_proximity.py +0 -0
  466. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/dataframe/projection_2d.py +0 -0
  467. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/dataframe/proximity.py +0 -0
  468. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/dataframe/storage/aggregation.py +0 -0
  469. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/dataframe/storage/feature_resolution.py +0 -0
  470. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/dataframe/storage/feature_spider.py +0 -0
  471. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/dataframe/storage/residuals_calculator.py +0 -0
  472. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/dataframe/storage/row_tagger.py +0 -0
  473. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/dataframe/storage/target_gradients.py +0 -0
  474. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/graph/__init__.py +0 -0
  475. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/graph/heavy/Readme.md +0 -0
  476. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/graph/light/Readme.md +0 -0
  477. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/graph/light/__init__.py +0 -0
  478. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/graph/light/proximity_graph.py +0 -0
  479. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/spark/Readme.md +0 -0
  480. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/sql/Readme.md +0 -0
  481. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/sql/__init__.py +0 -0
  482. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/sql/column_stats.py +0 -0
  483. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/sql/correlations.py +0 -0
  484. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/sql/descriptive_stats.py +0 -0
  485. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/sql/outliers.py +0 -0
  486. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/sql/sample_rows.py +0 -0
  487. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/algorithms/sql/value_counts.py +0 -0
  488. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/api/__init__.py +0 -0
  489. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/api/compound.py +0 -0
  490. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/api/data_source.py +0 -0
  491. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/api/df_store.py +0 -0
  492. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/api/endpoint.py +0 -0
  493. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/api/graph_store.py +0 -0
  494. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/api/model.py +0 -0
  495. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/api/monitor.py +0 -0
  496. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/api/parameter_store.py +0 -0
  497. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/api/pipeline.py +0 -0
  498. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/cached/__init__.py +0 -0
  499. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/cached/cached_data_source.py +0 -0
  500. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/cached/cached_endpoint.py +0 -0
  501. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/cached/cached_model.py +0 -0
  502. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/cached/cached_pipeline.py +0 -0
  503. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/__init__.py +0 -0
  504. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/artifacts/__init__.py +0 -0
  505. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/artifacts/artifact.py +0 -0
  506. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/artifacts/athena_source.py +0 -0
  507. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/artifacts/data_source_abstract.py +0 -0
  508. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/artifacts/data_source_factory.py +0 -0
  509. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/artifacts/endpoint_core.py +0 -0
  510. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/artifacts/feature_set_core.py +0 -0
  511. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/artifacts/monitor_core.py +0 -0
  512. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/cloud_platform/aws/README.md +0 -0
  513. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/cloud_platform/aws/aws_account_clamp.py +0 -0
  514. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/cloud_platform/aws/aws_df_store.py +0 -0
  515. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/cloud_platform/aws/aws_graph_store.py +0 -0
  516. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/cloud_platform/aws/aws_parameter_store.py +0 -0
  517. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/cloud_platform/aws/aws_secrets_manager.py +0 -0
  518. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/cloud_platform/aws/aws_session.py +0 -0
  519. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/cloud_platform/aws/cache_dataframe.py +0 -0
  520. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/cloud_platform/azure/README.md +0 -0
  521. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/cloud_platform/gcp/README.md +0 -0
  522. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/pipelines/pipeline_executor.py +0 -0
  523. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/Readme.md +0 -0
  524. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/__init__.py +0 -0
  525. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_loaders/__init__.py +0 -0
  526. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_loaders/heavy/__init__.py +0 -0
  527. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_loaders/heavy/s3_heavy_to_data_source.py +0 -0
  528. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_loaders/light/__init__.py +0 -0
  529. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_loaders/light/csv_to_data_source.py +0 -0
  530. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_loaders/light/json_to_data_source.py +0 -0
  531. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_loaders/light/s3_to_data_source_light.py +0 -0
  532. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_data/__init__.py +0 -0
  533. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_data/heavy/__init__.py +0 -0
  534. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_data/heavy/emr/Readme.md +0 -0
  535. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_data/heavy/glue/Readme.md +0 -0
  536. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_data/light/__init__.py +0 -0
  537. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_data/light/clean_data.py +0 -0
  538. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_data/light/data_to_data_light.py +0 -0
  539. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_features/__init__.py +0 -0
  540. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_features/heavy/__init__.py +0 -0
  541. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_features/heavy/chunk/__init__.py +0 -0
  542. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_features/heavy/chunk/data_to_features_chunk.py +0 -0
  543. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_features/heavy/emr/Readme.md +0 -0
  544. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_features/heavy/glue/Readme.md +0 -0
  545. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_features/heavy/storage/data_to_features_heavy_old.py +0 -0
  546. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_features/light/__init__.py +0 -0
  547. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_features/light/data_to_features_light.py +0 -0
  548. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/data_to_features/light/molecular_descriptors.py +0 -0
  549. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/features_to_features/__init__.py +0 -0
  550. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/features_to_features/heavy/emr/Readme.md +0 -0
  551. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/features_to_features/heavy/glue/Readme.md +0 -0
  552. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/features_to_model/__init__.py +0 -0
  553. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/model_to_endpoint/__init__.py +0 -0
  554. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/pandas_transforms/__init__.py +0 -0
  555. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/pandas_transforms/data_to_pandas.py +0 -0
  556. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/pandas_transforms/features_to_pandas.py +0 -0
  557. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/pandas_transforms/pandas_to_data.py +0 -0
  558. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/pandas_transforms/pandas_to_features.py +0 -0
  559. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/pandas_transforms/pandas_to_features_chunked.py +0 -0
  560. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/transforms/transform.py +0 -0
  561. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/views/__init__.py +0 -0
  562. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/views/column_subset_view.py +0 -0
  563. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/views/computation_view.py +0 -0
  564. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/views/create_view.py +0 -0
  565. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/views/display_view.py +0 -0
  566. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/views/inference_view.py +0 -0
  567. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/views/pandas_to_view.py +0 -0
  568. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/views/storage/mdq_view.py +0 -0
  569. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/views/training_view.py +0 -0
  570. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/views/view.py +0 -0
  571. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/core/views/view_utils.py +0 -0
  572. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/chem_info/Readme.md +0 -0
  573. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/chem_info/local_utils.py +0 -0
  574. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/chem_info/molecular_descriptors.py +0 -0
  575. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/chem_info/morgan_fingerprints.py +0 -0
  576. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/chem_info/requirements.txt +0 -0
  577. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/chem_info/tautomerize.py +0 -0
  578. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/meta_endpoints/example.py +0 -0
  579. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/network_security/Readme.md +0 -0
  580. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/proximity/Readme.md +0 -0
  581. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/proximity/feature_space_proximity.template +0 -0
  582. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/proximity/generated_model_script.py +0 -0
  583. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/proximity/proximity.py +0 -0
  584. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/proximity/requirements.txt +0 -0
  585. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/uq_models/Readme.md +0 -0
  586. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/uq_models/bayesian_ridge.template +0 -0
  587. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/uq_models/ensemble_xgb.template +0 -0
  588. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/uq_models/gaussian_process.template +0 -0
  589. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/uq_models/generated_model_script.py +0 -0
  590. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/uq_models/mapie_xgb.template +0 -0
  591. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/uq_models/meta_uq.template +0 -0
  592. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/uq_models/ngboost.template +0 -0
  593. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/uq_models/proximity.py +0 -0
  594. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_models/uq_models/requirements.txt +0 -0
  595. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_script_example/custom_model_script.py +0 -0
  596. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/custom_script_example/requirements.txt +0 -0
  597. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/ensemble_xgb/ensemble_xgb.template +0 -0
  598. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/ensemble_xgb/generated_model_script.py +0 -0
  599. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/ensemble_xgb/requirements.txt +0 -0
  600. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/quant_regression/quant_regression.template +0 -0
  601. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/quant_regression/requirements.txt +0 -0
  602. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/scikit_learn/requirements.txt +0 -0
  603. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/scikit_learn/scikit_learn.template +0 -0
  604. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/xgb_model/requirements.txt +0 -0
  605. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/model_scripts/xgb_model/xgb_model.template +0 -0
  606. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/repl/__init__.py +0 -0
  607. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/resources/open_source_api.key +0 -0
  608. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/resources/signature_verify_pub.pem +0 -0
  609. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/scripts/check_double_bond_stereo.py +0 -0
  610. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/scripts/glue_launcher.py +0 -0
  611. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/scripts/monitor_cloud_watch.py +0 -0
  612. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/scripts/redis_expire.py +0 -0
  613. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/scripts/redis_report.py +0 -0
  614. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/scripts/show_config.py +0 -0
  615. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/dark/base_css.url +0 -0
  616. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/dark/custom.css +0 -0
  617. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/dark/plotly.json +0 -0
  618. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/light/base_css.url +0 -0
  619. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/light/branding.json +0 -0
  620. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/light/custom.css +0 -0
  621. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/light/plotly.json +0 -0
  622. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/midnight_blue/base_css.url +0 -0
  623. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/midnight_blue/branding.json +0 -0
  624. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/midnight_blue/custom.css +0 -0
  625. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/midnight_blue/plotly.json +0 -0
  626. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/quartz/base_css.url +0 -0
  627. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/quartz/custom.css +0 -0
  628. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/quartz/plotly.json +0 -0
  629. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/quartz_dark/base_css.url +0 -0
  630. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/quartz_dark/custom.css +0 -0
  631. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/themes/quartz_dark/plotly.json +0 -0
  632. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/__init__.py +0 -0
  633. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/ai_compound_generator.py +0 -0
  634. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/ai_summary.py +0 -0
  635. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/ai_synth.py +0 -0
  636. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/athena_utils.py +0 -0
  637. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/aws_utils.py +0 -0
  638. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/bulk_utils.py +0 -0
  639. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/cache.py +0 -0
  640. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/chem_utils.py +0 -0
  641. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/cloudwatch_handler.py +0 -0
  642. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/color_utils.py +0 -0
  643. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/config_manager.py +0 -0
  644. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/dashboard_metrics.py +0 -0
  645. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/datetime_utils.py +0 -0
  646. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/deprecated_utils.py +0 -0
  647. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/df_to_endpoint.py +0 -0
  648. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/ecs_info.py +0 -0
  649. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/endpoint_metrics.py +0 -0
  650. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/endpoint_utils.py +0 -0
  651. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/execution_environment.py +0 -0
  652. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/extract_model_artifact.py +0 -0
  653. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/fast_inference.py +0 -0
  654. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/glue_utils.py +0 -0
  655. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/graph_utils.py +0 -0
  656. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/ipython_utils.py +0 -0
  657. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/lambda_utils.py +0 -0
  658. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/license_manager.py +0 -0
  659. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/log_utils.py +0 -0
  660. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/markdown_utils.py +0 -0
  661. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/model_utils.py +0 -0
  662. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/monitor_utils.py +0 -0
  663. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/performance_utils.py +0 -0
  664. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/pipeline_utils.py +0 -0
  665. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/plot_utils.py +0 -0
  666. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/plugin_manager.py +0 -0
  667. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/prox_utils.py +0 -0
  668. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/repl_utils.py +0 -0
  669. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/resource_utils.py +0 -0
  670. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/s3_utils.py +0 -0
  671. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/shap_utils.py +0 -0
  672. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/shapley_values.py +0 -0
  673. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/symbols.py +0 -0
  674. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/test_data_generator.py +0 -0
  675. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/theme_manager.py +0 -0
  676. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/trace_calls.py +0 -0
  677. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/type_abbrev.py +0 -0
  678. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/workbench_event_bridge.py +0 -0
  679. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/workbench_logging.py +0 -0
  680. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/workbench_sqs.py +0 -0
  681. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/utils/xgboost_model_utils.py +0 -0
  682. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/component_interface.py +0 -0
  683. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/correlation_matrix.py +0 -0
  684. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/data_details_markdown.py +0 -0
  685. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/endpoint_metric_plots.py +0 -0
  686. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/experiments/dashboard_metric_plots.py +0 -0
  687. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/experiments/outlier_plot.py +0 -0
  688. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/model_plot.py +0 -0
  689. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugin_interface.py +0 -0
  690. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugin_unit_test.py +0 -0
  691. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/ag_table.py +0 -0
  692. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/confusion_matrix.py +0 -0
  693. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/dashboard_status.py +0 -0
  694. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/data_details.py +0 -0
  695. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/endpoint_details.py +0 -0
  696. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/generated_compounds.py +0 -0
  697. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/graph_plot.py +0 -0
  698. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/license_details.py +0 -0
  699. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/model_details.py +0 -0
  700. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/molecule_panel.py +0 -0
  701. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/molecule_viewer.py +0 -0
  702. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/pipeline_details.py +0 -0
  703. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/proximity_mini_graph.py +0 -0
  704. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/scatter_plot.py +0 -0
  705. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/plugins/shap_summary_plot.py +0 -0
  706. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/regression_plot.py +0 -0
  707. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/components/violin_plots.py +0 -0
  708. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/page_views/data_sources_page_view.py +0 -0
  709. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/page_views/feature_sets_page_view.py +0 -0
  710. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/page_views/models_page_view.py +0 -0
  711. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/page_views/page_view.py +0 -0
  712. {workbench-0.8.158 → workbench-0.8.159}/src/workbench/web_interface/page_views/pipelines_page_view.py +0 -0
  713. {workbench-0.8.158 → workbench-0.8.159}/src/workbench.egg-info/dependency_links.txt +0 -0
  714. {workbench-0.8.158 → workbench-0.8.159}/src/workbench.egg-info/entry_points.txt +0 -0
  715. {workbench-0.8.158 → workbench-0.8.159}/src/workbench.egg-info/top_level.txt +0 -0
  716. {workbench-0.8.158 → workbench-0.8.159}/tests/README.md +0 -0
  717. {workbench-0.8.158 → workbench-0.8.159}/tests/artifacts/data_source_tests.py +0 -0
  718. {workbench-0.8.158 → workbench-0.8.159}/tests/artifacts/empty_model_group.py +0 -0
  719. {workbench-0.8.158 → workbench-0.8.159}/tests/artifacts/endpoint_tests.py +0 -0
  720. {workbench-0.8.158 → workbench-0.8.159}/tests/artifacts/featureset_ingest_boundaries.py +0 -0
  721. {workbench-0.8.158 → workbench-0.8.159}/tests/artifacts/featureset_tests.py +0 -0
  722. {workbench-0.8.158 → workbench-0.8.159}/tests/artifacts/graph_tests.py +0 -0
  723. {workbench-0.8.158 → workbench-0.8.159}/tests/artifacts/model_metrics_tests.py +0 -0
  724. {workbench-0.8.158 → workbench-0.8.159}/tests/artifacts/model_tests.py +0 -0
  725. {workbench-0.8.158 → workbench-0.8.159}/tests/aws_account/aws_account_clamp_tests.py +0 -0
  726. {workbench-0.8.158 → workbench-0.8.159}/tests/cached/cached_artifact_tests.py +0 -0
  727. {workbench-0.8.158 → workbench-0.8.159}/tests/chem_info/test_canonicalize.py +0 -0
  728. {workbench-0.8.158 → workbench-0.8.159}/tests/chem_info/test_tautomerization.py +0 -0
  729. {workbench-0.8.158 → workbench-0.8.159}/tests/corner_cases/end_to_end.py +0 -0
  730. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/100_percent_models.py +0 -0
  731. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_aqsol_rt_artifacts.py +0 -0
  732. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_aqsol_uq_artifacts.py +0 -0
  733. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_basic_test_artifacts.py +0 -0
  734. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_copy_artifacts.py +0 -0
  735. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_empty_model_group.py +0 -0
  736. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_endpoints_for_timing.py +0 -0
  737. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_graph_artifacts.py +0 -0
  738. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_knn_artifacts.py +0 -0
  739. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_meta_endpoints.py +0 -0
  740. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_pipeline_model.py +0 -0
  741. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_proximity_models.py +0 -0
  742. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_quant_regression_artifacts.py +0 -0
  743. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_realtime_endpoint.py +0 -0
  744. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_training_adjusted_artifacts.py +0 -0
  745. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/create_wine_artifacts.py +0 -0
  746. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/delete_stress_test_artifacts.py +0 -0
  747. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/delete_test_artifacts.py +0 -0
  748. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/regression_ensemble.py +0 -0
  749. {workbench-0.8.158 → workbench-0.8.159}/tests/create_test_artifacts/stress_test_aws.py +0 -0
  750. {workbench-0.8.158 → workbench-0.8.159}/tests/df_store/df_store_tests.py +0 -0
  751. {workbench-0.8.158 → workbench-0.8.159}/tests/lambda/decompress_layers.py +0 -0
  752. {workbench-0.8.158 → workbench-0.8.159}/tests/pandas_tests/test_drift.py +0 -0
  753. {workbench-0.8.158 → workbench-0.8.159}/tests/parameter_store/param_store_tests.py +0 -0
  754. {workbench-0.8.158 → workbench-0.8.159}/tests/plugin_tests/crashing_plugin.py +0 -0
  755. {workbench-0.8.158 → workbench-0.8.159}/tests/pytorch/pytorch_hello.py +0 -0
  756. {workbench-0.8.158 → workbench-0.8.159}/tests/requirements-dev.txt +0 -0
  757. {workbench-0.8.158 → workbench-0.8.159}/tests/specific/capital_tests.py +0 -0
  758. {workbench-0.8.158 → workbench-0.8.159}/tests/specific/column_changes.py +0 -0
  759. {workbench-0.8.158 → workbench-0.8.159}/tests/specific/config_manager.py +0 -0
  760. {workbench-0.8.158 → workbench-0.8.159}/tests/specific/deletion_tests.py +0 -0
  761. {workbench-0.8.158 → workbench-0.8.159}/tests/specific/shap_tests.py +0 -0
  762. {workbench-0.8.158 → workbench-0.8.159}/tests/transforms/data_to_data_tests.py +0 -0
  763. {workbench-0.8.158 → workbench-0.8.159}/tests/transforms/data_to_features_tests.py +0 -0
  764. {workbench-0.8.158 → workbench-0.8.159}/tests/transforms/features_to_model_tests.py +0 -0
  765. {workbench-0.8.158 → workbench-0.8.159}/tests/transforms/model_to_endpoint_tests.py +0 -0
  766. {workbench-0.8.158 → workbench-0.8.159}/tests/transforms/pandas_to_data_tests.py +0 -0
  767. {workbench-0.8.158 → workbench-0.8.159}/tests/transforms/pandas_to_features_test.py +0 -0
  768. {workbench-0.8.158 → workbench-0.8.159}/tests/views/view_tests.py +0 -0
  769. {workbench-0.8.158 → workbench-0.8.159}/tests/views/view_tests_complex.py +0 -0
  770. {workbench-0.8.158 → workbench-0.8.159}/tests/web_components/confusion_matrix_test.py +0 -0
  771. {workbench-0.8.158 → workbench-0.8.159}/tests/web_components/correlation_matrix_test.py +0 -0
  772. {workbench-0.8.158 → workbench-0.8.159}/tests/web_components/graph_plot_test.py +0 -0
  773. {workbench-0.8.158 → workbench-0.8.159}/tests/web_components/plugin_interface_test.py +0 -0
  774. {workbench-0.8.158 → workbench-0.8.159}/tests/web_components/scatter_plot_test.py +0 -0
  775. {workbench-0.8.158 → workbench-0.8.159}/tox.ini +0 -0
  776. {workbench-0.8.158 → workbench-0.8.159}/ui_testing/assets/custom.css +0 -0
  777. {workbench-0.8.158 → workbench-0.8.159}/ui_testing/table_comparison.py +0 -0
  778. {workbench-0.8.158 → workbench-0.8.159}/ui_testing/theme_switching.py +0 -0
  779. {workbench-0.8.158 → workbench-0.8.159}/ui_testing/theme_switching_2.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: workbench
3
- Version: 0.8.158
3
+ Version: 0.8.159
4
4
  Summary: Workbench: A Dashboard and Python API for creating and deploying AWS SageMaker Model Pipelines
5
5
  Author-email: SuperCowPowers LLC <support@supercowpowers.com>
6
6
  License-Expression: MIT
@@ -11,7 +11,7 @@ Classifier: Programming Language :: Python :: 3.10
11
11
  Classifier: Programming Language :: Python :: 3.11
12
12
  Classifier: Programming Language :: Python :: 3.12
13
13
  Classifier: Topic :: Scientific/Engineering
14
- Requires-Python: >=3.9
14
+ Requires-Python: >=3.10
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
17
  Requires-Dist: boto3>=1.31.76
@@ -22,17 +22,15 @@ Requires-Dist: pandas>=2.2.1
22
22
  Requires-Dist: awswrangler>=3.4.0
23
23
  Requires-Dist: sagemaker>=2.143
24
24
  Requires-Dist: cryptography>=44.0.2
25
- Requires-Dist: ipython>=8.17.2
25
+ Requires-Dist: ipython>=9.0.0
26
26
  Requires-Dist: pyreadline3; sys_platform == "win32"
27
27
  Requires-Dist: scikit-learn>=1.5.2
28
- Requires-Dist: xgboost-cpu>=2.0.3
28
+ Requires-Dist: xgboost>=3.0.3
29
29
  Requires-Dist: joblib>=1.3.2
30
30
  Requires-Dist: requests>=2.26.0
31
31
  Requires-Dist: rdkit>=2024.9.5
32
32
  Requires-Dist: mordredcommunity>=2.0.6
33
- Requires-Dist: workbench-bridges>=0.1.2
34
- Provides-Extra: ml-tools
35
- Requires-Dist: networkx>=3.2; extra == "ml-tools"
33
+ Requires-Dist: workbench-bridges>=0.1.8
36
34
  Provides-Extra: ui
37
35
  Requires-Dist: plotly>=6.0.0; extra == "ui"
38
36
  Requires-Dist: dash>3.0.0; extra == "ui"
@@ -49,7 +47,6 @@ Requires-Dist: pytest-cov; extra == "dev"
49
47
  Requires-Dist: flake8; extra == "dev"
50
48
  Requires-Dist: black; extra == "dev"
51
49
  Provides-Extra: all
52
- Requires-Dist: xgboost-cpu>=2.0.3; extra == "all"
53
50
  Requires-Dist: networkx>=3.2; extra == "all"
54
51
  Requires-Dist: plotly>=5.18.0; extra == "all"
55
52
  Requires-Dist: dash<3.0.0,>=2.16.1; extra == "all"
@@ -7,7 +7,7 @@ awswrangler >= 3.4.0
7
7
  sagemaker >= 2.143
8
8
  cryptography>=44.0.2
9
9
  ipython>=8.17.2
10
- xgboost-cpu>=2.0.3
10
+ xgboost>=3.0.3
11
11
  scikit-learn >=1.5.2
12
12
  joblib>=1.3.2
13
13
  requests>=2.32.0
@@ -0,0 +1,57 @@
1
+ from workbench.api import FeatureSet, Model, ModelType, Endpoint
2
+
3
+ # Grab a FeatureSet
4
+ my_features = FeatureSet("aqsol_features")
5
+ model = Model("aqsol-regression")
6
+ feature_list = model.features()
7
+ target = model.target()
8
+
9
+ # Recreate Flag in case you want to recreate the artifacts
10
+ recreate = False
11
+
12
+ # PyTorch Regression Model
13
+ if recreate or not Model("aqsol-pytorch-reg").exists():
14
+ feature_set = FeatureSet("aqsol_features")
15
+ m = feature_set.to_model(
16
+ name="aqsol-pytorch-reg",
17
+ model_type=ModelType.REGRESSOR,
18
+ model_class="PyTorch",
19
+ feature_list=feature_list,
20
+ target_column=target,
21
+ description="PyTorch Regression Model for AQSol",
22
+ tags=["pytorch", "molecular descriptors"],
23
+ )
24
+ m.set_owner("BW")
25
+
26
+ # Create an Endpoint for the Regression Model
27
+ if recreate or not Endpoint("aqsol-pytorch-reg").exists():
28
+ m = Model("aqsol-pytorch-reg")
29
+ end = m.to_endpoint(tags=["pytorch", "molecular descriptors"])
30
+ end.set_owner("BW")
31
+
32
+ # Run inference on the endpoint
33
+ end.auto_inference(capture=True)
34
+
35
+ # Pytorch Classification Model
36
+ if recreate or not Model("aqsol-pytorch-class").exists():
37
+ feature_set = FeatureSet("aqsol_features")
38
+ m = feature_set.to_model(
39
+ name="aqsol-pytorch-class",
40
+ model_type=ModelType.CLASSIFIER,
41
+ model_class="PyTorch",
42
+ feature_list=feature_list,
43
+ target_column="solubility_class",
44
+ description="PyTorch Classification Model for AQSol",
45
+ tags=["pytorch", "molecular descriptors"],
46
+ )
47
+ m.set_owner("BW")
48
+ m.set_class_labels(["low", "medium", "high"])
49
+
50
+ # Create an Endpoint for the Classification Model
51
+ if recreate or not Endpoint("aqsol-pytorch-class").exists():
52
+ m = Model("aqsol-pytorch-class")
53
+ end = m.to_endpoint(tags=["pytorch", "molecular descriptors"])
54
+ end.set_owner("BW")
55
+
56
+ # Run inference on the endpoint
57
+ end.auto_inference(capture=True)
@@ -0,0 +1,561 @@
1
+ # Imports for PyTorch Tabular Model
2
+ import os
3
+ import awswrangler as wr
4
+ import numpy as np
5
+
6
+ # PyTorch compatibility: pytorch-tabular saves complex objects, not just tensors
7
+ # Use legacy loading behavior for compatibility (recommended by PyTorch docs for this scenario)
8
+ os.environ["TORCH_FORCE_NO_WEIGHTS_ONLY_LOAD"] = "1"
9
+ from pytorch_tabular import TabularModel
10
+ from pytorch_tabular.config import DataConfig, OptimizerConfig, TrainerConfig
11
+ from pytorch_tabular.models import CategoryEmbeddingModelConfig, TabNetModelConfig
12
+
13
+ # Model Performance Scores
14
+ from sklearn.metrics import (
15
+ mean_absolute_error,
16
+ r2_score,
17
+ root_mean_squared_error,
18
+ precision_recall_fscore_support,
19
+ confusion_matrix,
20
+ )
21
+
22
+ # Classification Encoder
23
+ from sklearn.preprocessing import LabelEncoder
24
+
25
+ # Scikit Learn Imports
26
+ from sklearn.model_selection import train_test_split
27
+
28
+ from io import StringIO
29
+ import json
30
+ import argparse
31
+ import joblib
32
+ import os
33
+ import pandas as pd
34
+ from typing import List, Tuple
35
+
36
+ # Template Parameters
37
+ TEMPLATE_PARAMS = {
38
+ # "model_type": "regressor",
39
+ "model_type": "classifier",
40
+ # "target_column": "solubility",
41
+ "target_column": "solubility_class",
42
+ "features": [
43
+ "molwt",
44
+ "mollogp",
45
+ "molmr",
46
+ "heavyatomcount",
47
+ "numhacceptors",
48
+ "numhdonors",
49
+ "numheteroatoms",
50
+ "numrotatablebonds",
51
+ "numvalenceelectrons",
52
+ "numaromaticrings",
53
+ "numsaturatedrings",
54
+ "numaliphaticrings",
55
+ "ringcount",
56
+ "tpsa",
57
+ "labuteasa",
58
+ "balabanj",
59
+ "bertzct",
60
+ ],
61
+ "compressed_features": [],
62
+ "model_metrics_s3_path": "s3://sandbox-sageworks-artifacts/models/aqsol-pytorch-reg/training",
63
+ "train_all_data": False,
64
+ }
65
+
66
+
67
+ # Function to check if dataframe is empty
68
+ def check_dataframe(df: pd.DataFrame, df_name: str) -> None:
69
+ """
70
+ Check if the provided dataframe is empty and raise an exception if it is.
71
+
72
+ Args:
73
+ df (pd.DataFrame): DataFrame to check
74
+ df_name (str): Name of the DataFrame
75
+ """
76
+ if df.empty:
77
+ msg = f"*** The training data {df_name} has 0 rows! ***STOPPING***"
78
+ print(msg)
79
+ raise ValueError(msg)
80
+
81
+
82
+ def expand_proba_column(df: pd.DataFrame, class_labels: List[str]) -> pd.DataFrame:
83
+ """
84
+ Expands a column in a DataFrame containing a list of probabilities into separate columns.
85
+
86
+ Args:
87
+ df (pd.DataFrame): DataFrame containing a "pred_proba" column
88
+ class_labels (List[str]): List of class labels
89
+
90
+ Returns:
91
+ pd.DataFrame: DataFrame with the "pred_proba" expanded into separate columns
92
+ """
93
+
94
+ # Sanity check
95
+ proba_column = "pred_proba"
96
+ if proba_column not in df.columns:
97
+ raise ValueError('DataFrame does not contain a "pred_proba" column')
98
+
99
+ # Construct new column names with '_proba' suffix
100
+ proba_splits = [f"{label}_proba" for label in class_labels]
101
+
102
+ # Expand the proba_column into separate columns for each probability
103
+ proba_df = pd.DataFrame(df[proba_column].tolist(), columns=proba_splits)
104
+
105
+ # Drop any proba columns and reset the index in prep for the concat
106
+ df = df.drop(columns=[proba_column] + proba_splits, errors="ignore")
107
+ df = df.reset_index(drop=True)
108
+
109
+ # Concatenate the new columns with the original DataFrame
110
+ df = pd.concat([df, proba_df], axis=1)
111
+ print(df)
112
+ return df
113
+
114
+
115
+ def match_features_case_insensitive(df: pd.DataFrame, model_features: list) -> pd.DataFrame:
116
+ """
117
+ Matches and renames DataFrame columns to match model feature names (case-insensitive).
118
+ Prioritizes exact matches, then case-insensitive matches.
119
+
120
+ Raises ValueError if any model features cannot be matched.
121
+ """
122
+ df_columns_lower = {col.lower(): col for col in df.columns}
123
+ rename_dict = {}
124
+ missing = []
125
+
126
+ for feature in model_features:
127
+ if feature in df.columns:
128
+ continue # Exact match
129
+ elif feature.lower() in df_columns_lower:
130
+ rename_dict[df_columns_lower[feature.lower()]] = feature
131
+ else:
132
+ missing.append(feature)
133
+
134
+ if missing:
135
+ raise ValueError(f"Features not found: {missing}")
136
+
137
+ return df.rename(columns=rename_dict)
138
+
139
+
140
+ def convert_categorical_types(df: pd.DataFrame, features: list, category_mappings={}) -> tuple:
141
+ """
142
+ Converts appropriate columns to categorical type with consistent mappings.
143
+
144
+ Args:
145
+ df (pd.DataFrame): The DataFrame to process.
146
+ features (list): List of feature names to consider for conversion.
147
+ category_mappings (dict, optional): Existing category mappings. If empty dict, we're in
148
+ training mode. If populated, we're in inference mode.
149
+
150
+ Returns:
151
+ tuple: (processed DataFrame, category mappings dictionary)
152
+ """
153
+ # Training mode
154
+ if category_mappings == {}:
155
+ for col in df.select_dtypes(include=["object", "string"]):
156
+ if col in features and df[col].nunique() < 20:
157
+ print(f"Training mode: Converting {col} to category")
158
+ df[col] = df[col].astype("category")
159
+ category_mappings[col] = df[col].cat.categories.tolist() # Store category mappings
160
+
161
+ # Inference mode
162
+ else:
163
+ for col, categories in category_mappings.items():
164
+ if col in df.columns:
165
+ print(f"Inference mode: Applying categorical mapping for {col}")
166
+ df[col] = pd.Categorical(df[col], categories=categories) # Apply consistent categorical mapping
167
+
168
+ return df, category_mappings
169
+
170
+
171
+ def decompress_features(
172
+ df: pd.DataFrame, features: List[str], compressed_features: List[str]
173
+ ) -> Tuple[pd.DataFrame, List[str]]:
174
+ """Prepare features for the model
175
+
176
+ Args:
177
+ df (pd.DataFrame): The features DataFrame
178
+ features (List[str]): Full list of feature names
179
+ compressed_features (List[str]): List of feature names to decompress (bitstrings)
180
+
181
+ Returns:
182
+ pd.DataFrame: DataFrame with the decompressed features
183
+ List[str]: Updated list of feature names after decompression
184
+
185
+ Raises:
186
+ ValueError: If any missing values are found in the specified features
187
+ """
188
+
189
+ # Check for any missing values in the required features
190
+ missing_counts = df[features].isna().sum()
191
+ if missing_counts.any():
192
+ missing_features = missing_counts[missing_counts > 0]
193
+ print(
194
+ f"WARNING: Found missing values in features: {missing_features.to_dict()}. "
195
+ "WARNING: You might want to remove/replace all NaN values before processing."
196
+ )
197
+
198
+ # Decompress the specified compressed features
199
+ decompressed_features = features
200
+ for feature in compressed_features:
201
+ if (feature not in df.columns) or (feature not in features):
202
+ print(f"Feature '{feature}' not in the features list, skipping decompression.")
203
+ continue
204
+
205
+ # Remove the feature from the list of features to avoid duplication
206
+ decompressed_features.remove(feature)
207
+
208
+ # Handle all compressed features as bitstrings
209
+ bit_matrix = np.array([list(bitstring) for bitstring in df[feature]], dtype=np.uint8)
210
+ prefix = feature[:3]
211
+
212
+ # Create all new columns at once - avoids fragmentation
213
+ new_col_names = [f"{prefix}_{i}" for i in range(bit_matrix.shape[1])]
214
+ new_df = pd.DataFrame(bit_matrix, columns=new_col_names, index=df.index)
215
+
216
+ # Add to features list
217
+ decompressed_features.extend(new_col_names)
218
+
219
+ # Drop original column and concatenate new ones
220
+ df = df.drop(columns=[feature])
221
+ df = pd.concat([df, new_df], axis=1)
222
+
223
+ return df, decompressed_features
224
+
225
+
226
+ def model_fn(model_dir):
227
+ """Deserialize and return fitted PyTorch Tabular model"""
228
+ model_path = os.path.join(model_dir, "tabular_model")
229
+ model = TabularModel.load_model(model_path)
230
+ return model
231
+
232
+
233
+ def input_fn(input_data, content_type):
234
+ """Parse input data and return a DataFrame."""
235
+ if not input_data:
236
+ raise ValueError("Empty input data is not supported!")
237
+
238
+ # Decode bytes to string if necessary
239
+ if isinstance(input_data, bytes):
240
+ input_data = input_data.decode("utf-8")
241
+
242
+ if "text/csv" in content_type:
243
+ return pd.read_csv(StringIO(input_data))
244
+ elif "application/json" in content_type:
245
+ return pd.DataFrame(json.loads(input_data)) # Assumes JSON array of records
246
+ else:
247
+ raise ValueError(f"{content_type} not supported!")
248
+
249
+
250
+ def output_fn(output_df, accept_type):
251
+ """Supports both CSV and JSON output formats."""
252
+ if "text/csv" in accept_type:
253
+ csv_output = output_df.fillna("N/A").to_csv(index=False) # CSV with N/A for missing values
254
+ return csv_output, "text/csv"
255
+ elif "application/json" in accept_type:
256
+ return output_df.to_json(orient="records"), "application/json" # JSON array of records (NaNs -> null)
257
+ else:
258
+ raise RuntimeError(f"{accept_type} accept type is not supported by this script.")
259
+
260
+
261
+ def predict_fn(df, model) -> pd.DataFrame:
262
+ """Make Predictions with our PyTorch Tabular Model
263
+
264
+ Args:
265
+ df (pd.DataFrame): The input DataFrame
266
+ model: The TabularModel use for predictions
267
+
268
+ Returns:
269
+ pd.DataFrame: The DataFrame with the predictions added
270
+ """
271
+ compressed_features = TEMPLATE_PARAMS["compressed_features"]
272
+
273
+ # Grab our feature columns (from training)
274
+ model_dir = os.environ.get("SM_MODEL_DIR", "pytorch_outputs")
275
+ with open(os.path.join(model_dir, "feature_columns.json")) as fp:
276
+ features = json.load(fp)
277
+ print(f"Model Features: {features}")
278
+
279
+ # Load the category mappings (from training)
280
+ with open(os.path.join(model_dir, "category_mappings.json")) as fp:
281
+ category_mappings = json.load(fp)
282
+
283
+ # Load our Label Encoder if we have one
284
+ label_encoder = None
285
+ if os.path.exists(os.path.join(model_dir, "label_encoder.joblib")):
286
+ label_encoder = joblib.load(os.path.join(model_dir, "label_encoder.joblib"))
287
+
288
+ # We're going match features in a case-insensitive manner, accounting for all the permutations
289
+ # - Model has a feature list that's any case ("Id", "taCos", "cOunT", "likes_tacos")
290
+ # - Incoming data has columns that are mixed case ("ID", "Tacos", "Count", "Likes_Tacos")
291
+ matched_df = match_features_case_insensitive(df, features)
292
+
293
+ # Detect categorical types in the incoming DataFrame
294
+ matched_df, _ = convert_categorical_types(matched_df, features, category_mappings)
295
+
296
+ # If we have compressed features, decompress them
297
+ if compressed_features:
298
+ print("Decompressing features for prediction...")
299
+ matched_df, features = decompress_features(matched_df, features, compressed_features)
300
+
301
+ # Make predictions using the TabularModel
302
+ result = model.predict(matched_df[features])
303
+
304
+ # pytorch-tabular returns predictions using f"{target}_prediction" column
305
+ # and classification probabilities in columns ending with "_probability"
306
+ target = TEMPLATE_PARAMS["target_column"]
307
+ prediction_column = f"{target}_prediction"
308
+ if prediction_column in result.columns:
309
+ predictions = result[prediction_column].values
310
+ else:
311
+ raise ValueError(f"Cannot find prediction column in: {result.columns.tolist()}")
312
+
313
+ # If we have a label encoder, decode the predictions
314
+ if label_encoder:
315
+ predictions = label_encoder.inverse_transform(predictions.astype(int))
316
+
317
+ # Set the predictions on the DataFrame
318
+ df["prediction"] = predictions
319
+
320
+ # For classification, get probabilities
321
+ if label_encoder is not None:
322
+ prob_cols = [col for col in result.columns if col.endswith("_probability")]
323
+ if prob_cols:
324
+ probs = result[prob_cols].values
325
+ df["pred_proba"] = [p.tolist() for p in probs]
326
+
327
+ # Expand the pred_proba column into separate columns for each class
328
+ df = expand_proba_column(df, label_encoder.classes_)
329
+
330
+ # All done, return the DataFrame with new columns for the predictions
331
+ return df
332
+
333
+
334
+ if __name__ == "__main__":
335
+ """The main function is for training the PyTorch Tabular model"""
336
+
337
+ # Harness Template Parameters
338
+ target = TEMPLATE_PARAMS["target_column"]
339
+ features = TEMPLATE_PARAMS["features"]
340
+ orig_features = features.copy()
341
+ compressed_features = TEMPLATE_PARAMS["compressed_features"]
342
+ model_type = TEMPLATE_PARAMS["model_type"]
343
+ model_metrics_s3_path = TEMPLATE_PARAMS["model_metrics_s3_path"]
344
+ train_all_data = TEMPLATE_PARAMS["train_all_data"]
345
+ validation_split = 0.2
346
+
347
+ # Script arguments for input/output directories
348
+ parser = argparse.ArgumentParser()
349
+ parser.add_argument("--model-dir", type=str, default=os.environ.get("SM_MODEL_DIR", "pytorch_outputs"))
350
+ args = parser.parse_args()
351
+
352
+ # Pull training data from a FeatureSet
353
+ from workbench.api import FeatureSet
354
+
355
+ fs = FeatureSet("aqsol_features")
356
+ all_df = fs.pull_dataframe()
357
+
358
+ # Check if the dataframe is empty
359
+ check_dataframe(all_df, "training_df")
360
+
361
+ # Features/Target output
362
+ print(f"Target: {target}")
363
+ print(f"Features: {str(features)}")
364
+
365
+ # Convert any features that might be categorical to 'category' type
366
+ all_df, category_mappings = convert_categorical_types(all_df, features)
367
+
368
+ # If we have compressed features, decompress them
369
+ if compressed_features:
370
+ print(f"Decompressing features {compressed_features}...")
371
+ all_df, features = decompress_features(all_df, features, compressed_features)
372
+
373
+ # Do we want to train on all the data?
374
+ if train_all_data:
375
+ print("Training on ALL of the data")
376
+ df_train = all_df.copy()
377
+ df_val = all_df.copy()
378
+
379
+ # Does the dataframe have a training column?
380
+ elif "training" in all_df.columns:
381
+ print("Found training column, splitting data based on training column")
382
+ df_train = all_df[all_df["training"]]
383
+ df_val = all_df[~all_df["training"]]
384
+ else:
385
+ # Just do a random training Split
386
+ print("WARNING: No training column found, splitting data with random state=42")
387
+ df_train, df_val = train_test_split(all_df, test_size=validation_split, random_state=42)
388
+ print(f"FIT/TRAIN: {df_train.shape}")
389
+ print(f"VALIDATION: {df_val.shape}")
390
+
391
+ # Determine categorical and continuous columns
392
+ categorical_cols = [col for col in features if df_train[col].dtype.name == "category"]
393
+ continuous_cols = [col for col in features if col not in categorical_cols]
394
+
395
+ print(f"Categorical columns: {categorical_cols}")
396
+ print(f"Continuous columns: {continuous_cols}")
397
+
398
+ # Set up PyTorch Tabular configuration
399
+ data_config = DataConfig(
400
+ target=[target],
401
+ continuous_cols=continuous_cols,
402
+ categorical_cols=categorical_cols,
403
+ )
404
+
405
+ trainer_config = TrainerConfig(
406
+ auto_lr_find=True,
407
+ batch_size=min(1024, len(df_train) // 4),
408
+ max_epochs=100,
409
+ early_stopping="valid_loss",
410
+ early_stopping_patience=15,
411
+ checkpoints="valid_loss",
412
+ accelerator="auto",
413
+ progress_bar="none",
414
+ gradient_clip_val=1.0,
415
+ )
416
+
417
+ optimizer_config = OptimizerConfig()
418
+
419
+ # Choose model configuration based on model type
420
+ if model_type == "classifier":
421
+ task = "classification"
422
+ # Encode the target column
423
+ label_encoder = LabelEncoder()
424
+ df_train[target] = label_encoder.fit_transform(df_train[target])
425
+ df_val[target] = label_encoder.transform(df_val[target])
426
+ else:
427
+ task = "regression"
428
+ label_encoder = None
429
+
430
+ # Use CategoryEmbedding for both regression and classification tasks
431
+ model_config = CategoryEmbeddingModelConfig(
432
+ task=task,
433
+ layers="1024-512-512",
434
+ activation="ReLU",
435
+ learning_rate=1e-3,
436
+ dropout=0.1,
437
+ use_batch_norm=True,
438
+ initialization="kaiming",
439
+ )
440
+
441
+ # Create and train the TabularModel
442
+ tabular_model = TabularModel(
443
+ data_config=data_config,
444
+ model_config=model_config,
445
+ optimizer_config=optimizer_config,
446
+ trainer_config=trainer_config,
447
+ )
448
+
449
+ # Train the model
450
+ tabular_model.fit(train=df_train, validation=df_val)
451
+
452
+ # Make Predictions on the Validation Set
453
+ print(f"Making Predictions on Validation Set...")
454
+ result = tabular_model.predict(df_val, include_input_features=False)
455
+
456
+ # pytorch-tabular returns predictions using f"{target}_prediction" column
457
+ # and classification probabilities in columns ending with "_probability"
458
+ if model_type == "classifier":
459
+ preds = result[f"{target}_prediction"].values
460
+ else:
461
+ # Regression: use the target column name
462
+ preds = result[f"{target}_prediction"].values
463
+
464
+ if model_type == "classifier":
465
+ # Get probabilities for classification
466
+ print("Processing Probabilities...")
467
+ prob_cols = [col for col in result.columns if col.endswith("_probability")]
468
+ if prob_cols:
469
+ probs = result[prob_cols].values
470
+ df_val["pred_proba"] = [p.tolist() for p in probs]
471
+
472
+ # Expand the pred_proba column into separate columns for each class
473
+ print(df_val.columns)
474
+ df_val = expand_proba_column(df_val, label_encoder.classes_)
475
+ print(df_val.columns)
476
+
477
+ # Decode the target and prediction labels
478
+ y_validate = label_encoder.inverse_transform(df_val[target])
479
+ preds = label_encoder.inverse_transform(preds.astype(int))
480
+ else:
481
+ y_validate = df_val[target].values
482
+
483
+ # Save predictions to S3 (just the target, prediction, and '_probability' columns)
484
+ df_val["prediction"] = preds
485
+ output_columns = [target, "prediction"]
486
+ output_columns += [col for col in df_val.columns if col.endswith("_probability")]
487
+ wr.s3.to_csv(
488
+ df_val[output_columns],
489
+ path=f"{model_metrics_s3_path}/validation_predictions.csv",
490
+ index=False,
491
+ )
492
+
493
+ # Report Performance Metrics
494
+ if model_type == "classifier":
495
+ # Get the label names and their integer mapping
496
+ label_names = label_encoder.classes_
497
+
498
+ # Calculate various model performance metrics
499
+ scores = precision_recall_fscore_support(y_validate, preds, average=None, labels=label_names)
500
+
501
+ # Put the scores into a dataframe
502
+ score_df = pd.DataFrame(
503
+ {
504
+ target: label_names,
505
+ "precision": scores[0],
506
+ "recall": scores[1],
507
+ "fscore": scores[2],
508
+ "support": scores[3],
509
+ }
510
+ )
511
+
512
+ # We need to get creative with the Classification Metrics
513
+ metrics = ["precision", "recall", "fscore", "support"]
514
+ for t in label_names:
515
+ for m in metrics:
516
+ value = score_df.loc[score_df[target] == t, m].iloc[0]
517
+ print(f"Metrics:{t}:{m} {value}")
518
+
519
+ # Compute and output the confusion matrix
520
+ conf_mtx = confusion_matrix(y_validate, preds, labels=label_names)
521
+ for i, row_name in enumerate(label_names):
522
+ for j, col_name in enumerate(label_names):
523
+ value = conf_mtx[i, j]
524
+ print(f"ConfusionMatrix:{row_name}:{col_name} {value}")
525
+
526
+ else:
527
+ # Calculate various model performance metrics (regression)
528
+ rmse = root_mean_squared_error(y_validate, preds)
529
+ mae = mean_absolute_error(y_validate, preds)
530
+ r2 = r2_score(y_validate, preds)
531
+ print(f"RMSE: {rmse:.3f}")
532
+ print(f"MAE: {mae:.3f}")
533
+ print(f"R2: {r2:.3f}")
534
+ print(f"NumRows: {len(df_val)}")
535
+
536
+ # Save the model to the standard place/name
537
+ tabular_model.save_model(os.path.join(args.model_dir, "tabular_model"))
538
+ if label_encoder:
539
+ joblib.dump(label_encoder, os.path.join(args.model_dir, "label_encoder.joblib"))
540
+
541
+ # Save the features (this will validate input during predictions)
542
+ with open(os.path.join(args.model_dir, "feature_columns.json"), "w") as fp:
543
+ json.dump(orig_features, fp) # We save the original features, not the decompressed ones
544
+
545
+ # Save the category mappings
546
+ with open(os.path.join(args.model_dir, "category_mappings.json"), "w") as fp:
547
+ json.dump(category_mappings, fp)
548
+
549
+ # Now test the prediction function
550
+ model = model_fn(args.model_dir)
551
+ test_df = df_val
552
+ print(f"Testing model with {len(test_df)} rows...")
553
+ predictions_df = predict_fn(test_df, model)
554
+ print(predictions_df.head())
555
+
556
+ # Remove the pytorch_outputs directory if it exists
557
+ if os.path.exists("pytorch_outputs"):
558
+ import shutil
559
+
560
+ shutil.rmtree("pytorch_outputs")
561
+ print("Removed pytorch_outputs directory.")
@@ -0,0 +1,6 @@
1
+ ### Build and Deploy Workbench Training/Inference Images
2
+
3
+ ```
4
+ cd scripts
5
+ ./build_deploy.sh pytorch_training 0.1 --deploy --overwrite
6
+ ```
@@ -0,0 +1,7 @@
1
+ fastapi==0.115.10 # FastAPI for serving the model
2
+ uvicorn==0.34.0 # ASGI server for running FastAPI
3
+ scikit-learn==1.6.1
4
+ xgboost==3.0.3
5
+ pandas==2.2.3
6
+ awswrangler==3.11.0
7
+ joblib==1.4.2
@@ -1,5 +1,5 @@
1
1
  fastapi==0.115.12
2
2
  uvicorn==0.34.1
3
- xgboost-cpu==3.0.0
3
+ xgboost==3.0.3
4
4
  joblib==1.4.2
5
5
  workbench-bridges==0.1.1