Home
last modified time | relevance | path

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

/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/dittosuite/include/ditto/
Dstatistics.h82 T mean = StatisticsGetMean(samples); in StatisticsGetSd() local
87 double deviation = s - mean; in StatisticsGetSd()
Dresult.h34 double min, max, mean, median, sd; member
/test/dittosuite/schema/
Dresult.proto9 optional double mean = 4; field
/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/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/dittosuite/
DLICENSE10 "License" shall mean the terms and conditions for use, reproduction,
13 "Licensor" shall mean the copyright owner or entity authorized by
16 "Legal Entity" shall mean the union of the acting entity and all
24 "You" (or "Your") shall mean an individual or Legal Entity
27 "Source" form shall mean the preferred form for making modifications,
31 "Object" form shall mean any form resulting from mechanical
36 "Work" shall mean the work of authorship, whether in Source or
41 "Derivative Works" shall mean any work, whether in Source or Object
49 "Contribution" shall mean any work of authorship, including
63 "Contributor" shall mean Licensor and any individual or Legal Entity
/test/dittosuite/src/
Dresult.cpp65 statistics_[name].mean = StatisticsGetMean(samples_[name]); in AnalyseMeasurement()
149 PrintMeasurementInTable(statistics_[measurement_name].mean, measurement_name); in PrintStatisticsTableContent()
325 csv_stream << statistics_[name].mean << kCsvDelimiter; in PrintMeasurementStatisticInCsv()
383 metrics->set_mean(statistics_[name].mean); in StoreStatisticsInPb()
431 .min = m.min(), .max = m.max(), .mean = m.mean(), .median = m.median(), .sd = m.sd()}; in FromPb()
/test/catbox/report/src/com/android/catbox/util/
DTestMetricsUtil.java203 double mean = values.stream()
207 double variance = values.stream().reduce(0.0, (a, b) -> a + Math.pow(b - mean, 2) / count);
217 stats.put(STATS_KEY_MEAN, mean);
/test/mlts/benchmark/tools/
Dtensor_utils.py271 'mean': np.mean(diff),