@datagrok/eda 1.3.0 → 1.3.2
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/CHANGELOG.md +8 -0
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +4 -3
- package/src/package.ts +16 -26
- package/test-console-output-1.log +182 -70
- 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.2",
|
|
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.1",
|
|
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';
|
|
@@ -194,7 +194,7 @@ export async function reduceDimensionality(): Promise<void> {
|
|
|
194
194
|
export function GetMCLEditor(call: DG.FuncCall): void {
|
|
195
195
|
try {
|
|
196
196
|
const funcEditor = new MCLEditor();
|
|
197
|
-
ui.dialog('Markov clustering')
|
|
197
|
+
const dialog = ui.dialog('Markov clustering')
|
|
198
198
|
.add(funcEditor.getEditor())
|
|
199
199
|
.onOK(async () => {
|
|
200
200
|
const params = funcEditor.params;
|
|
@@ -205,6 +205,7 @@ export function GetMCLEditor(call: DG.FuncCall): void {
|
|
|
205
205
|
useWebGPU: params.useWebGPU, inflate: params.inflateFactor, minClusterSize: params.minClusterSize,
|
|
206
206
|
}).call(true);
|
|
207
207
|
}).show();
|
|
208
|
+
dialog.history(() => ({editorSettings: funcEditor.getStringInput()}), (x: any) => funcEditor.applyStringInput(x['editorSettings']));
|
|
208
209
|
} catch (err: any) {
|
|
209
210
|
const errMsg = err instanceof Error ? err.message : err.toString();
|
|
210
211
|
const errStack = err instanceof Error ? err.stack : undefined;
|
|
@@ -215,7 +216,7 @@ export function GetMCLEditor(call: DG.FuncCall): void {
|
|
|
215
216
|
|
|
216
217
|
|
|
217
218
|
//top-menu: ML | Cluster | MCL...
|
|
218
|
-
//name:
|
|
219
|
+
//name: MCLClustering
|
|
219
220
|
//description: Markov clustering (MCL) is an unsupervised clustering algorithm for graphs based on simulation of stochastic flow.
|
|
220
221
|
//input: dataframe df
|
|
221
222
|
//input: list<column> cols
|
|
@@ -230,11 +231,11 @@ export function GetMCLEditor(call: DG.FuncCall): void {
|
|
|
230
231
|
//input: double inflate = 2
|
|
231
232
|
//input: int minClusterSize = 5
|
|
232
233
|
//editor: EDA: GetMCLEditor
|
|
233
|
-
export async function
|
|
234
|
+
export async function MCLClustering(df: DG.DataFrame, cols: DG.Column[], metrics: KnownMetrics[],
|
|
234
235
|
weights: number[], aggregationMethod: DistanceAggregationMethod, preprocessingFuncs: (DG.Func | null | undefined)[],
|
|
235
236
|
preprocessingFuncArgs: any[], threshold: number = 80, maxIterations: number = 10, useWebGPU: boolean = false, inflate: number = 0,
|
|
236
237
|
minClusterSize: number = 5,
|
|
237
|
-
): Promise<
|
|
238
|
+
): Promise<MCLViewer> {
|
|
238
239
|
const tv = grok.shell.tableView(df.name) ?? grok.shell.addTableView(df);
|
|
239
240
|
const serializedOptions: string = JSON.stringify({
|
|
240
241
|
cols: cols.map((col) => col.name),
|
|
@@ -249,29 +250,18 @@ export async function MCL(df: DG.DataFrame, cols: DG.Column[], metrics: KnownMet
|
|
|
249
250
|
inflate: inflate,
|
|
250
251
|
minClusterSize: minClusterSize ?? 5,
|
|
251
252
|
} satisfies MCLSerializableOptions);
|
|
252
|
-
df.setTag(MCL_OPTIONS_TAG, serializedOptions);
|
|
253
|
+
//df.setTag(MCL_OPTIONS_TAG, serializedOptions);
|
|
253
254
|
|
|
254
|
-
const
|
|
255
|
-
return
|
|
255
|
+
const viewer = tv.addViewer('MCL', {mclProps: serializedOptions}) as MCLViewer;
|
|
256
|
+
return viewer;
|
|
256
257
|
}
|
|
257
258
|
|
|
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;
|
|
259
|
+
//name: MCL
|
|
260
|
+
//description: Markov clustering viewer
|
|
261
|
+
//tags: viewer
|
|
262
|
+
//output: viewer result
|
|
263
|
+
export function markovClusteringViewer(): MCLViewer {
|
|
264
|
+
return new MCLViewer();
|
|
275
265
|
}
|
|
276
266
|
|
|
277
267
|
//name: PLS
|
|
@@ -1,15 +1,13 @@
|
|
|
1
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/proxy
|
|
2
1
|
CONSOLE LOG REQUEST: 200, https://community.datagrok.ai/javascripts/embed-topics.js
|
|
3
|
-
CONSOLE LOG
|
|
4
|
-
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.
|
|
6
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.0.X-89e958dd/xFkztr3gQPWtrHq96zjktPOwq2zAuwo7/1/dist/package.js
|
|
2
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.2.X-f88df2aa/hZcASFI3IscXOSIdzCyG3B8YzK9uLOGt/1/wasm/EDA.js
|
|
3
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.2.X-f88df2aa/hZcASFI3IscXOSIdzCyG3B8YzK9uLOGt/1/wasm/XGBoostAPI.js
|
|
4
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.2.X-f88df2aa/hZcASFI3IscXOSIdzCyG3B8YzK9uLOGt/1/dist/package.js
|
|
7
5
|
CONSOLE LOG ENTRY: Wasm not Loaded, Loading
|
|
8
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.
|
|
6
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.2.X-f88df2aa/hZcASFI3IscXOSIdzCyG3B8YzK9uLOGt/1/wasm/EDA.wasm
|
|
9
7
|
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%
|
|
8
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.2.X-f88df2aa/hZcASFI3IscXOSIdzCyG3B8YzK9uLOGt/1/wasm/XGBoostAPI.wasm
|
|
9
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.2.X-f88df2aa/hZcASFI3IscXOSIdzCyG3B8YzK9uLOGt/1/dist/package-test.js
|
|
10
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/funcs?text=package.id%2520%253D%2520%2522e102b070-c210-11ef-9ce4-05b1baad0e05%2522
|
|
13
11
|
CONSOLE LOG ENTRY: Running tests
|
|
14
12
|
CONSOLE LOG ENTRY: Started ANOVA category
|
|
15
13
|
CONSOLE LOG ENTRY: Started ANOVA Correctness
|
|
@@ -19,54 +17,106 @@ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=
|
|
|
19
17
|
CONSOLE LOG ENTRY: Running tests
|
|
20
18
|
CONSOLE LOG ENTRY: Started ANOVA category
|
|
21
19
|
CONSOLE LOG ENTRY: Started ANOVA Performance: 1M rows demog
|
|
22
|
-
CONSOLE LOG ENTRY: Finished ANOVA Performance: 1M rows demog for
|
|
20
|
+
CONSOLE LOG ENTRY: Finished ANOVA Performance: 1M rows demog for 1836 ms
|
|
23
21
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
24
22
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
25
23
|
CONSOLE LOG ENTRY: Running tests
|
|
24
|
+
CONSOLE LOG ENTRY: Started Demo category
|
|
25
|
+
CONSOLE LOG ENTRY: Started Demo MVA demo
|
|
26
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/connectors/connections?text&include=shares.connection&file=true&order=name
|
|
27
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/projects?text=%2523demo
|
|
28
|
+
CONSOLE LOG ENTRY: Wasm Loaded, Passing
|
|
29
|
+
CONSOLE LOG ENTRY: XGBoost Loaded, Passing
|
|
30
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/images/viewers/viewers_sprite.png
|
|
31
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/images/ribbon/ribbon_sprite.svg
|
|
32
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/explore/multivariate-analysis/pls.md
|
|
33
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/explore/multivariate-analysis/pls-thumb.png
|
|
34
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/explore/multivariate-analysis/pls_vs_pca.png
|
|
35
|
+
CONSOLE LOG ENTRY: Finished Demo MVA demo for 2416 ms
|
|
36
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
37
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
38
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
39
|
+
CONSOLE LOG ENTRY: Running tests
|
|
26
40
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE category
|
|
27
41
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE All demog columns
|
|
28
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/images/viewers/viewers_sprite.png
|
|
29
42
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/images/entities/view_layout.svg
|
|
30
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/images/ribbon/ribbon_sprite.svg
|
|
31
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/images/entities/table.svg
|
|
32
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/font/Roboto-Italic.woff2
|
|
33
43
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
34
|
-
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
35
44
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
36
|
-
CONSOLE LOG
|
|
37
|
-
CONSOLE LOG REQUEST:
|
|
45
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
46
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
47
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
38
48
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
39
|
-
CONSOLE LOG REQUEST:
|
|
49
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
50
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
51
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
52
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
53
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
|
|
54
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
55
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
56
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
57
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
58
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
59
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
40
60
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
|
|
41
|
-
CONSOLE LOG
|
|
61
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
|
|
62
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
63
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
64
|
+
CONSOLE LOG ENTRY: distances to matrix: 18.046875 ms
|
|
42
65
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
43
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE All demog columns for
|
|
66
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE All demog columns for 1423 ms
|
|
44
67
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
68
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/images/entities/table.svg
|
|
45
69
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
46
70
|
CONSOLE LOG ENTRY: Running tests
|
|
47
71
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE category
|
|
48
72
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE Numeric and string columns
|
|
49
73
|
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
74
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
53
75
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
54
|
-
CONSOLE LOG
|
|
76
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
77
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
78
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
79
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
80
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
81
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
82
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
83
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
84
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
85
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
86
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
87
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
88
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
89
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
90
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
91
|
+
CONSOLE LOG ENTRY: distances to matrix: 15.6318359375 ms
|
|
55
92
|
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
|
|
93
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric and string columns for 1182 ms
|
|
57
94
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
58
95
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
59
96
|
CONSOLE LOG ENTRY: Running tests
|
|
60
97
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE category
|
|
61
98
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE Numeric column
|
|
62
99
|
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
100
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
66
101
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
67
|
-
CONSOLE LOG
|
|
102
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
103
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
104
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
105
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
106
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
107
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
108
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
109
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
110
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
111
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
112
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
113
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
114
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
115
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
116
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
117
|
+
CONSOLE LOG ENTRY: distances to matrix: 22.576904296875 ms
|
|
68
118
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/concepts/table.md
|
|
69
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric column for
|
|
119
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric column for 1132 ms
|
|
70
120
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
71
121
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
72
122
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
@@ -74,13 +124,26 @@ CONSOLE LOG ENTRY: Running tests
|
|
|
74
124
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE category
|
|
75
125
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE String column
|
|
76
126
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
127
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
128
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
77
129
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
78
|
-
CONSOLE LOG REQUEST:
|
|
130
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
79
131
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
80
|
-
CONSOLE LOG REQUEST: 404, http://localhost:8080/
|
|
81
|
-
CONSOLE LOG ENTRY:
|
|
132
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
133
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
134
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
135
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
136
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
137
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
138
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
139
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
140
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
141
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
142
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
143
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
144
|
+
CONSOLE LOG ENTRY: distances to matrix: 18.860107421875 ms
|
|
82
145
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
83
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE String column for
|
|
146
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE String column for 1150 ms
|
|
84
147
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
85
148
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
86
149
|
CONSOLE LOG ENTRY: Running tests
|
|
@@ -88,30 +151,56 @@ CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
|
|
|
88
151
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP All demog columns
|
|
89
152
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
90
153
|
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
154
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
93
155
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
94
|
-
CONSOLE LOG
|
|
156
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
157
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
158
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
159
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
160
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
161
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
162
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
163
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
164
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
165
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
166
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
167
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
168
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
169
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
170
|
+
CONSOLE LOG ENTRY: knn graph: 55.761962890625 ms
|
|
95
171
|
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
|
|
172
|
+
CONSOLE LOG ENTRY: fit: 2828.19580078125 ms
|
|
173
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP All demog columns for 4099 ms
|
|
98
174
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
99
175
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
100
176
|
CONSOLE LOG ENTRY: Running tests
|
|
101
177
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
|
|
102
178
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP Numeric and string columns
|
|
103
179
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
104
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/
|
|
180
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
105
181
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
106
182
|
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:
|
|
183
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
184
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
185
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
186
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
187
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
188
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
189
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
|
|
190
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
191
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
192
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
193
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
194
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
195
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
110
196
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
|
|
111
|
-
CONSOLE LOG
|
|
197
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
|
|
198
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
199
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
200
|
+
CONSOLE LOG ENTRY: knn graph: 108.945068359375 ms
|
|
112
201
|
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
|
|
202
|
+
CONSOLE LOG ENTRY: fit: 2740.97412109375 ms
|
|
203
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric and string columns for 4190 ms
|
|
115
204
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
116
205
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
117
206
|
CONSOLE LOG ENTRY: Running tests
|
|
@@ -120,15 +209,28 @@ CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP Numeric column
|
|
|
120
209
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
121
210
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
122
211
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
123
|
-
CONSOLE LOG REQUEST:
|
|
124
|
-
CONSOLE LOG
|
|
212
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
213
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
214
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
215
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
125
216
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
126
|
-
CONSOLE LOG REQUEST:
|
|
217
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
218
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
219
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
|
|
220
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
221
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
222
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
223
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
224
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
225
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
127
226
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
|
|
128
|
-
CONSOLE LOG
|
|
227
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
|
|
228
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
229
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
230
|
+
CONSOLE LOG ENTRY: knn graph: 54.216064453125 ms
|
|
129
231
|
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
|
|
232
|
+
CONSOLE LOG ENTRY: fit: 2715.050048828125 ms
|
|
233
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric column for 4064 ms
|
|
132
234
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
133
235
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
134
236
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
@@ -136,59 +238,69 @@ CONSOLE LOG ENTRY: Running tests
|
|
|
136
238
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
|
|
137
239
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP String column
|
|
138
240
|
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/
|
|
241
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
140
242
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
141
243
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
142
|
-
CONSOLE LOG REQUEST:
|
|
143
|
-
CONSOLE LOG
|
|
144
|
-
CONSOLE LOG REQUEST:
|
|
145
|
-
CONSOLE LOG
|
|
146
|
-
CONSOLE LOG
|
|
244
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
245
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
246
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
247
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
248
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
249
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
250
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
|
|
251
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
252
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
253
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
254
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
|
|
255
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
256
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
257
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
258
|
+
CONSOLE LOG ENTRY: knn graph: 77.401123046875 ms
|
|
147
259
|
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
|
|
260
|
+
CONSOLE LOG ENTRY: fit: 3896.5390625 ms
|
|
261
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP String column for 5321 ms
|
|
150
262
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
151
263
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
152
264
|
CONSOLE LOG ENTRY: Running tests
|
|
153
265
|
CONSOLE LOG ENTRY: Started Linear regression category
|
|
154
266
|
CONSOLE LOG ENTRY: Started Linear regression Correctness
|
|
155
|
-
CONSOLE LOG ENTRY: Finished Linear regression Correctness for
|
|
267
|
+
CONSOLE LOG ENTRY: Finished Linear regression Correctness for 5 ms
|
|
156
268
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
157
269
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
158
270
|
CONSOLE LOG ENTRY: Running tests
|
|
159
271
|
CONSOLE LOG ENTRY: Started Linear regression category
|
|
160
272
|
CONSOLE LOG ENTRY: Started Linear regression Performance: 100K samples, 100 features
|
|
161
|
-
CONSOLE LOG ENTRY: Finished Linear regression Performance: 100K samples, 100 features for
|
|
273
|
+
CONSOLE LOG ENTRY: Finished Linear regression Performance: 100K samples, 100 features for 2476 ms
|
|
162
274
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
163
275
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
164
276
|
CONSOLE LOG ENTRY: Running tests
|
|
165
277
|
CONSOLE LOG ENTRY: Started Missing values imputation category
|
|
166
278
|
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
|
|
279
|
+
CONSOLE LOG ENTRY: Finished Missing values imputation Euclidean dist, 100K rows, 15 cols, 75 missing vals for 6008 ms
|
|
168
280
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
169
281
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
170
282
|
CONSOLE LOG ENTRY: Running tests
|
|
171
283
|
CONSOLE LOG ENTRY: Started Missing values imputation category
|
|
172
284
|
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
|
|
285
|
+
CONSOLE LOG ENTRY: Finished Missing values imputation Manhattan dist, 100K rows, 15 cols, 75 missing vals for 5993 ms
|
|
174
286
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
175
287
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
176
288
|
CONSOLE LOG ENTRY: Running tests
|
|
177
289
|
CONSOLE LOG ENTRY: Started Partial least squares regression category
|
|
178
290
|
CONSOLE LOG ENTRY: Started Partial least squares regression Correctness
|
|
179
|
-
CONSOLE LOG ENTRY: Finished Partial least squares regression Correctness for
|
|
291
|
+
CONSOLE LOG ENTRY: Finished Partial least squares regression Correctness for 39 ms
|
|
180
292
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
181
293
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
182
294
|
CONSOLE LOG ENTRY: Running tests
|
|
183
295
|
CONSOLE LOG ENTRY: Started Partial least squares regression category
|
|
184
296
|
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
|
|
297
|
+
CONSOLE LOG ENTRY: Finished Partial least squares regression Performance: 100K rows, 100 cols, 3 components for 1592 ms
|
|
186
298
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
187
299
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
188
300
|
CONSOLE LOG ENTRY: Running tests
|
|
189
301
|
CONSOLE LOG ENTRY: Started Partial least squares regression category
|
|
190
302
|
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
|
|
303
|
+
CONSOLE LOG ENTRY: Finished Partial least squares regression Predictive modeling: 100K samples, 100 features, 3 components for 1728 ms
|
|
192
304
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
193
305
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
194
306
|
CONSOLE LOG ENTRY: Running tests
|
|
@@ -200,36 +312,36 @@ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=
|
|
|
200
312
|
CONSOLE LOG ENTRY: Running tests
|
|
201
313
|
CONSOLE LOG ENTRY: Started Principal component analysis category
|
|
202
314
|
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
|
|
315
|
+
CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 100K rows, 100 cols, 3 components for 3926 ms
|
|
204
316
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
205
317
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
206
318
|
CONSOLE LOG ENTRY: Running tests
|
|
207
319
|
CONSOLE LOG ENTRY: Started Principal component analysis category
|
|
208
320
|
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
|
|
321
|
+
CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 1K rows, 5K cols, 3 components for 3779 ms
|
|
210
322
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
211
323
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
212
324
|
CONSOLE LOG ENTRY: Running tests
|
|
213
325
|
CONSOLE LOG ENTRY: Started Softmax category
|
|
214
326
|
CONSOLE LOG ENTRY: Started Softmax Correctness
|
|
215
|
-
CONSOLE LOG ENTRY: Finished Softmax Correctness for
|
|
327
|
+
CONSOLE LOG ENTRY: Finished Softmax Correctness for 7 ms
|
|
216
328
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
217
329
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
218
330
|
CONSOLE LOG ENTRY: Running tests
|
|
219
331
|
CONSOLE LOG ENTRY: Started Softmax category
|
|
220
332
|
CONSOLE LOG ENTRY: Started Softmax Performance: 50K samples, 100 features
|
|
221
|
-
CONSOLE LOG ENTRY: Finished Softmax Performance: 50K samples, 100 features for
|
|
333
|
+
CONSOLE LOG ENTRY: Finished Softmax Performance: 50K samples, 100 features for 2558 ms
|
|
222
334
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
223
335
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
224
336
|
CONSOLE LOG ENTRY: Running tests
|
|
225
337
|
CONSOLE LOG ENTRY: Started XGBoost category
|
|
226
338
|
CONSOLE LOG ENTRY: Started XGBoost Correctness
|
|
227
|
-
CONSOLE LOG ENTRY: Finished XGBoost Correctness for
|
|
339
|
+
CONSOLE LOG ENTRY: Finished XGBoost Correctness for 198 ms
|
|
228
340
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
229
341
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
230
342
|
CONSOLE LOG ENTRY: Running tests
|
|
231
343
|
CONSOLE LOG ENTRY: Started XGBoost category
|
|
232
344
|
CONSOLE LOG ENTRY: Started XGBoost Performance: 50K samples, 100 features
|
|
233
|
-
CONSOLE LOG ENTRY: Finished XGBoost Performance: 50K samples, 100 features for
|
|
345
|
+
CONSOLE LOG ENTRY: Finished XGBoost Performance: 50K samples, 100 features for 1863 ms
|
|
234
346
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
|
235
347
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
|
package/test-record-1.mp4
CHANGED
|
Binary file
|