@datagrok/eda 1.3.2 → 1.3.3

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@datagrok/eda",
3
3
  "friendlyName": "EDA",
4
- "version": "1.3.2",
4
+ "version": "1.3.3",
5
5
  "description": "Exploratory Data Analysis Tools",
6
6
  "dependencies": {
7
7
  "@datagrok-libraries/math": "^1.2.4",
@@ -7,7 +7,7 @@ import * as DG from 'datagrok-api/dg';
7
7
  import {PLS_ANALYSIS, ERROR_MSG, TITLE, HINT, LINK, COMPONENTS, INT, TIMEOUT,
8
8
  RESULT_NAMES, WASM_OUTPUT_IDX, RADIUS, LINE_WIDTH, COLOR, X_COORD, Y_COORD,
9
9
  DEMO_INTRO_MD, DEMO_RESULTS_MD, DEMO_RESULTS} from './pls-constants';
10
- import {checkWasmDimensionReducerInputs, checkColumnType, checkMissingVals} from '../utils';
10
+ import {checkWasmDimensionReducerInputs, checkColumnType, checkMissingVals, describeElements} from '../utils';
11
11
  import {_partialLeastSquareRegressionInWebWorker} from '../../wasm/EDAAPI';
12
12
  import {carsDataframe} from '../data-generators';
13
13
 
@@ -168,8 +168,6 @@ async function performMVA(input: PlsInput, analysisType: PLS_ANALYSIS): Promise<
168
168
  help: LINK.MODEL,
169
169
  }));
170
170
 
171
- console.log(input.names?.name);
172
-
173
171
  if ((input.names !== undefined) && (input.names !== null))
174
172
  predictVsReferScatter.setOptions({labelColumnNames: [input.names?.name]});
175
173
 
@@ -275,18 +273,14 @@ async function performMVA(input: PlsInput, analysisType: PLS_ANALYSIS): Promise<
275
273
  }));
276
274
 
277
275
  // emphasize viewers in the demo case
278
- if (analysisType === PLS_ANALYSIS.DEMO) {
279
- const pages = [predictVsReferScatter, scoresScatter, loadingsScatter, regrCoeffsBar, explVarsBar]
280
- .map((viewer, idx) => {
281
- return {
282
- text: DEMO_RESULTS[idx].text,
283
- showNextTo: viewer.root,
284
- };
285
- });
286
-
287
- const wizard = ui.hints.addTextHint({title: TITLE.EXPLORE, pages: pages});
288
- wizard.helpUrl = LINK.MVA;
276
+ if (analysisType === PLS_ANALYSIS.DEMO) {
289
277
  grok.shell.windows.help.showHelp(ui.markdown(DEMO_RESULTS_MD));
278
+
279
+ describeElements(
280
+ [predictVsReferScatter, scoresScatter, loadingsScatter, regrCoeffsBar, explVarsBar].map((v) => v.root),
281
+ DEMO_RESULTS.map((info) => `<b>${info.caption}</b>\n\n${info.text}`),
282
+ ['left', 'left', 'right', 'right', 'left'],
283
+ );
290
284
  }
291
285
  } // performMVA
292
286
 
