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