workbench 0.8.224__py3-none-any.whl → 0.8.231__py3-none-any.whl

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.
Files changed (61) hide show
  1. workbench/__init__.py +1 -0
  2. workbench/algorithms/dataframe/__init__.py +2 -0
  3. workbench/algorithms/dataframe/smart_aggregator.py +161 -0
  4. workbench/algorithms/sql/column_stats.py +0 -1
  5. workbench/algorithms/sql/correlations.py +0 -1
  6. workbench/algorithms/sql/descriptive_stats.py +0 -1
  7. workbench/api/meta.py +0 -1
  8. workbench/cached/cached_meta.py +0 -1
  9. workbench/cached/cached_model.py +37 -7
  10. workbench/core/artifacts/endpoint_core.py +12 -2
  11. workbench/core/artifacts/feature_set_core.py +66 -8
  12. workbench/core/cloud_platform/cloud_meta.py +0 -1
  13. workbench/model_script_utils/model_script_utils.py +30 -0
  14. workbench/model_script_utils/uq_harness.py +0 -1
  15. workbench/model_scripts/chemprop/chemprop.template +3 -0
  16. workbench/model_scripts/chemprop/generated_model_script.py +3 -3
  17. workbench/model_scripts/chemprop/model_script_utils.py +30 -0
  18. workbench/model_scripts/custom_models/chem_info/mol_descriptors.py +0 -1
  19. workbench/model_scripts/custom_models/chem_info/molecular_descriptors.py +0 -1
  20. workbench/model_scripts/custom_models/chem_info/morgan_fingerprints.py +0 -1
  21. workbench/model_scripts/pytorch_model/generated_model_script.py +50 -32
  22. workbench/model_scripts/pytorch_model/model_script_utils.py +30 -0
  23. workbench/model_scripts/pytorch_model/pytorch.template +47 -29
  24. workbench/model_scripts/pytorch_model/uq_harness.py +0 -1
  25. workbench/model_scripts/script_generation.py +0 -1
  26. workbench/model_scripts/xgb_model/model_script_utils.py +30 -0
  27. workbench/model_scripts/xgb_model/uq_harness.py +0 -1
  28. workbench/themes/dark/custom.css +85 -8
  29. workbench/themes/dark/plotly.json +6 -6
  30. workbench/themes/light/custom.css +172 -70
  31. workbench/themes/light/plotly.json +9 -9
  32. workbench/themes/midnight_blue/custom.css +48 -29
  33. workbench/themes/midnight_blue/plotly.json +1 -1
  34. workbench/utils/aws_utils.py +0 -1
  35. workbench/utils/chem_utils/mol_descriptors.py +0 -1
  36. workbench/utils/chem_utils/vis.py +137 -27
  37. workbench/utils/clientside_callbacks.py +41 -0
  38. workbench/utils/markdown_utils.py +57 -0
  39. workbench/utils/pipeline_utils.py +0 -1
  40. workbench/utils/plot_utils.py +8 -110
  41. workbench/web_interface/components/experiments/outlier_plot.py +0 -1
  42. workbench/web_interface/components/model_plot.py +2 -0
  43. workbench/web_interface/components/plugin_unit_test.py +0 -1
  44. workbench/web_interface/components/plugins/ag_table.py +2 -4
  45. workbench/web_interface/components/plugins/confusion_matrix.py +3 -6
  46. workbench/web_interface/components/plugins/model_details.py +10 -6
  47. workbench/web_interface/components/plugins/scatter_plot.py +56 -43
  48. workbench/web_interface/components/settings_menu.py +2 -1
  49. workbench/web_interface/page_views/main_page.py +0 -1
  50. {workbench-0.8.224.dist-info → workbench-0.8.231.dist-info}/METADATA +31 -29
  51. {workbench-0.8.224.dist-info → workbench-0.8.231.dist-info}/RECORD +55 -59
  52. {workbench-0.8.224.dist-info → workbench-0.8.231.dist-info}/WHEEL +1 -1
  53. workbench/themes/quartz/base_css.url +0 -1
  54. workbench/themes/quartz/custom.css +0 -117
  55. workbench/themes/quartz/plotly.json +0 -642
  56. workbench/themes/quartz_dark/base_css.url +0 -1
  57. workbench/themes/quartz_dark/custom.css +0 -131
  58. workbench/themes/quartz_dark/plotly.json +0 -642
  59. {workbench-0.8.224.dist-info → workbench-0.8.231.dist-info}/entry_points.txt +0 -0
  60. {workbench-0.8.224.dist-info → workbench-0.8.231.dist-info}/licenses/LICENSE +0 -0
  61. {workbench-0.8.224.dist-info → workbench-0.8.231.dist-info}/top_level.txt +0 -0
