Home
last modified time | relevance | path

Searched refs:mean (Results 1 – 11 of 11) sorted by relevance

/test/vti/dashboard/src/main/java/com/android/vts/util/
DStatSummary.java26 private double mean; field in StatSummary
48 double mean, in StatSummary() argument
55 this.mean = mean; in StatSummary()
81 double oldMean = mean; in updateStats()
82 mean = oldMean + (value - oldMean) / n; in updateStats()
83 sumSq = sumSq + (value - mean) * (value - oldMean); in updateStats()
94 double delta = stat.getMean() - mean; in merge()
98 mean = n * recipN * mean + stat.getCount() * recipN * stat.getMean(); in merge()
140 return mean; in getMean()
DBoxPlot.java160 Double mean = null; in toJson() local
165 mean = stat.getMean(); in toJson()
172 statSummary.addProperty(MEAN_KEY, mean); in toJson()
/test/mlts/benchmark/src/com/android/nn/benchmark/core/
DMeanStdDev.java26 public float mean; field in MeanStdDev
29 public MeanStdDev(float mean, float stdDev) { in MeanStdDev() argument
30 this.mean = mean; in MeanStdDev()
35 return value * stdDev + mean; in denormalize()
/test/vti/dashboard/src/test/java/com/android/vts/util/
DStatSummaryTest.java39 double mean = (n - 1) / 2.0; in testAverage() local
44 assertEquals(mean, test.getMean(), threshold); in testAverage()
88 double mean = sum / n; in testStd() local
91 sumSq += (values[i] - mean) * (values[i] - mean); in testStd()
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/
Dshow_profiling_overview.jsp73 stat.mean.toFixed(2) +
79 stat.mean,
80 stat.mean + stat.std,
81 stat.mean - stat.std,
82 stat.mean + stat.std,
83 stat.mean - stat.std,
/test/vts/hals/light/bullhead/
DNOTICE22 "License" shall mean the terms and conditions for use, reproduction,
25 "Licensor" shall mean the copyright owner or entity authorized by
28 "Legal Entity" shall mean the union of the acting entity and all
36 "You" (or "Your") shall mean an individual or Legal Entity
39 "Source" form shall mean the preferred form for making modifications,
43 "Object" form shall mean any form resulting from mechanical
48 "Work" shall mean the work of authorship, whether in Source or
53 "Derivative Works" shall mean any work, whether in Source or Object
61 "Contribution" shall mean any work of authorship, including
75 "Contributor" shall mean Licensor and any individual or Legal Entity
/test/mlts/benchmark/
DLICENSE9 "License" shall mean the terms and conditions for use, reproduction,
12 "Licensor" shall mean the copyright owner or entity authorized by
15 "Legal Entity" shall mean the union of the acting entity and all
23 "You" (or "Your") shall mean an individual or Legal Entity
26 "Source" form shall mean the preferred form for making modifications,
30 "Object" form shall mean any form resulting from mechanical
35 "Work" shall mean the work of authorship, whether in Source or
40 "Derivative Works" shall mean any work, whether in Source or Object
48 "Contribution" shall mean any work of authorship, including
62 "Contributor" shall mean Licensor and any individual or Legal Entity
/test/mlts/models/
DLICENSE9 "License" shall mean the terms and conditions for use, reproduction,
12 "Licensor" shall mean the copyright owner or entity authorized by
15 "Legal Entity" shall mean the union of the acting entity and all
23 "You" (or "Your") shall mean an individual or Legal Entity
26 "Source" form shall mean the preferred form for making modifications,
30 "Object" form shall mean any form resulting from mechanical
35 "Work" shall mean the work of authorship, whether in Source or
40 "Derivative Works" shall mean any work, whether in Source or Object
48 "Contribution" shall mean any work of authorship, including
62 "Contributor" shall mean Licensor and any individual or Legal Entity
/test/vti/dashboard/src/main/java/com/android/vts/entity/
DProfilingPointSummaryEntity.java106 private Long mean; field in ProfilingPointSummaryEntity
308 double mean = (double) e.getProperty(MEAN); in fromEntity() local
318 mean, in fromEntity()
/test/vti/dashboard/src/test/java/com/android/vts/job/
DVtsProfilingStatsJobServletTest.java104 Mean mean = new Mean(); in createProfilingRun() local
228 Mean mean = new Mean(); in testNewSummary() local
/test/mlts/benchmark/tools/
Dtensor_utils.py271 'mean': np.mean(diff),