Searched refs:moving_average (Results 1 – 6 of 6) sorted by relevance
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
D | optimizers.py | 317 def moving_average(name, value, decay): function 333 mean = moving_average("mean", log_norm, decay) 334 sq_mean = moving_average("sq_mean", math_ops.square(log_norm), decay)
|
/external/webrtc/webrtc/modules/video_coding/utility/ |
D | video_coding_utility.gyp | 23 'moving_average.h',
|
/external/webrtc/webrtc/modules/video_coding/ |
D | BUILD.gn | 98 "utility/moving_average.h",
|
/external/autotest/client/site_tests/firmware_TouchMTB/ |
D | mtb.py | 949 moving_average = float(moving_sum) / self.LEN_MOVING_AVERAGE 950 cond1 = numbers[index] >= self.LEVEL_JUMP_RATIO * moving_average
|
/external/python/cpython2/Doc/library/ |
D | collections.rst | 410 def moving_average(iterable, n=3): 411 # moving_average([40, 30, 50, 46, 39, 44]) --> 40.0 42.0 45.0 43.0
|
/external/python/cpython3/Doc/library/ |
D | collections.rst | 628 def moving_average(iterable, n=3): 629 # moving_average([40, 30, 50, 46, 39, 44]) --> 40.0 42.0 45.0 43.0
|