@@ -1,117 +0,0 @@
1
- h1, h2, h3, h4 {
2
- color: rgb(255, 255, 255); /* We want the text to dark gray */
3
- }
4
- body {
5
- color: rgb(240, 240, 240); /* We want the text to dark gray */
6
- }
7
-
8
- /* Custom CSS to style bold text */
9
- b, strong {
10
- color: rgb(220, 140, 240); /* Replace with your desired RGB color */
11
- }
12
-
13
- /* Links in Quartz are pink and hard to see */
14
- /* Default link color */
15
- a {
16
- color: rgb(80, 80, 240); /* Change to your preferred color */
17
- }
18
-
19
- /* Reduce spacing around lists */
20
- p {
21
- margin-bottom: 0 !important;
22
- }
23
- ul, ol {
24
- margin-top: 0 !important;
25
- margin-bottom: 0.25em !important;
26
- }
27
-
28
- /* Hover effect */
29
- a:hover {
30
- color: rgb(100, 100, 255); /* Change hover color */
31
- }
32
-
33
- /* AgGrid custom CSS */
34
-
35
- /* There's a one pixel border around the grid that we want to remove */
36
- .ag-root-wrapper {
37
- border: none !important; /* Force removal with !important */
38
- }
39
-
40
-
41
- /* Box shadow and rounded corners for all AgGrid themes */
42
- [class*="ag-theme-"] {
43
- box-shadow: 2px 2px 6px 5px rgba(0, 0, 0, 0.25);
44
- border-radius: 12px; /* Rounded corners */
45
- border: 0.5px solid rgba(0, 0, 0, 0.5);
46
- margin: 0;
47
- padding: 0;
48
- }
49
-
50
- /* Apply styling to Workbench containers */
51
- .workbench-container {
52
- box-shadow: 2px 2px 6px 5px rgba(0, 0, 0, 0.2);
53
- border-radius: 12px; /* Rounded corners */
54
- background-color: rgb(104, 109, 195) /* Light Purple */
55
- }
56
-
57
- /* Apply styling to custom tooltips */
58
- .custom-tooltip {
59
- box-shadow: 2px 2px 6px 5px rgba(0, 0, 0, 0.25);
60
- border-radius: 25px; /* Rounded corners */
61
- overflow: hidden; /* Ensure contents fit inside the rounded corners */
62
- border: 1px solid rgba(40, 40, 40, 1); /* 1-pixel grey */
63
- }
64
-
65
- /* Some of the HTML/Markdown will use color hints like 'green-text' or 'blue-text' */
66
- .green-text {
67
- color: rgb(140, 255, 140);
68
- }
69
-
70
- .blue-text {
71
- color: rgb(170, 170, 255);
72
- }
73
-
74
- .pink-text {
75
- color: rgb(240, 140, 240);
76
- }
77
-
78
- .red-text {
79
- color: rgb(255, 140, 140);
80
- }
81
-
82
- .orange-text {
83
- color: rgb(255, 195, 140);
84
- }
85
-
86
- .alert {
87
- color: rgb(200, 60, 100);
88
- }
89
-
90
- .warning {
91
- color: rgb(200, 140, 90);
92
- }
93
-
94
- .good {
95
- color: rgb(40, 100, 40);
96
- }
97
-
98
-
99
- /* Table styling */
100
- table {
101
- width: 100%;
102
- }
103
-
104
- th {
105
- padding: 10px;
106
- border: 1px solid #444;
107
- background-color: rgb(40, 40, 40);
108
- color: rgb(160, 120, 240);
109
- font-weight: bold;
110
- text-align: center !important;
111
- }
112
-
113
- td {
114
- padding: 5px;
115
- border: 0.5px solid #444;
116
- text-align: center !important;
117
- }