@datagrok/eda 1.4.10 → 1.4.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/README.md +10 -0
- package/css/pareto.css +5 -0
- package/css/pmpo.css +26 -0
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/eslintrc.json +46 -0
- package/files/drugs-props-test.csv +126 -0
- package/files/drugs-props-train.csv +664 -0
- package/files/mpo-done.ipynb +2123 -0
- package/icons/pareto-front-viewer.svg +15 -0
- package/package.json +3 -1
- package/src/anova/anova-tools.ts +1 -1
- package/src/anova/anova-ui.ts +1 -1
- package/src/package-api.ts +28 -0
- package/src/package.g.ts +33 -4
- package/src/package.ts +261 -253
- package/src/pareto-optimization/defs.ts +45 -0
- package/src/pareto-optimization/pareto-computations.ts +65 -0
- package/src/pareto-optimization/pareto-front-viewer.ts +490 -0
- package/src/pareto-optimization/pareto-optimizer.ts +272 -0
- package/src/pareto-optimization/utils.ts +41 -0
- package/src/probabilistic-scoring/pmpo-defs.ts +108 -0
- package/src/probabilistic-scoring/pmpo-utils.ts +580 -0
- package/src/probabilistic-scoring/prob-scoring.ts +637 -0
- package/src/probabilistic-scoring/stat-tools.ts +168 -0
- package/src/softmax-classifier.ts +1 -1
- package/test-console-output-1.log +70 -50
- package/test-record-1.mp4 +0 -0
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
// Probabilistic scoring (pMPO) statistical tools
|
|
2
|
+
// Link: https://pmc.ncbi.nlm.nih.gov/articles/PMC4716604/
|
|
3
|
+
|
|
4
|
+
import * as grok from 'datagrok-api/grok';
|
|
5
|
+
import * as ui from 'datagrok-api/ui';
|
|
6
|
+
import * as DG from 'datagrok-api/dg';
|
|
7
|
+
|
|
8
|
+
//@ts-ignore: no types
|
|
9
|
+
import * as jStat from 'jstat';
|
|
10
|
+
|
|
11
|
+
import {Cutoff, DescriptorStatistics, SigmoidParams} from './pmpo-defs';
|
|
12
|
+
|
|
13
|
+
const SQRT_2_PI = Math.sqrt(2 * Math.PI);
|
|
14
|
+
|
|
15
|
+
/** Splits the dataframe into desired and non-desired tables based on the desirability column */
|
|
16
|
+
export function getDesiredTables(df: DG.DataFrame, desirability: DG.Column) {
|
|
17
|
+
const groups = df.groupBy([desirability.name]).getGroups() as any;
|
|
18
|
+
let desired: DG.DataFrame;
|
|
19
|
+
let nonDesired: DG.DataFrame;
|
|
20
|
+
|
|
21
|
+
for (const name in groups) {
|
|
22
|
+
if (name.toLowerCase().includes('true'))
|
|
23
|
+
desired = groups[name];
|
|
24
|
+
else
|
|
25
|
+
nonDesired = groups[name];
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
//@ts-ignore
|
|
29
|
+
return {desired, nonDesired};
|
|
30
|
+
} // getDesiredTables
|
|
31
|
+
|
|
32
|
+
/* Welch two-sample t-test (two-sided) */
|
|
33
|
+
export function getDescriptorStatistics(des: DG.Column, nonDes: DG.Column): DescriptorStatistics {
|
|
34
|
+
const desLen = des.length;
|
|
35
|
+
const nonDesLen = nonDes.length;
|
|
36
|
+
if (desLen < 2 || nonDesLen < 2) {
|
|
37
|
+
throw new Error(`Failed to compute the "${des.name}" descriptor statistics:
|
|
38
|
+
both samples must have at least two observations.`);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const desAvg = des.stats.avg;
|
|
42
|
+
const nonDesAvg = nonDes.stats.avg;
|
|
43
|
+
const desVar = des.stats.variance;
|
|
44
|
+
const nonDesVar = nonDes.stats.variance;
|
|
45
|
+
const desStd = des.stats.stdev;
|
|
46
|
+
const nonDesStd = nonDes.stats.stdev;
|
|
47
|
+
|
|
48
|
+
const se = Math.sqrt(desVar / desLen + nonDesVar / nonDesLen);
|
|
49
|
+
if (se === 0) {
|
|
50
|
+
throw new Error(`Failed to compute the "${des.name}" descriptor statistics:
|
|
51
|
+
zero variance.`);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
const t = (desAvg - nonDesAvg) / se;
|
|
55
|
+
|
|
56
|
+
// Welch–Satterthwaite degrees of freedom
|
|
57
|
+
const numerator = (desVar / desLen + nonDesVar / nonDesLen) ** 2;
|
|
58
|
+
const denom = (desVar * desVar) / (desLen * desLen * (desLen - 1)) +
|
|
59
|
+
(nonDesVar * nonDesVar) / (nonDesLen * nonDesLen * (nonDesLen - 1));
|
|
60
|
+
const df = numerator / denom;
|
|
61
|
+
|
|
62
|
+
// two-sided p-value
|
|
63
|
+
const cdf = jStat.studentt.cdf(Math.abs(t), df);
|
|
64
|
+
const pValue = 2 * (1 - cdf);
|
|
65
|
+
|
|
66
|
+
return {
|
|
67
|
+
desAvg: desAvg,
|
|
68
|
+
desStd: desStd,
|
|
69
|
+
desLen: desLen,
|
|
70
|
+
nonDesAvg: nonDesAvg,
|
|
71
|
+
nonDesStd: nonDesStd,
|
|
72
|
+
nonSesLen: nonDesLen,
|
|
73
|
+
tstat: t,
|
|
74
|
+
pValue: pValue,
|
|
75
|
+
};
|
|
76
|
+
} // getDescriptorStatistics
|
|
77
|
+
|
|
78
|
+
/** Compute cutoffs for the pMPO method */
|
|
79
|
+
export function getCutoffs(muDesired: number, stdDesired: number, muNotDesired: number,
|
|
80
|
+
stdNotDesired: number): Cutoff {
|
|
81
|
+
if (muDesired < muNotDesired) {
|
|
82
|
+
return {
|
|
83
|
+
cutoff: ((muNotDesired - muDesired) / (stdDesired + stdNotDesired)) * stdDesired + muDesired,
|
|
84
|
+
cutoffDesired: Math.max(muDesired, muNotDesired - stdNotDesired),
|
|
85
|
+
cutoffNotDesired: Math.max(muDesired + stdDesired, muNotDesired),
|
|
86
|
+
};
|
|
87
|
+
} else {
|
|
88
|
+
return {
|
|
89
|
+
cutoff: ((muDesired - muNotDesired) / (stdDesired + stdNotDesired)) * stdNotDesired + muNotDesired,
|
|
90
|
+
cutoffDesired: Math.min(muNotDesired + stdNotDesired, muDesired),
|
|
91
|
+
cutoffNotDesired: Math.max(muNotDesired, muDesired - stdDesired),
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
} // getCutoffs
|
|
95
|
+
|
|
96
|
+
/** Solve normal intersection for the pMPO method */
|
|
97
|
+
export function solveNormalIntersection(mu1: number, s1: number, mu2: number, s2: number): number[] {
|
|
98
|
+
const a = 1 / (2 * s1 ** 2) - 1 / (2 * s2 ** 2);
|
|
99
|
+
const b = mu2 / (s2 ** 2) - mu1 / (s1 ** 2);
|
|
100
|
+
const c = (mu1 ** 2) / (2 * s1 ** 2) - (mu2 ** 2) / (2 * s2 ** 2) - Math.log(s2 / s1);
|
|
101
|
+
|
|
102
|
+
// If a is nearly zero, solve linear equation
|
|
103
|
+
if (Math.abs(a) < 1e-12) {
|
|
104
|
+
if (Math.abs(b) < 1e-12) return [];
|
|
105
|
+
return [-c / b];
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
const disc = b * b - 4 * a * c;
|
|
109
|
+
if (disc < 0) return [];
|
|
110
|
+
|
|
111
|
+
const sqrtDisc = Math.sqrt(disc);
|
|
112
|
+
const x1 = (-b + sqrtDisc) / (2 * a);
|
|
113
|
+
const x2 = (-b - sqrtDisc) / (2 * a);
|
|
114
|
+
|
|
115
|
+
return [x1, x2];
|
|
116
|
+
} // solveNormalIntersection
|
|
117
|
+
|
|
118
|
+
/** Compute sigmoid parameters for the pMPO method */
|
|
119
|
+
export function computeSigmoidParamsFromX0(muDes: number, sigmaDes: number, x0: number, xBound: number,
|
|
120
|
+
qCutoff: number = 0.05): SigmoidParams {
|
|
121
|
+
let pX0: number;
|
|
122
|
+
|
|
123
|
+
if (sigmaDes <= 0)
|
|
124
|
+
pX0 = x0 === muDes ? 1.0 : 0.0;
|
|
125
|
+
else {
|
|
126
|
+
// normal pdf
|
|
127
|
+
const coef = 1 / (sigmaDes * Math.sqrt(2 * Math.PI));
|
|
128
|
+
const exponent = -0.5 * ((x0 - muDes) / sigmaDes) ** 2;
|
|
129
|
+
pX0 = coef * Math.exp(exponent);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
const eps = 1e-12;
|
|
133
|
+
pX0 = Math.max(pX0, eps);
|
|
134
|
+
|
|
135
|
+
const b = Math.max(1.0 / pX0 - 1.0, eps);
|
|
136
|
+
const n = 1.0 / qCutoff - 1.0;
|
|
137
|
+
const dx = xBound - x0;
|
|
138
|
+
|
|
139
|
+
let c: number;
|
|
140
|
+
if (Math.abs(dx) < 1e-12)
|
|
141
|
+
c = 1.0;
|
|
142
|
+
else {
|
|
143
|
+
const ratio = n / b;
|
|
144
|
+
if (ratio <= 0)
|
|
145
|
+
c = 1.0;
|
|
146
|
+
else {
|
|
147
|
+
try {
|
|
148
|
+
c = Math.exp(-Math.log(ratio) / dx);
|
|
149
|
+
} catch {
|
|
150
|
+
c = 1.0;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
return {pX0: pX0, b: b, c: c};
|
|
156
|
+
} // computeSigmoidParamsFromX0
|
|
157
|
+
|
|
158
|
+
/** Generalized sigmoid function */
|
|
159
|
+
export function sigmoidS(x: number, x0: number, b: number, c: number): number {
|
|
160
|
+
if (c > 0)
|
|
161
|
+
return 1.0 / (1.0 + b * (c ** (-(x - x0))));
|
|
162
|
+
return 1.0/(1.0 + b);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/** Normal probability density function */
|
|
166
|
+
export function normalPdf(x: number, mu: number, sigma: number): number {
|
|
167
|
+
return Math.exp(-((x - mu)**2) / (2 * sigma**2)) / (sigma * SQRT_2_PI);
|
|
168
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/* Softmax classifier (multinomial logistic regression): https://en.wikipedia.org/wiki/Multinomial_logistic_regression */
|
|
2
2
|
|
|
3
3
|
import * as grok from 'datagrok-api/grok';
|
|
4
4
|
import * as ui from 'datagrok-api/ui';
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.
|
|
2
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.
|
|
3
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.
|
|
1
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.12.X-0bb23fb6/lSDvPtCZGPseNDVJDVtZGFAyaLpPfIvf/1/wasm/EDA.js
|
|
2
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.12.X-0bb23fb6/lSDvPtCZGPseNDVJDVtZGFAyaLpPfIvf/1/wasm/XGBoostAPI.js
|
|
3
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.12.X-0bb23fb6/lSDvPtCZGPseNDVJDVtZGFAyaLpPfIvf/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
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.12.X-0bb23fb6/lSDvPtCZGPseNDVJDVtZGFAyaLpPfIvf/1/wasm/EDA.wasm
|
|
6
6
|
CONSOLE LOG ENTRY: XGBoost not Loaded, Loading
|
|
7
7
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
8
8
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/font/Roboto-LightItalic.woff2
|
|
9
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.
|
|
10
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.
|
|
9
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.12.X-0bb23fb6/lSDvPtCZGPseNDVJDVtZGFAyaLpPfIvf/1/wasm/XGBoostAPI.wasm
|
|
10
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/packages/published/files/Eda/1.4.12.X-0bb23fb6/lSDvPtCZGPseNDVJDVtZGFAyaLpPfIvf/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%
|
|
12
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/funcs?text=package.id%2520%253D%2520%25223e22bef0-d380-11f0-b7b7-95cca6565c2a%2522
|
|
13
13
|
CONSOLE LOG ENTRY: Running tests
|
|
14
14
|
CONSOLE LOG ENTRY: JSHandle@object
|
|
15
15
|
CONSOLE LOG ENTRY: Started ANOVA category
|
|
@@ -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
|
|
27
|
+
CONSOLE LOG ENTRY: Finished ANOVA Performance: 1M rows demog for 1958 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: --------------------
|
|
@@ -36,12 +36,12 @@ CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE All demog columns
|
|
|
36
36
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/images/ribbon/ribbon_sprite.svg
|
|
37
37
|
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
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
|
|
40
39
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
41
40
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
42
41
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
43
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
44
42
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
43
|
+
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
47
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-labels-thumb.png
|
|
@@ -49,8 +49,8 @@ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatt
|
|
|
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:
|
|
53
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE All demog columns for
|
|
52
|
+
CONSOLE LOG ENTRY: distances to matrix: 15.921875 ms
|
|
53
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE All demog columns for 1310 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
|
|
@@ -61,11 +61,11 @@ CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE category
|
|
|
61
61
|
CONSOLE LOG ENTRY: O false
|
|
62
62
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: T-SNE Numeric and string columns
|
|
63
63
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
64
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
65
64
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
66
65
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
67
|
-
CONSOLE LOG
|
|
68
|
-
CONSOLE LOG ENTRY:
|
|
66
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
67
|
+
CONSOLE LOG ENTRY: distances to matrix: 35.132080078125 ms
|
|
68
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric and string columns for 1502 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 ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
80
79
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
81
80
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
82
|
-
CONSOLE LOG ENTRY:
|
|
83
|
-
CONSOLE LOG ENTRY:
|
|
81
|
+
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
82
|
+
CONSOLE LOG ENTRY: distances to matrix: 19.68505859375 ms
|
|
83
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE Numeric column for 1390 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: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
95
95
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
96
96
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
97
|
-
CONSOLE LOG ENTRY: distances to matrix:
|
|
98
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE String column for
|
|
97
|
+
CONSOLE LOG ENTRY: distances to matrix: 20.2158203125 ms
|
|
98
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: T-SNE String column for 1128 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
|
|
@@ -106,14 +106,14 @@ CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
|
|
|
106
106
|
CONSOLE LOG ENTRY: O false
|
|
107
107
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP All demog columns
|
|
108
108
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
109
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
109
110
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
110
111
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
111
|
-
CONSOLE LOG
|
|
112
|
-
CONSOLE LOG ENTRY: knn graph: 60.511962890625 ms
|
|
112
|
+
CONSOLE LOG ENTRY: knn graph: 74.40283203125 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:
|
|
116
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP All demog columns for
|
|
115
|
+
CONSOLE LOG ENTRY: fit: 3886.34619140625 ms
|
|
116
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP All demog columns for 5291 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
|
|
@@ -124,13 +124,23 @@ CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
|
|
|
124
124
|
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
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
128
127
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
129
128
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
130
|
-
CONSOLE LOG
|
|
129
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
130
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
131
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
132
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
133
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-regression-line.png
|
|
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: 47.72412109375 ms
|
|
131
141
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/concepts/table.md
|
|
132
|
-
CONSOLE LOG ENTRY: fit:
|
|
133
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric and string columns for
|
|
142
|
+
CONSOLE LOG ENTRY: fit: 2789.14306640625 ms
|
|
143
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric and string columns for 4225 ms
|
|
134
144
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
135
145
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
136
146
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
@@ -141,9 +151,9 @@ CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
|
|
|
141
151
|
CONSOLE LOG ENTRY: O false
|
|
142
152
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP Numeric column
|
|
143
153
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
154
|
+
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
144
155
|
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
145
156
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
146
|
-
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
147
157
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-colors-sizes-markers-labels-thumb.png
|
|
148
158
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-zoom-and-pack-thumb.png
|
|
149
159
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-selection-thumb.png
|
|
@@ -154,10 +164,10 @@ CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatt
|
|
|
154
164
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/scatter-plot-lines.png
|
|
155
165
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/uploads/viewers/scatter-plot-molecules.png
|
|
156
166
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/img/webgpu-scatterplot-thumb.png
|
|
157
|
-
CONSOLE LOG ENTRY: knn graph:
|
|
167
|
+
CONSOLE LOG ENTRY: knn graph: 33.509033203125 ms
|
|
158
168
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/concepts/table.md
|
|
159
|
-
CONSOLE LOG ENTRY: fit:
|
|
160
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric column for
|
|
169
|
+
CONSOLE LOG ENTRY: fit: 2949.89599609375 ms
|
|
170
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP Numeric column for 4358 ms
|
|
161
171
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
162
172
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
163
173
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
@@ -168,13 +178,23 @@ CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP category
|
|
|
168
178
|
CONSOLE LOG ENTRY: O false
|
|
169
179
|
CONSOLE LOG ENTRY: Started Dimensionality reduction: UMAP String column
|
|
170
180
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/scatter-plot.md
|
|
171
|
-
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
172
181
|
CONSOLE LOG ENTRY: Failed to load resource: the server responded with a status of 404 (Not Found)
|
|
182
|
+
CONSOLE LOG REQUEST: 404, http://localhost:8080/uploads/youtube/visualizations2.png
|
|
173
183
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/visualize/viewers/%7Brequire('./img/formula-lines-thumb.png').default%7D
|
|
174
|
-
CONSOLE LOG
|
|
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: 94.2939453125 ms
|
|
175
195
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/concepts/table.md
|
|
176
|
-
CONSOLE LOG ENTRY: fit:
|
|
177
|
-
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP String column for
|
|
196
|
+
CONSOLE LOG ENTRY: fit: 4225.9560546875 ms
|
|
197
|
+
CONSOLE LOG ENTRY: Finished Dimensionality reduction: UMAP String column for 5704 ms
|
|
178
198
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
179
199
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/help/datagrok/datagrok.md
|
|
180
200
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
@@ -184,7 +204,7 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
184
204
|
CONSOLE LOG ENTRY: Started Linear regression category
|
|
185
205
|
CONSOLE LOG ENTRY: O false
|
|
186
206
|
CONSOLE LOG ENTRY: Started Linear regression Correctness
|
|
187
|
-
CONSOLE LOG ENTRY: Finished Linear regression Correctness for
|
|
207
|
+
CONSOLE LOG ENTRY: Finished Linear regression Correctness for 3 ms
|
|
188
208
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
189
209
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
190
210
|
CONSOLE LOG ENTRY: --------------------
|
|
@@ -193,7 +213,7 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
193
213
|
CONSOLE LOG ENTRY: Started Linear regression category
|
|
194
214
|
CONSOLE LOG ENTRY: O false
|
|
195
215
|
CONSOLE LOG ENTRY: Started Linear regression Performance: 100K samples, 100 features
|
|
196
|
-
CONSOLE LOG ENTRY: Finished Linear regression Performance: 100K samples, 100 features for
|
|
216
|
+
CONSOLE LOG ENTRY: Finished Linear regression Performance: 100K samples, 100 features for 2391 ms
|
|
197
217
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
198
218
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
199
219
|
CONSOLE LOG ENTRY: --------------------
|
|
@@ -202,7 +222,7 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
202
222
|
CONSOLE LOG ENTRY: Started Missing values imputation category
|
|
203
223
|
CONSOLE LOG ENTRY: O false
|
|
204
224
|
CONSOLE LOG ENTRY: Started Missing values imputation Euclidean dist, 100K rows, 15 cols, 75 missing vals
|
|
205
|
-
CONSOLE LOG ENTRY: Finished Missing values imputation Euclidean dist, 100K rows, 15 cols, 75 missing vals for
|
|
225
|
+
CONSOLE LOG ENTRY: Finished Missing values imputation Euclidean dist, 100K rows, 15 cols, 75 missing vals for 5650 ms
|
|
206
226
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
207
227
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
208
228
|
CONSOLE LOG ENTRY: --------------------
|
|
@@ -211,7 +231,7 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
211
231
|
CONSOLE LOG ENTRY: Started Missing values imputation category
|
|
212
232
|
CONSOLE LOG ENTRY: O false
|
|
213
233
|
CONSOLE LOG ENTRY: Started Missing values imputation Manhattan dist, 100K rows, 15 cols, 75 missing vals
|
|
214
|
-
CONSOLE LOG ENTRY: Finished Missing values imputation Manhattan dist, 100K rows, 15 cols, 75 missing vals for
|
|
234
|
+
CONSOLE LOG ENTRY: Finished Missing values imputation Manhattan dist, 100K rows, 15 cols, 75 missing vals for 5531 ms
|
|
215
235
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
216
236
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
217
237
|
CONSOLE LOG ENTRY: --------------------
|
|
@@ -220,7 +240,7 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
220
240
|
CONSOLE LOG ENTRY: Started Partial least squares regression category
|
|
221
241
|
CONSOLE LOG ENTRY: O false
|
|
222
242
|
CONSOLE LOG ENTRY: Started Partial least squares regression Correctness
|
|
223
|
-
CONSOLE LOG ENTRY: Finished Partial least squares regression Correctness for
|
|
243
|
+
CONSOLE LOG ENTRY: Finished Partial least squares regression Correctness for 38 ms
|
|
224
244
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
225
245
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
226
246
|
CONSOLE LOG ENTRY: --------------------
|
|
@@ -229,7 +249,7 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
229
249
|
CONSOLE LOG ENTRY: Started Partial least squares regression category
|
|
230
250
|
CONSOLE LOG ENTRY: O false
|
|
231
251
|
CONSOLE LOG ENTRY: Started Partial least squares regression Performance: 100K rows, 100 cols, 3 components
|
|
232
|
-
CONSOLE LOG ENTRY: Finished Partial least squares regression Performance: 100K rows, 100 cols, 3 components for
|
|
252
|
+
CONSOLE LOG ENTRY: Finished Partial least squares regression Performance: 100K rows, 100 cols, 3 components for 1720 ms
|
|
233
253
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
234
254
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
235
255
|
CONSOLE LOG ENTRY: --------------------
|
|
@@ -238,7 +258,7 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
238
258
|
CONSOLE LOG ENTRY: Started Partial least squares regression category
|
|
239
259
|
CONSOLE LOG ENTRY: O false
|
|
240
260
|
CONSOLE LOG ENTRY: Started Partial least squares regression Predictive modeling: 100K samples, 100 features, 3 components
|
|
241
|
-
CONSOLE LOG ENTRY: Finished Partial least squares regression Predictive modeling: 100K samples, 100 features, 3 components for
|
|
261
|
+
CONSOLE LOG ENTRY: Finished Partial least squares regression Predictive modeling: 100K samples, 100 features, 3 components for 1590 ms
|
|
242
262
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
243
263
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
244
264
|
CONSOLE LOG ENTRY: --------------------
|
|
@@ -247,7 +267,7 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
247
267
|
CONSOLE LOG ENTRY: Started Principal component analysis category
|
|
248
268
|
CONSOLE LOG ENTRY: O false
|
|
249
269
|
CONSOLE LOG ENTRY: Started Principal component analysis Correctness
|
|
250
|
-
CONSOLE LOG ENTRY: Finished Principal component analysis Correctness for
|
|
270
|
+
CONSOLE LOG ENTRY: Finished Principal component analysis Correctness for 22 ms
|
|
251
271
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
252
272
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
253
273
|
CONSOLE LOG ENTRY: --------------------
|
|
@@ -256,7 +276,7 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
256
276
|
CONSOLE LOG ENTRY: Started Principal component analysis category
|
|
257
277
|
CONSOLE LOG ENTRY: O false
|
|
258
278
|
CONSOLE LOG ENTRY: Started Principal component analysis Performance: 100K rows, 100 cols, 3 components
|
|
259
|
-
CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 100K rows, 100 cols, 3 components for
|
|
279
|
+
CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 100K rows, 100 cols, 3 components for 3646 ms
|
|
260
280
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
261
281
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
262
282
|
CONSOLE LOG ENTRY: --------------------
|
|
@@ -265,7 +285,7 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
265
285
|
CONSOLE LOG ENTRY: Started Principal component analysis category
|
|
266
286
|
CONSOLE LOG ENTRY: O false
|
|
267
287
|
CONSOLE LOG ENTRY: Started Principal component analysis Performance: 1K rows, 5K cols, 3 components
|
|
268
|
-
CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 1K rows, 5K cols, 3 components for
|
|
288
|
+
CONSOLE LOG ENTRY: Finished Principal component analysis Performance: 1K rows, 5K cols, 3 components for 3725 ms
|
|
269
289
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
270
290
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
271
291
|
CONSOLE LOG ENTRY: --------------------
|
|
@@ -274,7 +294,7 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
274
294
|
CONSOLE LOG ENTRY: Started Softmax category
|
|
275
295
|
CONSOLE LOG ENTRY: O false
|
|
276
296
|
CONSOLE LOG ENTRY: Started Softmax Correctness
|
|
277
|
-
CONSOLE LOG ENTRY: Finished Softmax Correctness for
|
|
297
|
+
CONSOLE LOG ENTRY: Finished Softmax Correctness for 6 ms
|
|
278
298
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
279
299
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
280
300
|
CONSOLE LOG ENTRY: --------------------
|
|
@@ -283,7 +303,7 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
283
303
|
CONSOLE LOG ENTRY: Started Softmax category
|
|
284
304
|
CONSOLE LOG ENTRY: O false
|
|
285
305
|
CONSOLE LOG ENTRY: Started Softmax Performance: 50K samples, 100 features
|
|
286
|
-
CONSOLE LOG ENTRY: Finished Softmax Performance: 50K samples, 100 features for
|
|
306
|
+
CONSOLE LOG ENTRY: Finished Softmax Performance: 50K samples, 100 features for 2637 ms
|
|
287
307
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
288
308
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
289
309
|
CONSOLE LOG ENTRY: --------------------
|
|
@@ -292,7 +312,7 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
292
312
|
CONSOLE LOG ENTRY: Started XGBoost category
|
|
293
313
|
CONSOLE LOG ENTRY: O false
|
|
294
314
|
CONSOLE LOG ENTRY: Started XGBoost Correctness
|
|
295
|
-
CONSOLE LOG ENTRY: Finished XGBoost Correctness for
|
|
315
|
+
CONSOLE LOG ENTRY: Finished XGBoost Correctness for 213 ms
|
|
296
316
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
297
317
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
298
318
|
CONSOLE LOG ENTRY: --------------------
|
|
@@ -301,6 +321,6 @@ CONSOLE LOG ENTRY: JSHandle@object
|
|
|
301
321
|
CONSOLE LOG ENTRY: Started XGBoost category
|
|
302
322
|
CONSOLE LOG ENTRY: O false
|
|
303
323
|
CONSOLE LOG ENTRY: Started XGBoost Performance: 50K samples, 100 features
|
|
304
|
-
CONSOLE LOG ENTRY: Finished XGBoost Performance: 50K samples, 100 features for
|
|
324
|
+
CONSOLE LOG ENTRY: Finished XGBoost Performance: 50K samples, 100 features for 2233 ms
|
|
305
325
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
|
306
326
|
CONSOLE LOG REQUEST: 200, http://localhost:8080/api/log/tests/package?benchmark=false&ciCd=false
|
package/test-record-1.mp4
CHANGED
|
Binary file
|