forked from google/model-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompare-fidelity-results.js
141 lines (112 loc) · 4.7 KB
/
compare-fidelity-results.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
* Copyright 2018 Google Inc. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
const ALERT_THRESHOLD = 0.1;
const path = require('path');
const [candidateResultsDirectory, goldenResultsDirectory] =
process.argv.slice(2);
const warn = (message) => console.warn(`🚨 ${message}`);
const exit = () => {
console.log(`📋 Fidelity result comparison concluded`);
process.exit(0);
};
console.log(`🛂 Comparing fidelity to previously recorded results at ${
goldenResultsDirectory}`);
const candidateConfig =
require(path.resolve(path.join(candidateResultsDirectory, 'config.json')));
const goldenConfig =
require(path.resolve(path.join(goldenResultsDirectory, 'config.json')));
const {scenarios: candidateScenarios, analysisThresholds: candidateThresholds} =
candidateConfig;
const {scenarios: goldenScenarios, analysisThresholds: goldenThresholds} =
goldenConfig;
const goldenScenarioMap = new Map();
const remainingGoldenThresholds = goldenThresholds.slice();
for (let i = 0; i < candidateThresholds.length; ++i) {
const candidateThreshold = candidateThresholds[i];
if (remainingGoldenThresholds.length === 0) {
warn(`${goldenResultsDirectory} tests ${
candidateThresholds.length -
goldenThresholds.length} fewer thresholds than ${
candidateResultsDirectory}`);
exit();
}
const goldenThreshold = remainingGoldenThresholds.shift();
if (candidateThreshold !== goldenThreshold) {
warn(`Candidate uses threshold ${
candidateThreshold} where golden uses threshold ${goldenThreshold}`);
exit();
}
}
for (const goldenScenario of goldenScenarios) {
goldenScenarioMap.set(goldenScenario.name, goldenScenario);
}
for (const candidateScenario of candidateScenarios) {
const {name} = candidateScenario;
if (!goldenScenarioMap.has(name)) {
warn(`${goldenResultsDirectory} does not include scenario "${
name}" found in ${candidateResultsDirectory}`);
continue;
}
const goldenScenario = goldenScenarioMap.get(name);
const candidateAnalysis = require(path.resolve(
path.join(candidateResultsDirectory, name, 'analysis.json')));
const goldenAnalysis = require(
path.resolve(path.join(goldenResultsDirectory, name, 'analysis.json')));
const goldenGoldenMap = new Map();
for (const goldenGolden of goldenScenario.goldens) {
goldenGoldenMap.set(goldenGolden.name, goldenGolden);
}
for (let i = 0; i < candidateScenario.goldens.length; ++i) {
const candidateGolden = candidateScenario.goldens[i];
if (!goldenGoldenMap.has(candidateGolden.name)) {
warn(`${goldenResultsDirectory} does not include an analysis of "${
candidateGolden.name}" for scenario "${name}" found in ${
candidateResultsDirectory}`);
continue;
}
const candidateResults = candidateAnalysis.analysisResults[i];
const goldenResults = goldenAnalysis.analysisResults[i];
for (let j = 0; j < candidateThresholds.length; ++j) {
const threshold = candidateThresholds[j];
const candidateThresholdResult = candidateResults[j];
const goldenThresholdResult = goldenResults[j];
for (const key in candidateThresholdResult) {
if (!(key in goldenThresholdResult)) {
warn(`Golden analysis of "${candidateGolden.name}" in scenario "${
name}" is missing metric "${key}"`);
continue;
}
const delta =
goldenThresholdResult[key] - candidateThresholdResult[key];
const comparisonDescription =
`<model-viewer> <-> ${candidateGolden.name}`;
const comparisonConstraints =
`"${name}/${key}" @ threshold ${threshold}`;
const percentage = `${(delta * 100).toFixed(2)}%`;
if (delta > ALERT_THRESHOLD) {
warn(`${comparisonDescription} ${
comparisonConstraints} decreased by ${percentage}!`);
} else if (Math.abs(delta) > 0) {
const changeDescription = delta > 0 ? 'decreased' : 'increased';
console.log(`🔍 ${comparisonDescription} ${comparisonConstraints} ${
changeDescription} by ${percentage}`);
}
}
}
goldenGoldenMap.delete(candidateGolden.name);
}
goldenScenarioMap.delete(name);
}
exit();