@datagrok/eda 1.4.5 → 1.4.7

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.4.5",
4
+ "version": "1.4.7",
5
5
  "description": "Exploratory Data Analysis Tools",
6
6
  "dependencies": {
7
7
  "@datagrok-libraries/math": "^1.2.6",
@@ -11,7 +11,7 @@
11
11
  "@keckelt/tsne": "^1.0.2",
12
12
  "@webgpu/types": "^0.1.40",
13
13
  "cash-dom": "^8.1.1",
14
- "datagrok-api": "^1.26.0",
14
+ "datagrok-api": "^1.26.3",
15
15
  "dayjs": "^1.11.9",
16
16
  "jstat": "^1.9.6",
17
17
  "source-map-loader": "^4.0.1",
@@ -26,7 +26,7 @@
26
26
  "@typescript-eslint/eslint-plugin": "^5.32.0",
27
27
  "@typescript-eslint/parser": "^5.32.0",
28
28
  "css-loader": "^7.1.2",
29
- "datagrok-tools": "^4.14.48",
29
+ "datagrok-tools": "^4.14.55",
30
30
  "eslint": "^8.21.0",
31
31
  "eslint-config-google": "^0.14.0",
32
32
  "style-loader": "^4.0.0",
@@ -27,31 +27,36 @@ enum DEFAULT {
27
27
  };
28
28
 
29
29
  /** Add one-way ANOVA results */
30
- function addVizualization(df: DG.DataFrame, factorsName: string, featuresName: string, report: OneWayAnovaReport) {
30
+ function addVizualization(df: DG.DataFrame, factorsName: string, featuresName: string, report: OneWayAnovaReport): void {
31
+ const view = grok.shell.getTableView(df.name);
32
+ grok.shell.v = view;
33
+
31
34
  const test = report.anovaTable.fStat > report.fCritical;
32
-
33
35
  const shortConclusion = test ?
34
36
  `"${factorsName}" affects the "${featuresName}"` :
35
37
  `"${factorsName}" doesn't affect the "${featuresName}"`;
36
38
 
37
- const view = grok.shell.getTableView(df.name);
38
- const boxPlot = DG.Viewer.boxPlot(df, {
39
+ const chart = DG.Viewer.boxPlot(df, {
39
40
  categoryColumnNames: [factorsName],
40
41
  valueColumnName: featuresName,
41
42
  showPValue: false,
42
43
  showStatistics: false,
43
44
  description: shortConclusion,
44
45
  showColorSelector: false,
46
+ autoLayout: false,
45
47
  });
46
- const boxPlotNode = view.dockManager.dock(boxPlot.root, DG.DOCK_TYPE.RIGHT, null, 'ANOVA');
47
48
 
48
- const hypoMd = ui.markdown(`**H0:** the "${factorsName}"
49
- factor does not produce a significant difference in the "${featuresName}" feature.`);
50
- ui.tooltip.bind(hypoMd, 'Null hypothesis');
49
+ let node = view.dockManager.dock(chart, DG.DOCK_TYPE.RIGHT, null, 'ANOVA');
51
50
 
52
- const testMd = ui.markdown(`**Test result:** ${test ?
53
- 'means differ significantly.' :
54
- 'means do not differ significantly.'}`,
51
+ const nullHypoMd = ui.markdown(`**Null Hypothesis:** all group means are equal.`);
52
+ ui.tooltip.bind(nullHypoMd, `The "${factorsName}" factor does not produce a significant difference in the "${featuresName}" feature.`);
53
+
54
+ const altHypoMd = ui.markdown(`**Alternative Hypothesis:** at least one group mean differs significantly.`);
55
+ ui.tooltip.bind(altHypoMd, `The "${factorsName}" factor produces a significant difference in the "${featuresName}" feature.`);
56
+
57
+ const testMd = ui.markdown(`**Conclusion:** ${test ?
58
+ 'significant differences exist between groups.' :
59
+ 'no significant differences detected.'}`,
55
60
  );
56
61
 
57
62
  const tooltipDiv = test ?
@@ -69,20 +74,30 @@ function addVizualization(df: DG.DataFrame, factorsName: string, featuresName: s
69
74
  ui.tooltip.bind(testMd, () => tooltipDiv);
70
75
 
71
76
  const divResult = ui.divV([
72
- hypoMd,
77
+ nullHypoMd,
78
+ altHypoMd,
73
79
  testMd,
74
80
  ui.link('Learn more',
75
81
  () => window.open('https://en.wikipedia.org/wiki/F-test', '_blank'),
76
- 'Click to open in a new tab',
82
+ 'Click to open in a new tab.',
77
83
  ),
78
84
  ]);
79
85
  divResult.style.marginLeft = '20px';
80
86
 
81
- const hypoNode = grok.shell.dockManager.dock(divResult, DG.DOCK_TYPE.DOWN, boxPlotNode, 'F-test', 0.3);
87
+ const reportViewer = getAnovaGrid(report);
88
+ const tabControl = ui.tabControl({
89
+ 'Analysis': ui.panel([reportViewer.root]),
90
+ 'F-test': ui.panel([divResult]),
91
+ });
82
92
 
83
- const reportViewer = getAnovaGrid(report);
84
- grok.shell.dockManager.dock(reportViewer.root, DG.DOCK_TYPE.FILL, hypoNode, 'Analysis');
85
- }
93
+ ui.tooltip.bind(tabControl.getPane('Analysis').header, 'ANOVA results summary.');
94
+ ui.tooltip.bind(tabControl.getPane('F-test').header, 'Null hypothesis testing.');
95
+
96
+
97
+ view.dockManager.dock(tabControl.root, DG.DOCK_TYPE.DOWN, node, '', 0.25);
98
+
99
+ reportViewer.root.style.width = '100%';
100
+ } // addVizualization
86
101
 
87
102
  /** Create dataframe with one-way ANOVA results. */
88
103
  function getAnovaGrid(report: OneWayAnovaReport): DG.Grid {
@@ -99,13 +114,13 @@ function getAnovaGrid(report: OneWayAnovaReport): DG.Grid {
99
114
  ]));
100
115
 
101
116
  const tooltip = new Map([
102
- ['Source of variance', 'List of the explored variation sources'],
103
- ['SS', 'Sum of squares (SS)'],
104
- ['DF', 'Degrees of freedom (DF)'],
105
- ['MS', 'Mean square (MS)'],
106
- ['F', 'F-statistics (F)'],
107
- ['F-critical', `${report.significance}-critical value of F-statistics (F)`],
108
- ['p-value', `Probability to obtain F-statistics (F) greater than the actual observation.`],
117
+ ['Source of variance', 'List of the explored variation sources.'],
118
+ ['SS', 'Sum of squares (SS). Measure of total variation in the data.'],
119
+ ['DF', 'Degrees of freedom (DF). Number of independent values that can vary.'],
120
+ ['MS', 'Mean square (MS). Sum of squares divided by degrees of freedom.'],
121
+ ['F', 'F-statistics (F). Ratio of between-group to within-group variance.'],
122
+ ['F-critical', `${report.significance}-critical value of F-statistics.`],
123
+ ['p-value', `Probability of observing this result if groups have equal means.`],
109
124
  ]);
110
125
 
111
126
  grid.onCellTooltip(function(cell, x, y) {
@@ -8,6 +8,10 @@ import * as DG from 'datagrok-api/dg';
8
8
 
9
9
 
10
10
  export namespace funcs {
11
+ export async function info(): Promise<void> {
12
+ return await grok.functions.call('EDA:Info', {});
13
+ }
14
+
11
15
  export async function init(): Promise<void> {
12
16
  return await grok.functions.call('EDA:Init', {});
13
17
  }
package/src/package.g.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import {PackageFunctions} from './package';
2
2
  import * as DG from 'datagrok-api/dg';
3
3
 
4
+ //name: info
4
5
  export function info() : void {
5
6
  PackageFunctions.info();
6
7
  }
@@ -15,8 +16,8 @@ export async function init() : Promise<void> {
15
16
  //input: dataframe df
16
17
  //input: column xCol { type: numerical }
17
18
  //input: column yCol { type: numerical }
18
- //input: double epsilon { caption: Epsilon; default: 0.02; description: The maximum distance between two samples for them to be considered as in the same neighborhood. }
19
- //input: int minPts { caption: Minimum points; default: 4; description: The number of samples (or total weight) in a neighborhood for a point to be considered as a core point. }
19
+ //input: double epsilon = 0.02 { caption: Epsilon; description: The maximum distance between two samples for them to be considered as in the same neighborhood. }
20
+ //input: int minPts = 4 { caption: Minimum points; description: The number of samples (or total weight) in a neighborhood for a point to be considered as a core point. }
20
21
  //output: column result
21
22
  //top-menu: ML | Cluster | DBSCAN...
22
23
  export async function dbScan(df: DG.DataFrame, xCol: DG.Column, yCol: DG.Column, epsilon: number, minPts: number) : Promise<any> {
@@ -26,9 +27,9 @@ export async function dbScan(df: DG.DataFrame, xCol: DG.Column, yCol: DG.Column,
26
27
  //description: Principal component analysis (PCA)
27
28
  //input: dataframe table { caption: Table }
28
29
  //input: column_list features { type: numerical; nullable: false }
29
- //input: int components { showPlusMinus: true; caption: Components; nullable: false; min: 1; default: 2; description: Number of components. }
30
- //input: bool center { caption: Center; default: false; description: Indicating whether the variables should be shifted to be zero centered. }
31
- //input: bool scale { caption: Scale; default: false; description: Indicating whether the variables should be scaled to have unit variance. }
30
+ //input: int components = 2 { showPlusMinus: true; caption: Components; nullable: false; min: 1; description: Number of components. }
31
+ //input: bool center = false { caption: Center; description: Indicating whether the variables should be shifted to be zero centered. }
32
+ //input: bool scale = false { caption: Scale; description: Indicating whether the variables should be scaled to have unit variance. }
32
33
  //top-menu: ML | Analyze | PCA...
33
34
  //help-url: /help/explore/dim-reduction#pca
34
35
  export async function PCA(table: DG.DataFrame, features: DG.ColumnList, components: number, center: boolean, scale: boolean) : Promise<void> {
@@ -39,8 +40,8 @@ export async function PCA(table: DG.DataFrame, features: DG.ColumnList, componen
39
40
  //tags: dim-red-postprocessing-function
40
41
  //input: column col1
41
42
  //input: column col2
42
- //input: double epsilon { default: 0.01; description: Minimum distance between two points to be considered as in the same neighborhood. }
43
- //input: int minimumPoints { default: 5; description: Minimum number of points to form a dense region. }
43
+ //input: double epsilon = 0.01 { description: Minimum distance between two points to be considered as in the same neighborhood. }
44
+ //input: int minimumPoints = 5 { description: Minimum number of points to form a dense region. }
44
45
  //meta.defaultPostProcessingFunction: true
45
46
  export async function dbscanPostProcessingFunction(col1: DG.Column, col2: DG.Column, epsilon: number, minimumPoints: number) : Promise<void> {
46
47
  await PackageFunctions.dbscanPostProcessingFunction(col1, col2, epsilon, minimumPoints);
@@ -88,11 +89,11 @@ export function GetMCLEditor(call: DG.FuncCall) : void {
88
89
  //input: string aggregationMethod
89
90
  //input: list<func> preprocessingFuncs
90
91
  //input: object preprocessingFuncArgs
91
- //input: int threshold { default: 80 }
92
- //input: int maxIterations { default: 10 }
93
- //input: bool useWebGPU { default: false }
94
- //input: double inflate { default: 2 }
95
- //input: int minClusterSize { default: 5 }
92
+ //input: int threshold = 80
93
+ //input: int maxIterations = 10
94
+ //input: bool useWebGPU = false
95
+ //input: double inflate = 2
96
+ //input: int minClusterSize = 5
96
97
  //top-menu: ML | Cluster | MCL...
97
98
  //editor: EDA:GetMCLEditor
98
99
  export async function MCLClustering(df: DG.DataFrame, cols: DG.Column[], metrics: any, weights: number[], aggregationMethod: any, preprocessingFuncs: any[], preprocessingFuncArgs: any[], threshold: number, maxIterations: number, useWebGPU: boolean, inflate: number, minClusterSize: number) : Promise<any> {
@@ -111,7 +112,7 @@ export function markovClusteringViewer() : any {
111
112
  //input: dataframe table
112
113
  //input: column_list features { type: numerical }
113
114
  //input: column predict { type: numerical }
114
- //input: int components { default: 3 }
115
+ //input: int components = 3
115
116
  //input: column names { type: string }
116
117
  //output: object plsResults
117
118
  export async function PLS(table: DG.DataFrame, features: DG.ColumnList, predict: DG.Column, components: number, names: DG.Column) : Promise<any> {
@@ -140,7 +141,7 @@ export async function demoMultivariateAnalysis() : Promise<void> {
140
141
 
141
142
  //input: dataframe df
142
143
  //input: column predictColumn
143
- //input: double gamma { category: Hyperparameters; default: 1.0 }
144
+ //input: double gamma = 1.0 { category: Hyperparameters }
144
145
  //output: dynamic result
145
146
  //meta.mlname: linear kernel LS-SVM
146
147
  //meta.mlrole: train
@@ -188,8 +189,8 @@ export async function visualizeLinearKernelSVM(df: DG.DataFrame, targetColumn: D
188
189
 
189
190
  //input: dataframe df
190
191
  //input: column predictColumn
191
- //input: double gamma { category: Hyperparameters; default: 1.0 }
192
- //input: double sigma { category: Hyperparameters; default: 1.5 }
192
+ //input: double gamma = 1.0 { category: Hyperparameters }
193
+ //input: double sigma = 1.5 { category: Hyperparameters }
193
194
  //output: dynamic result
194
195
  //meta.mlname: RBF-kernel LS-SVM
195
196
  //meta.mlrole: train
@@ -237,9 +238,9 @@ export async function visualizeRBFkernelSVM(df: DG.DataFrame, targetColumn: DG.C
237
238
 
238
239
  //input: dataframe df
239
240
  //input: column predictColumn
240
- //input: double gamma { category: Hyperparameters; default: 1.0 }
241
- //input: double c { category: Hyperparameters; default: 1 }
242
- //input: double d { category: Hyperparameters; default: 2 }
241
+ //input: double gamma = 1.0 { category: Hyperparameters }
242
+ //input: double c = 1 { category: Hyperparameters }
243
+ //input: double d = 2 { category: Hyperparameters }
243
244
  //output: dynamic result
244
245
  //meta.mlname: polynomial kernel LS-SVM
245
246
  //meta.mlrole: train
@@ -287,9 +288,9 @@ export async function visualizePolynomialKernelSVM(df: DG.DataFrame, targetColum
287
288
 
288
289
  //input: dataframe df
289
290
  //input: column predictColumn
290
- //input: double gamma { category: Hyperparameters; default: 1.0 }
291
- //input: double kappa { category: Hyperparameters; default: 1 }
292
- //input: double theta { category: Hyperparameters; default: 1 }
291
+ //input: double gamma = 1.0 { category: Hyperparameters }
292
+ //input: double kappa = 1 { category: Hyperparameters }
293
+ //input: double theta = 1 { category: Hyperparameters }
293
294
  //output: dynamic result
294
295
  //meta.mlname: sigmoid kernel LS-SVM
295
296
  //meta.mlrole: train
@@ -394,10 +395,10 @@ export function isInteractiveLinearRegression(df: DG.DataFrame, predictColumn: D
394
395
 
395
396
  //input: dataframe df
396
397
  //input: column predictColumn
397
- //input: double rate { category: Hyperparameters; default: 1.0; min: 0.001; max: 20; description: Learning rate. }
398
- //input: double iterations { category: Hyperparameters; default: 100; min: 1; max: 10000; step: 10; description: Fitting iterations count }
399
- //input: double penalty { category: Hyperparameters; default: 0.1; min: 0.0001; max: 1; description: Regularization rate. }
400
- //input: double tolerance { category: Hyperparameters; default: 0.001; min: 0.00001; max: 0.1; description: Fitting tolerance. }
398
+ //input: double rate = 1.0 { category: Hyperparameters; min: 0.001; max: 20; description: Learning rate. }
399
+ //input: double iterations = 100 { category: Hyperparameters; min: 1; max: 10000; step: 10; description: Fitting iterations count }
400
+ //input: double penalty = 0.1 { category: Hyperparameters; min: 0.0001; max: 1; description: Regularization rate. }
401
+ //input: double tolerance = 0.001 { category: Hyperparameters; min: 0.00001; max: 0.1; description: Fitting tolerance. }
401
402
  //output: dynamic model
402
403
  //meta.mlname: Softmax
403
404
  //meta.mlrole: train
@@ -434,7 +435,7 @@ export function isInteractiveSoftmax(df: DG.DataFrame, predictColumn: DG.Column)
434
435
 
435
436
  //input: dataframe df
436
437
  //input: column predictColumn
437
- //input: int components { min: 1; max: 10; default: 3; description: Number of latent components. }
438
+ //input: int components = 3 { min: 1; max: 10; description: Number of latent components. }
438
439
  //output: dynamic model
439
440
  //meta.mlname: PLS Regression
440
441
  //meta.mlrole: train
@@ -482,11 +483,11 @@ export function isInteractivePLSRegression(df: DG.DataFrame, predictColumn: DG.C
482
483
 
483
484
  //input: dataframe df
484
485
  //input: column predictColumn
485
- //input: int iterations { min: 1; max: 100; default: 20; description: Number of training iterations. }
486
- //input: double eta { caption: Rate; min: 0; max: 1; default: 0.3; description: Learning rate. }
487
- //input: int maxDepth { min: 0; max: 20; default: 6; description: Maximum depth of a tree. }
488
- //input: double lambda { min: 0; max: 100; default: 1; description: L2 regularization term. }
489
- //input: double alpha { min: 0; max: 100; default: 0; description: L1 regularization term. }
486
+ //input: int iterations = 20 { min: 1; max: 100; description: Number of training iterations. }
487
+ //input: double eta = 0.3 { caption: Rate; min: 0; max: 1; description: Learning rate. }
488
+ //input: int maxDepth = 6 { min: 0; max: 20; description: Maximum depth of a tree. }
489
+ //input: double lambda = 1 { min: 0; max: 100; description: L2 regularization term. }
490
+ //input: double alpha = 0 { min: 0; max: 100; description: L1 regularization term. }
490
491
  //output: dynamic model
491
492
  //meta.mlname: XGBoost
492
493
  //meta.mlrole: train
package/src/package.ts CHANGED
@@ -65,8 +65,8 @@ export class PackageFunctions {
65
65
  })
66
66
  static async dbScan(
67
67
  df: DG.DataFrame,
68
- @grok.decorators.param({'options':{'type':'numerical'}}) xCol: DG.Column,
69
- @grok.decorators.param({'options':{'type':'numerical'}}) yCol: DG.Column,
68
+ @grok.decorators.param({type: 'column', 'options':{'type':'numerical'}}) xCol: DG.Column,
69
+ @grok.decorators.param({type: 'column', 'options':{'type':'numerical'}}) yCol: DG.Column,
70
70
  @grok.decorators.param({'options':{'caption':'Epsilon','initialValue':'0.02', description: 'The maximum distance between two samples for them to be considered as in the same neighborhood.'}}) epsilon: number,
71
71
  @grok.decorators.param({'type':'int','options':{'caption':'Minimum points','initialValue':'4', description: 'The number of samples (or total weight) in a neighborhood for a point to be considered as a core point.'}}) minPts: number) : Promise<DG.Column> {
72
72
 
@@ -1,21 +1,21 @@
1
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.5.X-3524a0e7/FxRzUM7IJmHPV7ULDfMFc4gmNgGApTmR/1/wasm/EDA.js
2
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.5.X-3524a0e7/FxRzUM7IJmHPV7ULDfMFc4gmNgGApTmR/1/wasm/XGBoostAPI.js
3
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.5.X-3524a0e7/FxRzUM7IJmHPV7ULDfMFc4gmNgGApTmR/1/dist/package.js
1
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.7.X-723eccb3/wO25ixw7dw02HgGyhNQjqVNtNdKQRGuO/1/wasm/EDA.js
2
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.7.X-723eccb3/wO25ixw7dw02HgGyhNQjqVNtNdKQRGuO/1/wasm/XGBoostAPI.js
3
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.7.X-723eccb3/wO25ixw7dw02HgGyhNQjqVNtNdKQRGuO/1/dist/package.js
4
4
  CONSOLE LOG ENTRY: Wasm not Loaded, Loading
5
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.5.X-3524a0e7/FxRzUM7IJmHPV7ULDfMFc4gmNgGApTmR/1/wasm/EDA.wasm
5
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.7.X-723eccb3/wO25ixw7dw02HgGyhNQjqVNtNdKQRGuO/1/wasm/EDA.wasm
6
6
  CONSOLE LOG ENTRY: XGBoost not Loaded, Loading
7
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.5.X-3524a0e7/FxRzUM7IJmHPV7ULDfMFc4gmNgGApTmR/1/wasm/XGBoostAPI.wasm
8
7
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
9
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.5.X-3524a0e7/FxRzUM7IJmHPV7ULDfMFc4gmNgGApTmR/1/dist/package-test.js
8
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.7.X-723eccb3/wO25ixw7dw02HgGyhNQjqVNtNdKQRGuO/1/wasm/XGBoostAPI.wasm
10
9
  CONSOLE LOG REQUEST: 200, http://localhost:8080/font/Roboto-LightItalic.woff2
10
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.7.X-723eccb3/wO25ixw7dw02HgGyhNQjqVNtNdKQRGuO/1/dist/package-test.js
11
11
  CONSOLE LOG ENTRY: --------------------
12
- CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/funcs?text=package.id%2520%253D%2520%2522629aa670-8560-11f0-d2c1-61a0f94fc5b9%2522
12
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/funcs?text=package.id%2520%253D%2520%252238f093e0-8560-11f0-ce08-275572d9391c%2522
13
13
  CONSOLE LOG ENTRY: Running tests
14
14
  CONSOLE LOG ENTRY: JSHandle@object
15
15
  CONSOLE LOG ENTRY: Started ANOVA category
16
16
  CONSOLE LOG ENTRY: O false
17
17
  CONSOLE LOG ENTRY: Started ANOVA Correctness
18
- CONSOLE LOG ENTRY: Finished ANOVA Correctness for 2 ms
18
+ CONSOLE LOG ENTRY: Finished ANOVA Correctness for 3 ms
19
19
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
20
20
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
21
21
  CONSOLE LOG ENTRY: --------------------
@@ -24,7 +24,7 @@ CONSOLE LOG ENTRY: JSHandle@object
24
24
  CONSOLE LOG ENTRY: Started ANOVA category
25
25
  CONSOLE LOG ENTRY: O false
26
26
  CONSOLE LOG ENTRY: Started ANOVA Performance: 1M rows demog
27
- CONSOLE LOG ENTRY: Finished ANOVA Performance: 1M rows demog for 2001 ms
27
+ CONSOLE LOG ENTRY: Finished ANOVA Performance: 1M rows demog for 2035 ms
28
28
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
29
29
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
30
30
  CONSOLE LOG ENTRY: --------------------
@@ -38,19 +38,19 @@ CONSOLE LOG REQUEST: 200, http://localhost:8080/images/entities/view_layout.svg
38
38
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
39
39
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
40
40
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
41
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
41
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
42
42
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
43
43
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
44
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
44
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
45
45
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
46
46
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
47
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
48
47
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
48
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
49
49
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
50
50
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
51
51
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
52
- CONSOLE LOG ENTRY: distances to matrix: 25.033203125 ms
53
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE All demog columns for 1553 ms
52
+ CONSOLE LOG ENTRY: distances to matrix: 20.450927734375 ms
53
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE All demog columns for 1534 ms
54
54
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
55
55
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
56
56
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
@@ -64,8 +64,8 @@ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-p
64
64
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
65
65
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
66
66
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
67
- CONSOLE LOG ENTRY: distances to matrix: 29.00390625 ms
68
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric and string columns for 1491 ms
67
+ CONSOLE LOG ENTRY: distances to matrix: 19.659912109375 ms
68
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric and string columns for 1402 ms
69
69
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
70
70
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
71
71
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
@@ -76,11 +76,11 @@ CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE category
76
76
  CONSOLE LOG ENTRY: O false
77
77
  CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE Numeric column
78
78
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
79
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
79
80
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
80
81
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
81
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
82
- CONSOLE LOG ENTRY: distances to matrix: 21.156982421875 ms
83
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric column for 1246 ms
82
+ CONSOLE LOG ENTRY: distances to matrix: 15.5830078125 ms
83
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric column for 1134 ms
84
84
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
85
85
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
86
86
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
@@ -94,8 +94,8 @@ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-p
94
94
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
95
95
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
96
96
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
97
- CONSOLE LOG ENTRY: distances to matrix: 16.5380859375 ms
98
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE String column for 1120 ms
97
+ CONSOLE LOG ENTRY: distances to matrix: 28.386962890625 ms
98
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE String column for 1209 ms
99
99
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
100
100
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
101
101
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
@@ -109,11 +109,11 @@ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-p
109
109
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
110
110
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
111
111
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
112
- CONSOLE LOG ENTRY: knn graph: 59.18505859375 ms
112
+ CONSOLE LOG ENTRY: knn graph: 50.181884765625 ms
113
113
  CONSOLE LOG REQUEST: 200, http://localhost:8080/font/Roboto-Italic.woff2
114
114
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/concepts/table.md
115
- CONSOLE LOG ENTRY: fit: 3652.87890625 ms
116
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP All demog columns for 5097 ms
115
+ CONSOLE LOG ENTRY: fit: 3682.201171875 ms
116
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP All demog columns for 5096 ms
117
117
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
118
118
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
119
119
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
@@ -125,22 +125,12 @@ CONSOLE LOG ENTRY: O false
125
125
  CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP Numeric and string columns
126
126
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
127
127
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
128
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
129
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
130
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
131
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
132
128
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
133
129
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
134
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
135
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
136
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
137
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
138
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
139
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
140
- CONSOLE LOG ENTRY: knn graph: 54.3291015625 ms
130
+ CONSOLE LOG ENTRY: knn graph: 48.4140625 ms
141
131
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/concepts/table.md
142
- CONSOLE LOG ENTRY: fit: 2694.490966796875 ms
143
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric and string columns for 4091 ms
132
+ CONSOLE LOG ENTRY: fit: 2666.730224609375 ms
133
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric and string columns for 4036 ms
144
134
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
145
135
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
146
136
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
@@ -151,23 +141,13 @@ CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
151
141
  CONSOLE LOG ENTRY: O false
152
142
  CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP Numeric column
153
143
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
154
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
155
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
156
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
157
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
158
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
159
144
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
160
145
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
161
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
162
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
163
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
164
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
165
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
166
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
167
- CONSOLE LOG ENTRY: knn graph: 34.409912109375 ms
146
+ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
147
+ CONSOLE LOG ENTRY: knn graph: 31.18408203125 ms
168
148
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/concepts/table.md
169
- CONSOLE LOG ENTRY: fit: 2722.31298828125 ms
170
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric column for 4105 ms
149
+ CONSOLE LOG ENTRY: fit: 2748.368896484375 ms
150
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric column for 4095 ms
171
151
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
172
152
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
173
153
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
@@ -181,20 +161,10 @@ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-p
181
161
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
182
162
  CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
183
163
  CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
184
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
185
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
186
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
187
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
188
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/group-tooltip-thumb.png
189
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
190
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-jitter-thumb.png
191
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
192
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
193
- CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
194
- CONSOLE LOG ENTRY: knn graph: 52.10791015625 ms
164
+ CONSOLE LOG ENTRY: knn graph: 53.784912109375 ms
195
165
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/concepts/table.md
196
- CONSOLE LOG ENTRY: fit: 3832.740966796875 ms
197
- CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP String column for 5394 ms
166
+ CONSOLE LOG ENTRY: fit: 3869.615966796875 ms
167
+ CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP String column for 5480 ms
198
168
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
199
169
  CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
200
170
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
@@ -213,7 +183,7 @@ CONSOLE LOG ENTRY: JSHandle@object
213
183
  CONSOLE LOG ENTRY: Started Linear regression category
214
184
  CONSOLE LOG ENTRY: O false
215
185
  CONSOLE LOG ENTRY: Started Linear regression Performance: 100K samples, 100 features
216
- CONSOLE LOG ENTRY: Finished Linear regression Performance: 100K samples, 100 features for 2302 ms
186
+ CONSOLE LOG ENTRY: Finished Linear regression Performance: 100K samples, 100 features for 2533 ms
217
187
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
218
188
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
219
189
  CONSOLE LOG ENTRY: --------------------
@@ -222,7 +192,7 @@ CONSOLE LOG ENTRY: JSHandle@object
222
192
  CONSOLE LOG ENTRY: Started Missing values imputation category
223
193
  CONSOLE LOG ENTRY: O false
224
194
  CONSOLE LOG ENTRY: Started Missing values imputation Euclidean dist, 100K rows, 15 cols, 75 missing vals
225
- CONSOLE LOG ENTRY: Finished Missing values imputation Euclidean dist, 100K rows, 15 cols, 75 missing vals for 5953 ms
195
+ CONSOLE LOG ENTRY: Finished Missing values imputation Euclidean dist, 100K rows, 15 cols, 75 missing vals for 5969 ms
226
196
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
227
197
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
228
198
  CONSOLE LOG ENTRY: --------------------
@@ -231,7 +201,7 @@ CONSOLE LOG ENTRY: JSHandle@object
231
201
  CONSOLE LOG ENTRY: Started Missing values imputation category
232
202
  CONSOLE LOG ENTRY: O false
233
203
  CONSOLE LOG ENTRY: Started Missing values imputation Manhattan dist, 100K rows, 15 cols, 75 missing vals
234
- CONSOLE LOG ENTRY: Finished Missing values imputation Manhattan dist, 100K rows, 15 cols, 75 missing vals for 5800 ms
204
+ CONSOLE LOG ENTRY: Finished Missing values imputation Manhattan dist, 100K rows, 15 cols, 75 missing vals for 5882 ms
235
205
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
236
206
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
237
207
  CONSOLE LOG ENTRY: --------------------
@@ -249,7 +219,7 @@ CONSOLE LOG ENTRY: JSHandle@object
249
219
  CONSOLE LOG ENTRY: Started Partial least squares regression category
250
220
  CONSOLE LOG ENTRY: O false
251
221
  CONSOLE LOG ENTRY: Started Partial least squares regression Performance: 100K rows, 100 cols, 3 components
252
- CONSOLE LOG ENTRY: Finished Partial least squares regression Performance: 100K rows, 100 cols, 3 components for 1591 ms
222
+ CONSOLE LOG ENTRY: Finished Partial least squares regression Performance: 100K rows, 100 cols, 3 components for 1804 ms
253
223
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
254
224
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
255
225
  CONSOLE LOG ENTRY: --------------------
@@ -258,7 +228,7 @@ CONSOLE LOG ENTRY: JSHandle@object
258
228
  CONSOLE LOG ENTRY: Started Partial least squares regression category
259
229
  CONSOLE LOG ENTRY: O false
260
230
  CONSOLE LOG ENTRY: Started Partial least squares regression Predictive modeling: 100K samples, 100 features, 3 components
261
- CONSOLE LOG ENTRY: Finished Partial least squares regression Predictive modeling: 100K samples, 100 features, 3 components for 1587 ms
231
+ CONSOLE LOG ENTRY: Finished Partial least squares regression Predictive modeling: 100K samples, 100 features, 3 components for 1678 ms
262
232
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
263
233
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
264
234
  CONSOLE LOG ENTRY: --------------------
@@ -267,7 +237,7 @@ CONSOLE LOG ENTRY: JSHandle@object
267
237
  CONSOLE LOG ENTRY: Started Principal component analysis category
268
238
  CONSOLE LOG ENTRY: O false
269
239
  CONSOLE LOG ENTRY: Started Principal component analysis Correctness
270
- CONSOLE LOG ENTRY: Finished Principal component analysis Correctness for 19 ms
240
+ CONSOLE LOG ENTRY: Finished Principal component analysis Correctness for 20 ms
271
241
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
272
242
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
273
243
  CONSOLE LOG ENTRY: --------------------
@@ -276,7 +246,7 @@ CONSOLE LOG ENTRY: JSHandle@object
276
246
  CONSOLE LOG ENTRY: Started Principal component analysis category
277
247
  CONSOLE LOG ENTRY: O false
278
248
  CONSOLE LOG ENTRY: Started Principal component analysis Performance: 100K rows, 100 cols, 3 components
279
- CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 100K rows, 100 cols, 3 components for 3592 ms
249
+ CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 100K rows, 100 cols, 3 components for 3786 ms
280
250
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
281
251
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
282
252
  CONSOLE LOG ENTRY: --------------------
@@ -285,7 +255,7 @@ CONSOLE LOG ENTRY: JSHandle@object
285
255
  CONSOLE LOG ENTRY: Started Principal component analysis category
286
256
  CONSOLE LOG ENTRY: O false
287
257
  CONSOLE LOG ENTRY: Started Principal component analysis Performance: 1K rows, 5K cols, 3 components
288
- CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 1K rows, 5K cols, 3 components for 3505 ms
258
+ CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 1K rows, 5K cols, 3 components for 3473 ms
289
259
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
290
260
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
291
261
  CONSOLE LOG ENTRY: --------------------
@@ -294,7 +264,7 @@ CONSOLE LOG ENTRY: JSHandle@object
294
264
  CONSOLE LOG ENTRY: Started Softmax category
295
265
  CONSOLE LOG ENTRY: O false
296
266
  CONSOLE LOG ENTRY: Started Softmax Correctness
297
- CONSOLE LOG ENTRY: Finished Softmax Correctness for 7 ms
267
+ CONSOLE LOG ENTRY: Finished Softmax Correctness for 8 ms
298
268
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
299
269
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
300
270
  CONSOLE LOG ENTRY: --------------------
@@ -303,7 +273,7 @@ CONSOLE LOG ENTRY: JSHandle@object
303
273
  CONSOLE LOG ENTRY: Started Softmax category
304
274
  CONSOLE LOG ENTRY: O false
305
275
  CONSOLE LOG ENTRY: Started Softmax Performance: 50K samples, 100 features
306
- CONSOLE LOG ENTRY: Finished Softmax Performance: 50K samples, 100 features for 2760 ms
276
+ CONSOLE LOG ENTRY: Finished Softmax Performance: 50K samples, 100 features for 2518 ms
307
277
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
308
278
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
309
279
  CONSOLE LOG ENTRY: --------------------
@@ -312,7 +282,7 @@ CONSOLE LOG ENTRY: JSHandle@object
312
282
  CONSOLE LOG ENTRY: Started XGBoost category
313
283
  CONSOLE LOG ENTRY: O false
314
284
  CONSOLE LOG ENTRY: Started XGBoost Correctness
315
- CONSOLE LOG ENTRY: Finished XGBoost Correctness for 201 ms
285
+ CONSOLE LOG ENTRY: Finished XGBoost Correctness for 221 ms
316
286
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
317
287
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
318
288
  CONSOLE LOG ENTRY: --------------------
@@ -321,6 +291,6 @@ CONSOLE LOG ENTRY: JSHandle@object
321
291
  CONSOLE LOG ENTRY: Started XGBoost category
322
292
  CONSOLE LOG ENTRY: O false
323
293
  CONSOLE LOG ENTRY: Started XGBoost Performance: 50K samples, 100 features
324
- CONSOLE LOG ENTRY: Finished XGBoost Performance: 50K samples, 100 features for 1908 ms
294
+ CONSOLE LOG ENTRY: Finished XGBoost Performance: 50K samples, 100 features for 2059 ms
325
295
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
326
296
  CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
package/test-record-1.mp4 CHANGED
Binary file