@@ -400,8 +394,6 @@ export async function runMVA(analysisType: PLS_ANALYSIS): Promise<void> {
400
394
  .addButton(TITLE.RUN, async () => {
401
395
  dlg.close();
402
396
 
403
- console.log(names);
404
-
405
397
  await performMVA({
406
398
  table: table,
407
399
  features: DG.DataFrame.fromColumns(features).columns,
package/src/utils.ts CHANGED
@@ -27,7 +27,7 @@ const UNSUPPORTED_COLUMN_TYPE_MES = 'unsupported column type: ';
27
27
  const INCORRECT_MIN_DIST_MES = 'min distance must be positive.';
28
28
  const INCORRECT_SPREAD_MES = 'spread must be positive.';
29
29
  const INCORRECT_EPOCH_MES = 'number of epoch must be at least 1.';
30
- const INCORRECT_NEIBORS_MES = 'number of neibors must be at least 2 and not greater than samples count.';
30
+ const INCORRECT_NEIBORS_MES = 'number of neighbors must be at least 2 and not greater than samples count.';
31
31
  const INCORRECT_ITERATIONS_MES = 'number of iterations must be at least 1.';
32
32
  const INCORRECT_LEARNING_RATE_MES = 'learning rate must be positive.';
33
33
  const INCORRECT_PERPLEXITY_MES = 'perplexity must be at least 2 and not greater than samples count.';
@@ -244,7 +244,7 @@ function scaleDf(df: DG.DataFrame): DG.DataFrame {
244
244
  return df;
245
245
  }
246
246
 
247
- /** Return standartized dataframe */
247
+ /** Return standardized dataframe */
248
248
  export function centerScaleDataFrame(df: DG.DataFrame, toCenter: boolean, toScale: boolean): DG.DataFrame {
249
249
  if (toCenter) {
250
250
  if (toScale)
@@ -270,3 +270,49 @@ export function extractNonConstantColsDf(features: DG.ColumnList): DG.DataFrame
270
270
 
271
271
  return DG.DataFrame.fromColumns(cols);
272
272
  }
273
+
274
+ /** Describe viewers and return the Done button */
275
+ export function describeElements(roots: HTMLElement[], description: string[], position: string[]): HTMLButtonElement {
276
+ if (roots.length !== description.length)
277
+ throw new Error('Non-equal size of viewer roots and descriptions');
278
+
279
+ let idx = 0;
280
+ let closeIcn: HTMLElement;
281
+ let msg: HTMLDivElement;
282
+ let popup: HTMLDivElement;
283
+
284
+ const nextBtn = ui.button('next', () => {
285
+ popup.remove();
286
+ ++idx;
287
+ step();
288
+ }, 'Go to the next viewer');
289
+
290
+ const prevBtn = ui.button('prev', () => {
291
+ idx -= 1;
292
+ popup.remove();
293
+ step();
294
+ }, 'Go to the previous viewer');
295
+
296
+ const doneBtn = ui.button('done', () => popup.remove(), 'Go to the next step');
297
+
298
+ const btnsDiv = ui.divH([prevBtn, nextBtn, doneBtn]);
299
+ btnsDiv.style.marginLeft = 'auto';
300
+ btnsDiv.style.marginRight = '0px';
301
+
302
+ const step = () => {
303
+ if (idx < roots.length) {
304
+ msg = ui.divV([ui.markdown(description[idx]), btnsDiv]);
305
+ popup = ui.hints.addHint(roots[idx], msg, position[idx] as ui.hints.POSITION);
306
+ doneBtn.hidden = (idx < roots.length - 1);
307
+ nextBtn.hidden = (idx === roots.length - 1);
308
+ prevBtn.hidden = (idx < 1);
309
+
310
+ closeIcn = popup.querySelector('i') as HTMLElement;
311
+ closeIcn.onclick = () => doneBtn.click();
312
+ }
313
+ };
314
+
315
+ step();
316
+
317
+ return doneBtn;
318
+ }
@@ -1,25 +1,24 @@
1
- CONSOLE LOG REQUEST: 200, https://community.datagrok.ai/javascripts/embed-topics.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
1
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.3.X-0359aba3/LyPECoXHrfvuGCKoS7S0jChfzxT1XPCI/1/wasm/EDA.js
2
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.3.X-0359aba3/LyPECoXHrfvuGCKoS7S0jChfzxT1XPCI/1/wasm/XGBoostAPI.js
3
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.3.X-0359aba3/LyPECoXHrfvuGCKoS7S0jChfzxT1XPCI/1/dist/package.js
5
4
  CONSOLE LOG ENTRY: Wasm not Loaded, Loading
6
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.2.X-f88df2aa/hZcASFI3IscXOSIdzCyG3B8YzK9uLOGt/1/wasm/EDA.wasm
5
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.3.X-0359aba3/LyPECoXHrfvuGCKoS7S0jChfzxT1XPCI/1/wasm/EDA.wasm
7
6
  CONSOLE LOG ENTRY: XGBoost not Loaded, Loading
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
7
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.3.X-0359aba3/LyPECoXHrfvuGCKoS7S0jChfzxT1XPCI/1/wasm/XGBoostAPI.wasm
8
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.3.3.X-0359aba3/LyPECoXHrfvuGCKoS7S0jChfzxT1XPCI/1/dist/package-test.js
9
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/funcs?text=package.id%2520%253D%2520%252224e24a80-e920-11ef-ae27-e1679817df64%2522
11
10
  CONSOLE LOG ENTRY: Running tests
12
11
  CONSOLE LOG ENTRY: Started ANOVA category
13
12
  CONSOLE LOG ENTRY: Started ANOVA Correctness
14
13
  CONSOLE LOG ENTRY: Finished ANOVA Correctness for 3 ms
15
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
16
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
14
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
15
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
17
16
  CONSOLE LOG ENTRY: Running tests
18
17
  CONSOLE LOG ENTRY: Started ANOVA category
19
18
  CONSOLE LOG ENTRY: Started ANOVA Performance: 1M rows demog
20
- CONSOLE LOG ENTRY: Finished ANOVA Performance: 1M rows demog for 1836 ms
21
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
22
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
19
+ CONSOLE LOG ENTRY: Finished ANOVA Performance: 1M rows demog for 1882 ms
20
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
21
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
23
22
  CONSOLE LOG ENTRY: Running tests
24
23
  CONSOLE LOG ENTRY: Started Demo category
25
24
  CONSOLE LOG ENTRY: Started Demo MVA demo
@@ -32,74 +31,74 @@ CONSOLE LOG REQUEST: 200, http://localhost:8080/images/ribbon/ribbon_sprite.svg
32
31
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/explore/multivariate-analysis/pls.md
33
32
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/explore/multivariate-analysis/pls-thumb.png
34
33
  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
34
+ CONSOLE LOG ENTRY: Finished Demo MVA demo for 2414 ms
35
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
37
36
  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
37
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
39
38
  CONSOLE LOG ENTRY: Running tests
40
39
  CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE category
41
40
  CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE All demog columns
42
41
  CONSOLE LOG REQUEST: 200, http://localhost:8080/images/entities/view_layout.svg
43
42
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
43
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
44
44
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
45
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
46
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
45
47
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
46
48
  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
48
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
49
- CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
50
49
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
51
50
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
52
51
  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
52
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
55
53
  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)
54
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
58
55
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
59
56
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
57
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
58
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
60
59
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
61
60
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
62
61
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
63
62
  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
63
+ CONSOLE LOG ENTRY: distances to matrix: 16.06201171875 ms
65
64
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
66
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE All demog columns for 1423 ms
67
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
65
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE All demog columns for 1427 ms
66
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
68
67
  CONSOLE LOG REQUEST: 200, http://localhost:8080/images/entities/table.svg
69
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
68
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
70
69
  CONSOLE LOG ENTRY: Running tests
71
70
  CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE category
72
71
  CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE Numeric and string columns
73
72
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
74
73
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
75
74
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
76
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
77
75
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
78
76
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
77
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
79
78
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
80
79
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
81
80
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
82
81
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
82
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
83
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
83
84
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
84
85
  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
86
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
87
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
88
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
90
89
  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
90
+ CONSOLE LOG ENTRY: distances to matrix: 17.56396484375 ms
92
91
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
93
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric and string columns for 1182 ms
94
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
95
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
92
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric and string columns for 1130 ms
93
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
94
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
96
95
  CONSOLE LOG ENTRY: Running tests
97
96
  CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE category
98
97
  CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE Numeric column
99
98
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
99
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
100
100
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
101
101
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
102
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
103
102
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
104
103
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
105
104
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
@@ -108,25 +107,25 @@ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatt
108
107
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
109
108
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
110
109
  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
110
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
114
111
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
115
112
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
116
113
  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
114
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
115
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
116
+ CONSOLE LOG ENTRY: distances to matrix: 20.976806640625 ms
118
117
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/concepts/table.md
119
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric column for 1132 ms
120
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
118
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric column for 1182 ms
119
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
121
120
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
122
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
121
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
123
122
  CONSOLE LOG ENTRY: Running tests
124
123
  CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE category
125
124
  CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE String column
126
125
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
126
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
127
127
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
128
128
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
129
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
130
129
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
131
130
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
132
131
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
@@ -135,112 +134,109 @@ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatt
135
134
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
136
135
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
137
136
  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
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
140
139
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
141
140
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
142
141
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
143
142
  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
143
+ CONSOLE LOG ENTRY: distances to matrix: 17.588134765625 ms
145
144
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
146
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE String column for 1150 ms
147
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
148
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
145
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE String column for 1101 ms
146
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
147
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
149
148
  CONSOLE LOG ENTRY: Running tests
150
149
  CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
151
150
  CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP All demog columns
152
151
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
153
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
154
152
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
155
153
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
156
154
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
157
155
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
158
156
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
159
157
  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
158
  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
159
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
160
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
161
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
164
162
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
163
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
165
164
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
166
165
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
167
166
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
168
167
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
169
168
  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
169
+ CONSOLE LOG ENTRY: knn graph: 44.19091796875 ms
171
170
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
172
- CONSOLE LOG ENTRY: fit: 2828.19580078125 ms
173
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP All demog columns for 4099 ms
174
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
175
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
171
+ CONSOLE LOG ENTRY: fit: 2812.60498046875 ms
172
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP All demog columns for 4125 ms
173
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
174
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
176
175
  CONSOLE LOG ENTRY: Running tests
177
176
  CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
178
177
  CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP Numeric and string columns
179
178
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
179
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
180
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
180
181
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
181
182
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
182
183
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
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
184
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
186
185
  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
186
  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
187
  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
188
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
189
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
190
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
191
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
194
192
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
195
193
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
196
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
197
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
198
194
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
199
195
  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
196
+ CONSOLE LOG ENTRY: knn graph: 96.05810546875 ms
201
197
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
202
- CONSOLE LOG ENTRY: fit: 2740.97412109375 ms
203
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric and string columns for 4190 ms
204
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
205
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
198
+ CONSOLE LOG ENTRY: fit: 2798.921875 ms
199
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric and string columns for 4148 ms
200
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
201
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
206
202
  CONSOLE LOG ENTRY: Running tests
207
203
  CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
208
204
  CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP Numeric column
209
205
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
210
206
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
211
207
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
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
208
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
215
209
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
210
+ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
211
+ CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
216
212
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
217
213
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
218
214
  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
215
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
221
216
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
222
217
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
223
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
224
220
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
225
221
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
226
222
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
227
223
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
228
224
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
229
225
  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
226
+ CONSOLE LOG ENTRY: knn graph: 50.6259765625 ms
231
227
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/concepts/table.md
232
- CONSOLE LOG ENTRY: fit: 2715.050048828125 ms
233
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric column for 4064 ms
234
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
228
+ CONSOLE LOG ENTRY: fit: 2706.4208984375 ms
229
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric column for 4036 ms
230
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
235
231
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
236
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
232
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
237
233
  CONSOLE LOG ENTRY: Running tests
238
234
  CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
239
235
  CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP String column
240
236
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
241
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
242
237
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
243
238
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
239
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
244
240
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
245
241
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
246
242
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
@@ -255,93 +251,93 @@ CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/scatt
255
251
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
256
252
  CONSOLE LOG REQUEST: 404, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
257
253
  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
254
+ CONSOLE LOG ENTRY: knn graph: 48.23583984375 ms
259
255
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
260
- CONSOLE LOG ENTRY: fit: 3896.5390625 ms
261
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP String column for 5321 ms
262
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
263
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
256
+ CONSOLE LOG ENTRY: fit: 3965.4599609375 ms
257
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP String column for 5223 ms
258
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
259
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
264
260
  CONSOLE LOG ENTRY: Running tests
265
261
  CONSOLE LOG ENTRY: Started Linear regression category
266
262
  CONSOLE LOG ENTRY: Started Linear regression Correctness
267
- CONSOLE LOG ENTRY: Finished Linear regression Correctness for 5 ms
268
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
269
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
263
+ CONSOLE LOG ENTRY: Finished Linear regression Correctness for 4 ms
264
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
265
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
270
266
  CONSOLE LOG ENTRY: Running tests
271
267
  CONSOLE LOG ENTRY: Started Linear regression category
272
268
  CONSOLE LOG ENTRY: Started Linear regression Performance: 100K samples, 100 features
273
- CONSOLE LOG ENTRY: Finished Linear regression Performance: 100K samples, 100 features for 2476 ms
274
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
275
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
269
+ CONSOLE LOG ENTRY: Finished Linear regression Performance: 100K samples, 100 features for 2379 ms
270
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
271
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
276
272
  CONSOLE LOG ENTRY: Running tests
277
273
  CONSOLE LOG ENTRY: Started Missing values imputation category
278
274
  CONSOLE LOG ENTRY: Started Missing values imputation Euclidean dist, 100K rows, 15 cols, 75 missing vals
279
- CONSOLE LOG ENTRY: Finished Missing values imputation Euclidean dist, 100K rows, 15 cols, 75 missing vals for 6008 ms
280
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
281
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
275
+ CONSOLE LOG ENTRY: Finished Missing values imputation Euclidean dist, 100K rows, 15 cols, 75 missing vals for 5916 ms
276
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
277
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
282
278
  CONSOLE LOG ENTRY: Running tests
283
279
  CONSOLE LOG ENTRY: Started Missing values imputation category
284
280
  CONSOLE LOG ENTRY: Started Missing values imputation Manhattan dist, 100K rows, 15 cols, 75 missing vals
285
- CONSOLE LOG ENTRY: Finished Missing values imputation Manhattan dist, 100K rows, 15 cols, 75 missing vals for 5993 ms
286
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
287
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
281
+ CONSOLE LOG ENTRY: Finished Missing values imputation Manhattan dist, 100K rows, 15 cols, 75 missing vals for 5905 ms
282
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
283
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
288
284
  CONSOLE LOG ENTRY: Running tests
289
285
  CONSOLE LOG ENTRY: Started Partial least squares regression category
290
286
  CONSOLE LOG ENTRY: Started Partial least squares regression Correctness
291
- CONSOLE LOG ENTRY: Finished Partial least squares regression Correctness for 39 ms
292
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
293
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
287
+ CONSOLE LOG ENTRY: Finished Partial least squares regression Correctness for 40 ms
288
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
289
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
294
290
  CONSOLE LOG ENTRY: Running tests
295
291
  CONSOLE LOG ENTRY: Started Partial least squares regression category
296
292
  CONSOLE LOG ENTRY: Started Partial least squares regression Performance: 100K rows, 100 cols, 3 components
297
- CONSOLE LOG ENTRY: Finished Partial least squares regression Performance: 100K rows, 100 cols, 3 components for 1592 ms
298
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
299
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
293
+ CONSOLE LOG ENTRY: Finished Partial least squares regression Performance: 100K rows, 100 cols, 3 components for 1630 ms
294
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
295
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
300
296
  CONSOLE LOG ENTRY: Running tests
301
297
  CONSOLE LOG ENTRY: Started Partial least squares regression category
302
298
  CONSOLE LOG ENTRY: Started Partial least squares regression Predictive modeling: 100K samples, 100 features, 3 components
303
- CONSOLE LOG ENTRY: Finished Partial least squares regression Predictive modeling: 100K samples, 100 features, 3 components for 1728 ms
304
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
305
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
299
+ CONSOLE LOG ENTRY: Finished Partial least squares regression Predictive modeling: 100K samples, 100 features, 3 components for 1769 ms
300
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
301
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
306
302
  CONSOLE LOG ENTRY: Running tests
307
303
  CONSOLE LOG ENTRY: Started Principal component analysis category
308
304
  CONSOLE LOG ENTRY: Started Principal component analysis Correctness
309
305
  CONSOLE LOG ENTRY: Finished Principal component analysis Correctness for 19 ms
310
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
311
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
306
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
307
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
312
308
  CONSOLE LOG ENTRY: Running tests
313
309
  CONSOLE LOG ENTRY: Started Principal component analysis category
314
310
  CONSOLE LOG ENTRY: Started Principal component analysis Performance: 100K rows, 100 cols, 3 components
315
- CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 100K rows, 100 cols, 3 components for 3926 ms
316
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
317
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
311
+ CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 100K rows, 100 cols, 3 components for 3929 ms
312
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
313
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
318
314
  CONSOLE LOG ENTRY: Running tests
319
315
  CONSOLE LOG ENTRY: Started Principal component analysis category
320
316
  CONSOLE LOG ENTRY: Started Principal component analysis Performance: 1K rows, 5K cols, 3 components
321
- CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 1K rows, 5K cols, 3 components for 3779 ms
322
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
323
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
317
+ CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 1K rows, 5K cols, 3 components for 3821 ms
318
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
319
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
324
320
  CONSOLE LOG ENTRY: Running tests
325
321
  CONSOLE LOG ENTRY: Started Softmax category
326
322
  CONSOLE LOG ENTRY: Started Softmax Correctness
327
- CONSOLE LOG ENTRY: Finished Softmax Correctness for 7 ms
328
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
329
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
323
+ CONSOLE LOG ENTRY: Finished Softmax Correctness for 9 ms
324
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
325
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
330
326
  CONSOLE LOG ENTRY: Running tests
331
327
  CONSOLE LOG ENTRY: Started Softmax category
332
328
  CONSOLE LOG ENTRY: Started Softmax Performance: 50K samples, 100 features
333
- CONSOLE LOG ENTRY: Finished Softmax Performance: 50K samples, 100 features for 2558 ms
334
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
335
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
329
+ CONSOLE LOG ENTRY: Finished Softmax Performance: 50K samples, 100 features for 2593 ms
330
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
331
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
336
332
  CONSOLE LOG ENTRY: Running tests
337
333
  CONSOLE LOG ENTRY: Started XGBoost category
338
334
  CONSOLE LOG ENTRY: Started XGBoost Correctness
339
335
  CONSOLE LOG ENTRY: Finished XGBoost Correctness for 198 ms
340
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
341
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
336
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
337
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
342
338
  CONSOLE LOG ENTRY: Running tests
343
339
  CONSOLE LOG ENTRY: Started XGBoost category
344
340
  CONSOLE LOG ENTRY: Started XGBoost Performance: 50K samples, 100 features
345
- CONSOLE LOG ENTRY: Finished XGBoost Performance: 50K samples, 100 features for 1863 ms
346
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
347
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false
341
+ CONSOLE LOG ENTRY: Finished XGBoost Performance: 50K samples, 100 features for 1840 ms
342
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
343
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
package/test-record-1.mp4 CHANGED
Binary file