@datagrok/eda 1.3.0 → 1.3.1
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.
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +4 -3
- package/src/package.ts +14 -25
- package/test-console-output-1.log +162 -67
- package/test-record-1.mp4 +0 -0
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datagrok/eda",
|
|
3
3
|
"friendlyName": "EDA",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.1",
|
|
5
5
|
"description": "Exploratory Data Analysis Tools",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@datagrok-libraries/math": "^1.2.4",
|
|
8
|
-
"@datagrok-libraries/ml": "^6.
|
|
8
|
+
"@datagrok-libraries/ml": "^6.8.0",
|
|
9
9
|
"@datagrok-libraries/tutorials": "^1.4.2",
|
|
10
10
|
"@datagrok-libraries/utils": "^4.4.0",
|
|
11
11
|
"@keckelt/tsne": "^1.0.2",
|
|
@@ -72,7 +72,8 @@
|
|
|
72
72
|
},
|
|
73
73
|
"Cluster": {
|
|
74
74
|
"Cluster...": null,
|
|
75
|
-
"DBSCAN...": null
|
|
75
|
+
"DBSCAN...": null,
|
|
76
|
+
"MCL...": null
|
|
76
77
|
},
|
|
77
78
|
"Notebooks": {
|
|
78
79
|
"Browse Notebooks": null,
|
package/src/package.ts
CHANGED
|
@@ -27,8 +27,8 @@ import {DimReductionMethods} from '@datagrok-libraries/ml/src/multi-column-dimen
|
|
|
27
27
|
|
|
28
28
|
import {runKNNImputer} from './missing-values-imputation/ui';
|
|
29
29
|
import {MCLEditor} from '@datagrok-libraries/ml/src/MCL/mcl-editor';
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
30
|
+
import {MCLViewer} from '@datagrok-libraries/ml/src/MCL/mcl-viewer';
|
|
31
|
+
import {MCLSerializableOptions} from '@datagrok-libraries/ml/src/MCL';
|
|
32
32
|
|
|
33
33
|
import {getLinearRegressionParams, getPredictionByLinearRegression} from './regression';
|
|
34
34
|
import {PlsModel} from './pls/pls-ml';
|
|
@@ -215,7 +215,7 @@ export function GetMCLEditor(call: DG.FuncCall): void {
|
|
|
215
215
|
|
|
216
216
|
|
|
217
217
|
//top-menu: ML | Cluster | MCL...
|
|
218
|
-
//name:
|
|
218
|
+
//name: MCLClustering
|
|
219
219
|
//description: Markov clustering (MCL) is an unsupervised clustering algorithm for graphs based on simulation of stochastic flow.
|
|
220
220
|
//input: dataframe df
|
|
221
221
|
//input: list<column> cols
|
|
@@ -230,11 +230,11 @@ export function GetMCLEditor(call: DG.FuncCall): void {
|
|
|
230
230
|
//input: double inflate = 2
|
|
231
231
|
//input: int minClusterSize = 5
|
|
232
232
|
//editor: EDA: GetMCLEditor
|
|
233
|
-
export async function
|
|
233
|
+
export async function MCLClustering(df: DG.DataFrame, cols: DG.Column[], metrics: KnownMetrics[],
|
|
234
234
|
weights: number[], aggregationMethod: DistanceAggregationMethod, preprocessingFuncs: (DG.Func | null | undefined)[],
|
|
235
235
|
preprocessingFuncArgs: any[], threshold: number = 80, maxIterations: number = 10, useWebGPU: boolean = false, inflate: number = 0,
|
|
236
236
|
minClusterSize: number = 5,
|
|
237
|
-
): Promise<
|
|
237
|
+
): Promise<MCLViewer> {
|
|
238
238
|
const tv = grok.shell.tableView(df.name) ?? grok.shell.addTableView(df);
|
|
239
239
|
const serializedOptions: string = JSON.stringify({
|
|
240
240
|
cols: cols.map((col) => col.name),
|
|
@@ -249,29 +249,18 @@ export async function MCL(df: DG.DataFrame, cols: DG.Column[], metrics: KnownMet
|
|
|
249
249
|
inflate: inflate,
|
|
250
250
|
minClusterSize: minClusterSize ?? 5,
|
|
251
251
|
} satisfies MCLSerializableOptions);
|
|
252
|
-
df.setTag(MCL_OPTIONS_TAG, serializedOptions);
|
|
252
|
+
//df.setTag(MCL_OPTIONS_TAG, serializedOptions);
|
|
253
253
|
|
|
254
|
-
const
|
|
255
|
-
return
|
|
254
|
+
const viewer = tv.addViewer('MCL', {mclProps: serializedOptions}) as MCLViewer;
|
|
255
|
+
return viewer;
|
|
256
256
|
}
|
|
257
257
|
|
|
258
|
-
//name:
|
|
259
|
-
//
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
const mclTag = df.getTag(MCL_OPTIONS_TAG);
|
|
265
|
-
if (!mclTag)
|
|
266
|
-
throw new Error('MCL options tag on the dataFrame is not found');
|
|
267
|
-
const options: MCLSerializableOptions = JSON.parse(mclTag);
|
|
268
|
-
const cols = options.cols.map((colName) => df.columns.byName(colName));
|
|
269
|
-
const preprocessingFuncs = options.preprocessingFuncs.map((funcName) => funcName ? DG.Func.byName(funcName) : null);
|
|
270
|
-
|
|
271
|
-
const res = await markovCluster(df, cols, options.metrics, options.weights,
|
|
272
|
-
options.aggregationMethod, preprocessingFuncs, options.preprocessingFuncArgs, options.threshold,
|
|
273
|
-
options.maxIterations, options.useWebGPU, options.inflate, options.minClusterSize, sc);
|
|
274
|
-
return res?.sc;
|
|
258
|
+
//name: MCL
|
|
259
|
+
//description: Markov clustering viewer
|
|
260
|
+
//tags: viewer
|
|
261
|
+
//output: viewer result
|
|
262
|
+
export function markovClusteringViewer(): MCLViewer {
|
|
263
|
+
return new MCLViewer();
|
|
275
264
|
}
|
|
276
265
|
|
|
277
266
|
//name: PLS
|
|
@@ -1,25 +1,22 @@
|
|
|
1
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/
|
|
2
|
-
CONSOLE LOG REQUEST: 200,
|
|
3
|
-
CONSOLE LOG
|
|
4
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.0.X-89e958dd/xFkztr3gQPWtrHq96zjktPOwq2zAuwo7/1/wasm/EDA.js
|
|
5
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.0.X-89e958dd/xFkztr3gQPWtrHq96zjktPOwq2zAuwo7/1/wasm/XGBoostAPI.js
|
|
6
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.0.X-89e958dd/xFkztr3gQPWtrHq96zjktPOwq2zAuwo7/1/dist/package.js
|
|
1
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.1.X-2914be5e/CV0PsYcg10ZxaPsVR39SV5KEXFakednj/1/wasm/EDA.js
|
|
2
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.1.X-2914be5e/CV0PsYcg10ZxaPsVR39SV5KEXFakednj/1/wasm/XGBoostAPI.js
|
|
3
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.1.X-2914be5e/CV0PsYcg10ZxaPsVR39SV5KEXFakednj/1/dist/package.js
|
|
7
4
|
CONSOLE LOG ENTRY: Wasm not Loaded, Loading
|
|
8
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.
|
|
5
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.1.X-2914be5e/CV0PsYcg10ZxaPsVR39SV5KEXFakednj/1/wasm/EDA.wasm
|
|
9
6
|
CONSOLE LOG ENTRY: XGBoost not Loaded, Loading
|
|
10
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.
|
|
11
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.
|
|
12
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/funcs?text=package.id%2520%253D%2520%
|
|
7
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.1.X-2914be5e/CV0PsYcg10ZxaPsVR39SV5KEXFakednj/1/wasm/XGBoostAPI.wasm
|
|
8
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.1.X-2914be5e/CV0PsYcg10ZxaPsVR39SV5KEXFakednj/1/dist/package-test.js
|
|
9
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/funcs?text=package.id%2520%253D%2520%25224133b820-c210-11ef-8164-7bb21cc75665%2522
|
|
13
10
|
CONSOLE LOG ENTRY: Running tests
|
|
14
11
|
CONSOLE LOG ENTRY: Started ANOVA category
|
|
15
12
|
CONSOLE LOG ENTRY: Started ANOVA Correctness
|
|
16
|
-
CONSOLE LOG ENTRY: Finished ANOVA Correctness for
|
|
13
|
+
CONSOLE LOG ENTRY: Finished ANOVA Correctness for 2 ms
|
|
17
14
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
18
15
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
19
16
|
CONSOLE LOG ENTRY: Running tests
|
|
20
17
|
CONSOLE LOG ENTRY: Started ANOVA category
|
|
21
18
|
CONSOLE LOG ENTRY: Started ANOVA Performance: 1M rows demog
|
|
22
|
-
CONSOLE LOG ENTRY: Finished ANOVA Performance: 1M rows demog for
|
|
19
|
+
CONSOLE LOG ENTRY: Finished ANOVA Performance: 1M rows demog for 1692 ms
|
|
23
20
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
24
21
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
25
22
|
CONSOLE LOG ENTRY: Running tests
|
|
@@ -33,40 +30,79 @@ CONSOLE LOG REQUEST: 200, http://localhost:8080/font/Roboto-Italic.woff2
|
|
|
33
30
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
34
31
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
35
32
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
36
|
-
CONSOLE LOG REQUEST:
|
|
37
|
-
CONSOLE LOG
|
|
33
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
34
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
35
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
36
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
37
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
|
|
38
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
39
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
38
40
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
39
|
-
CONSOLE LOG REQUEST:
|
|
41
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
42
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
43
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
44
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
45
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
46
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
40
47
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
|
|
41
|
-
CONSOLE LOG
|
|
48
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
|
|
49
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
50
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
51
|
+
CONSOLE LOG ENTRY: distances to matrix: 16.864990234375 ms
|
|
42
52
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
43
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE All demog columns for
|
|
53
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE All demog columns for 1311 ms
|
|
44
54
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
45
55
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
46
56
|
CONSOLE LOG ENTRY: Running tests
|
|
47
57
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE category
|
|
48
58
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE Numeric and string columns
|
|
49
59
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
50
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/Axes-thumb.png').default%7D
|
|
51
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
52
60
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
53
61
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
54
|
-
CONSOLE LOG
|
|
62
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
63
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
64
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
65
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
66
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
67
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
68
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
69
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
70
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
71
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
72
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
73
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
74
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
75
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
76
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
77
|
+
CONSOLE LOG ENTRY: distances to matrix: 25.337890625 ms
|
|
55
78
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
56
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric and string columns for
|
|
79
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric and string columns for 1376 ms
|
|
57
80
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
58
81
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
59
82
|
CONSOLE LOG ENTRY: Running tests
|
|
60
83
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE category
|
|
61
84
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE Numeric column
|
|
62
85
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
63
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/Axes-thumb.png').default%7D
|
|
64
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
65
86
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
66
87
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
67
|
-
CONSOLE LOG
|
|
88
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
89
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
90
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
91
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
92
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
93
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
94
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
95
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
96
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
97
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
98
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
99
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
100
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
101
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
102
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
103
|
+
CONSOLE LOG ENTRY: distances to matrix: 37.18896484375 ms
|
|
68
104
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/concepts/table.md
|
|
69
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric column for
|
|
105
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric column for 1409 ms
|
|
70
106
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
71
107
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
72
108
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
@@ -74,13 +110,26 @@ CONSOLE LOG ENTRY: Running tests
|
|
|
74
110
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE category
|
|
75
111
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE String column
|
|
76
112
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
77
|
-
CONSOLE LOG REQUEST:
|
|
78
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/Axes-thumb.png').default%7D
|
|
113
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
79
114
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
115
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
80
116
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
81
|
-
CONSOLE LOG ENTRY:
|
|
117
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
118
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
119
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
120
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
121
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
122
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
123
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
124
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
125
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
126
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
127
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
128
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
129
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
130
|
+
CONSOLE LOG ENTRY: distances to matrix: 19.904052734375 ms
|
|
82
131
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
83
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE String column for
|
|
132
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE String column for 1213 ms
|
|
84
133
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
85
134
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
86
135
|
CONSOLE LOG ENTRY: Running tests
|
|
@@ -88,47 +137,80 @@ CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
|
|
|
88
137
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP All demog columns
|
|
89
138
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
90
139
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
91
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/Axes-thumb.png').default%7D
|
|
92
140
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
93
141
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
94
|
-
CONSOLE LOG
|
|
142
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
143
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
144
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
145
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
146
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
147
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
148
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
149
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
150
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
151
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
152
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
153
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
154
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
155
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
156
|
+
CONSOLE LOG ENTRY: knn graph: 58.4169921875 ms
|
|
95
157
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
96
|
-
CONSOLE LOG ENTRY: fit:
|
|
97
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP All demog columns for
|
|
158
|
+
CONSOLE LOG ENTRY: fit: 2777.2529296875 ms
|
|
159
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP All demog columns for 4105 ms
|
|
98
160
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
99
161
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
100
162
|
CONSOLE LOG ENTRY: Running tests
|
|
101
163
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
|
|
102
164
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP Numeric and string columns
|
|
103
165
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
104
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/
|
|
166
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
105
167
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
106
168
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
107
|
-
CONSOLE LOG REQUEST:
|
|
108
|
-
CONSOLE LOG
|
|
109
|
-
CONSOLE LOG REQUEST:
|
|
110
|
-
CONSOLE LOG
|
|
111
|
-
CONSOLE LOG
|
|
169
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
170
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
171
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
172
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
173
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
174
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
175
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
176
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
177
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
178
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
179
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
180
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
181
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
182
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
183
|
+
CONSOLE LOG ENTRY: knn graph: 77.815185546875 ms
|
|
112
184
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
113
|
-
CONSOLE LOG ENTRY: fit:
|
|
114
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric and string columns for
|
|
185
|
+
CONSOLE LOG ENTRY: fit: 2702.08203125 ms
|
|
186
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric and string columns for 4075 ms
|
|
115
187
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
116
188
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
117
189
|
CONSOLE LOG ENTRY: Running tests
|
|
118
190
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
|
|
119
191
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP Numeric column
|
|
120
192
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
193
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
121
194
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
122
195
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
123
|
-
CONSOLE LOG REQUEST:
|
|
124
|
-
CONSOLE LOG
|
|
125
|
-
CONSOLE LOG REQUEST:
|
|
126
|
-
CONSOLE LOG
|
|
127
|
-
CONSOLE LOG REQUEST:
|
|
128
|
-
CONSOLE LOG ENTRY:
|
|
196
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
197
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
198
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
199
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
200
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
201
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
202
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
203
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
204
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
205
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
206
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
207
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
208
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
209
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
210
|
+
CONSOLE LOG ENTRY: knn graph: 86.321044921875 ms
|
|
129
211
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/concepts/table.md
|
|
130
|
-
CONSOLE LOG ENTRY: fit:
|
|
131
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric column for
|
|
212
|
+
CONSOLE LOG ENTRY: fit: 2744.300048828125 ms
|
|
213
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric column for 4098 ms
|
|
132
214
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
133
215
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
134
216
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
@@ -136,17 +218,30 @@ CONSOLE LOG ENTRY: Running tests
|
|
|
136
218
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
|
|
137
219
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP String column
|
|
138
220
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
139
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/Axes-thumb.png').default%7D
|
|
140
221
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
141
222
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
142
|
-
CONSOLE LOG REQUEST:
|
|
223
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
224
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
225
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
226
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
227
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
228
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
229
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
|
|
143
230
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
144
|
-
CONSOLE LOG REQUEST:
|
|
231
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
232
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
233
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
234
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
235
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
236
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
145
237
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
|
|
146
|
-
CONSOLE LOG
|
|
238
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
|
|
239
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
240
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
241
|
+
CONSOLE LOG ENTRY: knn graph: 67.73095703125 ms
|
|
147
242
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
148
|
-
CONSOLE LOG ENTRY: fit:
|
|
149
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP String column for
|
|
243
|
+
CONSOLE LOG ENTRY: fit: 3822.155029296875 ms
|
|
244
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP String column for 5166 ms
|
|
150
245
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
151
246
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
152
247
|
CONSOLE LOG ENTRY: Running tests
|
|
@@ -158,55 +253,55 @@ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=
|
|
|
158
253
|
CONSOLE LOG ENTRY: Running tests
|
|
159
254
|
CONSOLE LOG ENTRY: Started Linear regression category
|
|
160
255
|
CONSOLE LOG ENTRY: Started Linear regression Performance: 100K samples, 100 features
|
|
161
|
-
CONSOLE LOG ENTRY: Finished Linear regression Performance: 100K samples, 100 features for
|
|
256
|
+
CONSOLE LOG ENTRY: Finished Linear regression Performance: 100K samples, 100 features for 2431 ms
|
|
162
257
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
163
258
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
164
259
|
CONSOLE LOG ENTRY: Running tests
|
|
165
260
|
CONSOLE LOG ENTRY: Started Missing values imputation category
|
|
166
261
|
CONSOLE LOG ENTRY: Started Missing values imputation Euclidean dist, 100K rows, 15 cols, 75 missing vals
|
|
167
|
-
CONSOLE LOG ENTRY: Finished Missing values imputation Euclidean dist, 100K rows, 15 cols, 75 missing vals for
|
|
262
|
+
CONSOLE LOG ENTRY: Finished Missing values imputation Euclidean dist, 100K rows, 15 cols, 75 missing vals for 6076 ms
|
|
168
263
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
169
264
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
170
265
|
CONSOLE LOG ENTRY: Running tests
|
|
171
266
|
CONSOLE LOG ENTRY: Started Missing values imputation category
|
|
172
267
|
CONSOLE LOG ENTRY: Started Missing values imputation Manhattan dist, 100K rows, 15 cols, 75 missing vals
|
|
173
|
-
CONSOLE LOG ENTRY: Finished Missing values imputation Manhattan dist, 100K rows, 15 cols, 75 missing vals for
|
|
268
|
+
CONSOLE LOG ENTRY: Finished Missing values imputation Manhattan dist, 100K rows, 15 cols, 75 missing vals for 6105 ms
|
|
174
269
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
175
270
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
176
271
|
CONSOLE LOG ENTRY: Running tests
|
|
177
272
|
CONSOLE LOG ENTRY: Started Partial least squares regression category
|
|
178
273
|
CONSOLE LOG ENTRY: Started Partial least squares regression Correctness
|
|
179
|
-
CONSOLE LOG ENTRY: Finished Partial least squares regression Correctness for
|
|
274
|
+
CONSOLE LOG ENTRY: Finished Partial least squares regression Correctness for 54 ms
|
|
180
275
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
181
276
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
182
277
|
CONSOLE LOG ENTRY: Running tests
|
|
183
278
|
CONSOLE LOG ENTRY: Started Partial least squares regression category
|
|
184
279
|
CONSOLE LOG ENTRY: Started Partial least squares regression Performance: 100K rows, 100 cols, 3 components
|
|
185
|
-
CONSOLE LOG ENTRY: Finished Partial least squares regression Performance: 100K rows, 100 cols, 3 components for
|
|
280
|
+
CONSOLE LOG ENTRY: Finished Partial least squares regression Performance: 100K rows, 100 cols, 3 components for 1562 ms
|
|
186
281
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
187
282
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
188
283
|
CONSOLE LOG ENTRY: Running tests
|
|
189
284
|
CONSOLE LOG ENTRY: Started Partial least squares regression category
|
|
190
285
|
CONSOLE LOG ENTRY: Started Partial least squares regression Predictive modeling: 100K samples, 100 features, 3 components
|
|
191
|
-
CONSOLE LOG ENTRY: Finished Partial least squares regression Predictive modeling: 100K samples, 100 features, 3 components for
|
|
286
|
+
CONSOLE LOG ENTRY: Finished Partial least squares regression Predictive modeling: 100K samples, 100 features, 3 components for 1620 ms
|
|
192
287
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
193
288
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
194
289
|
CONSOLE LOG ENTRY: Running tests
|
|
195
290
|
CONSOLE LOG ENTRY: Started Principal component analysis category
|
|
196
291
|
CONSOLE LOG ENTRY: Started Principal component analysis Correctness
|
|
197
|
-
CONSOLE LOG ENTRY: Finished Principal component analysis Correctness for
|
|
292
|
+
CONSOLE LOG ENTRY: Finished Principal component analysis Correctness for 22 ms
|
|
198
293
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
199
294
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
200
295
|
CONSOLE LOG ENTRY: Running tests
|
|
201
296
|
CONSOLE LOG ENTRY: Started Principal component analysis category
|
|
202
297
|
CONSOLE LOG ENTRY: Started Principal component analysis Performance: 100K rows, 100 cols, 3 components
|
|
203
|
-
CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 100K rows, 100 cols, 3 components for
|
|
298
|
+
CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 100K rows, 100 cols, 3 components for 4241 ms
|
|
204
299
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
205
300
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
206
301
|
CONSOLE LOG ENTRY: Running tests
|
|
207
302
|
CONSOLE LOG ENTRY: Started Principal component analysis category
|
|
208
303
|
CONSOLE LOG ENTRY: Started Principal component analysis Performance: 1K rows, 5K cols, 3 components
|
|
209
|
-
CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 1K rows, 5K cols, 3 components for
|
|
304
|
+
CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 1K rows, 5K cols, 3 components for 3751 ms
|
|
210
305
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
211
306
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
212
307
|
CONSOLE LOG ENTRY: Running tests
|
|
@@ -218,18 +313,18 @@ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=
|
|
|
218
313
|
CONSOLE LOG ENTRY: Running tests
|
|
219
314
|
CONSOLE LOG ENTRY: Started Softmax category
|
|
220
315
|
CONSOLE LOG ENTRY: Started Softmax Performance: 50K samples, 100 features
|
|
221
|
-
CONSOLE LOG ENTRY: Finished Softmax Performance: 50K samples, 100 features for
|
|
316
|
+
CONSOLE LOG ENTRY: Finished Softmax Performance: 50K samples, 100 features for 2603 ms
|
|
222
317
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
223
318
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
224
319
|
CONSOLE LOG ENTRY: Running tests
|
|
225
320
|
CONSOLE LOG ENTRY: Started XGBoost category
|
|
226
321
|
CONSOLE LOG ENTRY: Started XGBoost Correctness
|
|
227
|
-
CONSOLE LOG ENTRY: Finished XGBoost Correctness for
|
|
322
|
+
CONSOLE LOG ENTRY: Finished XGBoost Correctness for 204 ms
|
|
228
323
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
229
324
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
230
325
|
CONSOLE LOG ENTRY: Running tests
|
|
231
326
|
CONSOLE LOG ENTRY: Started XGBoost category
|
|
232
327
|
CONSOLE LOG ENTRY: Started XGBoost Performance: 50K samples, 100 features
|
|
233
|
-
CONSOLE LOG ENTRY: Finished XGBoost Performance: 50K samples, 100 features for
|
|
328
|
+
CONSOLE LOG ENTRY: Finished XGBoost Performance: 50K samples, 100 features for 1919 ms
|
|
234
329
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
235
330
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
package/test-record-1.mp4
CHANGED
|
Binary file
|