HomeSort by relevance Sort by last modified time
    Searched refs:average (Results 126 - 150 of 318) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
TabulatorsTest.java 314 s -> s.mapToInt(x -> x * 2).average().orElse(0));
316 s -> s.mapToLong(x -> x * 2).average().orElse(0));
318 s -> s.mapToDouble(x -> x * 2).average().orElse(0));
333 s -> s.mapToInt(x -> x * 2).average().orElse(0));
  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_core.c 487 // average noise scale
488 // average over second half of freq spectrum (i.e., 4->8khz)
496 // average nlp scale
497 // average over second half of freq spectrum (i.e., 4->8khz)
506 // Use average noise for H band
514 // Use average noise for H band
521 // Use average NLP weight for H band
545 stats->average = kOffsetLevel;
678 aec->erl.average = aec->erl.sum / aec->erl.counter;
681 if (dtmp > aec->erl.average) {
    [all...]
  /external/deqp/modules/egl/
teglGLES2SharedRenderingPerfTests.cpp 943 deUint64 average; local
961 average = sum / resultsUs.size();
966 deviation += (double)((resultsUs[resultNdx] - average) * (resultsUs[resultNdx] - average));
974 << "Average: " << ((double)average/1000.0) << "ms\n"
981 testCtx.setTestResult(QP_TEST_RESULT_PASS, de::floatToString((float)((double)average/1000.0), 2).c_str());
    [all...]
  /prebuilts/go/darwin-x86/src/image/gif/
writer_test.go 47 // averageDelta returns the average delta in RGB space. The two images must
102 // Compare the average delta to the tolerance level.
105 t.Errorf("%s: average delta is too high. expected: %d, got %d", tc.filename, tc.tolerance, avgDelta)
  /prebuilts/go/linux-x86/src/image/gif/
writer_test.go 47 // averageDelta returns the average delta in RGB space. The two images must
102 // Compare the average delta to the tolerance level.
105 t.Errorf("%s: average delta is too high. expected: %d, got %d", tc.filename, tc.tolerance, avgDelta)
  /external/libavc/common/arm/
ih264_default_weighted_pred_a9q.s 50 @* This function gets two ht x wd blocks, calculates their rounded-average and
224 @* This function gets two ht x wd blocks, calculates their rounded-average and
  /external/tensorflow/tensorflow/core/profiler/g3doc/
options.md 99 `-step`: Show the stats of the this step when multiple steps of RunMetadata were added. By default, show the average of all steps."
  /external/webrtc/webrtc/modules/audio_processing/
audio_processing_performance_unittest.cc 264 auto create_mean_and_std_string = [](int64_t average,
266 std::string s = std::to_string(average);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
magic.go 81 // ?(a+b) / 2? - aka "average" of two n-bit numbers.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
magic.go 81 // ?(a+b) / 2? - aka "average" of two n-bit numbers.
  /external/fio/tools/
fiologparser.py 14 # to see per-interval average completion latency.
26 parser.add_argument('-a', '--average', dest='average', action='store_true', default=False, help='print the average for each interval.')
213 elif ctx.average:
  /external/python/cpython3/Lib/
statistics.py 13 mean Arithmetic mean (average) of data.
22 Calculate the arithmetic mean ("the average") of data:
327 What is the average P/E ratio for the investor's portfolio?
332 Using the arithmetic mean would give an average of about 5.167, which
369 taking the average of the two middle values:
  /external/tensorflow/tensorflow/contrib/model_pruning/examples/cifar10/
cifar10_pruning.py 57 MOVING_AVERAGE_DECAY = 0.9999 # The decay to use for the moving average.
285 # Calculate the average cross entropy loss across the batch.
300 Generates moving average for all losses and associated summaries for
308 # Compute the moving average of all individual losses and the total loss.
316 # Name each loss as '(raw)' and name the moving average version of the loss
319 tf.summary.scalar(l.op.name, loss_averages.average(l))
328 average for all trainable variables.
  /external/tensorflow/tensorflow/python/training/
moving_averages.py 34 """Compute the moving average of a variable.
36 The moving average of 'variable' updated with 'value' is:
39 The returned Operation sets 'variable' to the newly computed moving average.
69 decay: A float Tensor or float value. The moving average decay.
77 moving average.
98 """Compute the weighted moving average of `value`.
100 Conceptually, the weighted moving average is:
102 where a moving average updates by the rule
104 Internally, this Op keeps moving average variables of both `value * weight`
109 decay: A float `Tensor` or float value. The moving average decay
425 def average(self, var): member in class:ExponentialMovingAverage
    [all...]
  /external/toolchain-utils/crb/
table_formatter.py 223 return numpy.average(sorted_numbers)
  /external/webrtc/webrtc/modules/audio_processing/include/
audio_processing.h 454 int average; // Long-term average. member in struct:webrtc::AudioProcessing::Statistic
    [all...]
  /frameworks/base/tests/JankBench/scripts/external/
statistics.py 30 mean Arithmetic mean (average) of data.
38 Calculate the arithmetic mean ("the average") of data:
342 taking the average of the two middle values:
  /external/python/cpython3/Tools/stringbench/
stringbench.py     [all...]
  /frameworks/native/cmds/dumpstate/
utils.cpp 167 MYLOGI("Average max progress: %d in %d runs; estimated max: %d\n", average_max_, n_runs_, max_);
173 int32_t average = floor(((float)total) / runs); local
174 MYLOGI("Saving stats (total=%d, runs=%d, average=%d) on %s\n", total, runs, average,
180 std::string content = android::base::StringPrintf("%d %d\n", runs, average);
    [all...]
  /external/ImageMagick/www/api/
statistic.php 155 <dd>the average entropy of the selected channels. </dd>
256 <dd>the average value in the channel. </dd>
  /external/icu/icu4c/source/test/perf/collationperf/
CollPerf.pl 202 <td>The average length of the generated sort keys, in bytes per character
  /external/tensorflow/tensorflow/contrib/bayesflow/python/ops/
csiszar_divergence_impl.py 867 When `True` uses the standard Monte-Carlo average. When `False` uses the
946 The `Avg{h[j;i] : j}` term is a kind of "swap-out average" where the `i`-th
947 element has been replaced by the leave-`i`-out Geometric-average.
1017 average of `u`. The sum of the gradient of `log_avg_u` is `1`.
1019 average of `u`` except that the average swaps-out `u[i]` for the
1020 leave-`i`-out Geometric-average. The mean of the gradient of
    [all...]
  /external/tensorflow/tensorflow/contrib/losses/python/losses/
loss_ops_test.py 260 self.assertAlmostEqual(np.average(weights) * 10.0, loss, 3)
275 self.assertAlmostEqual(np.average(weights) * 10.0, loss, 3)
496 self.assertAlmostEqual(np.average(weights) * 10.0, loss, 3)
510 self.assertAlmostEqual(np.average(weights) * 10.0, loss, 3)
    [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
merge_test.py 95 o = keras.layers.average([i1, i2])
  /libcore/ojluni/src/main/java/java/util/stream/
DoublePipeline.java 419 * values, the divisor in the average computation will saturate at
423 public final OptionalDouble average() {

Completed in 1186 milliseconds

1 2 3 4 56 7 8 91011>>