/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/ |
D | Kurtosis.java | 17 package org.apache.commons.math.stat.descriptive.moment; 53 protected FourthMoment moment; field in Kurtosis 68 moment = new FourthMoment(); in Kurtosis() 78 this.moment = m4; in Kurtosis() 97 moment.increment(d); in increment() 110 if (moment.getN() > 3) { in getResult() 111 double variance = moment.m2 / (moment.n - 1); in getResult() 112 if (moment.n <= 3 || variance < 10E-20) { in getResult() 115 double n = moment.n; in getResult() 117 (n * (n + 1) * moment.m4 - in getResult() [all …]
|
D | Skewness.java | 17 package org.apache.commons.math.stat.descriptive.moment; 47 protected ThirdMoment moment = null; field in Skewness 62 moment = new ThirdMoment(); in Skewness() 71 this.moment = m3; in Skewness() 90 moment.increment(d); in increment() 104 if (moment.n < 3) { in getResult() 107 double variance = moment.m2 / (moment.n - 1); in getResult() 111 double n0 = moment.getN(); in getResult() 112 return (n0 * moment.m3) / in getResult() 121 return moment.getN(); in getN() [all …]
|
D | Variance.java | 17 package org.apache.commons.math.stat.descriptive.moment; 74 protected SecondMoment moment = null; field in Variance 95 moment = new SecondMoment(); in Variance() 106 this.moment = m2; in Variance() 118 moment = new SecondMoment(); in Variance() 133 this.moment = m2; in Variance() 159 moment.increment(d); in increment() 168 if (moment.n == 0) { in getResult() 170 } else if (moment.n == 1) { in getResult() 174 return moment.m2 / (moment.n - 1d); in getResult() [all …]
|
D | Mean.java | 17 package org.apache.commons.math.stat.descriptive.moment; 66 protected FirstMoment moment; field in Mean 79 moment = new FirstMoment(); in Mean() 88 this.moment = m1; in Mean() 108 moment.increment(d); in increment() 118 moment.clear(); in clear() 127 return moment.m1; in getResult() 134 return moment.getN(); in getN() 270 dest.moment = source.moment.copy(); in copy()
|
/external/tensorflow/tensorflow/python/kernel_tests/random/ |
D | util.py | 52 expected_moments.append(dist.moment(i)) 54 (dist.moment(2 * i) - dist.moment(i) ** 2) / len(strided_range))
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/ |
D | DescriptiveStatistics.java | 25 import org.apache.commons.math.stat.descriptive.moment.GeometricMean; 26 import org.apache.commons.math.stat.descriptive.moment.Kurtosis; 27 import org.apache.commons.math.stat.descriptive.moment.Mean; 28 import org.apache.commons.math.stat.descriptive.moment.Skewness; 29 import org.apache.commons.math.stat.descriptive.moment.Variance;
|
D | SummaryStatistics.java | 23 import org.apache.commons.math.stat.descriptive.moment.GeometricMean; 24 import org.apache.commons.math.stat.descriptive.moment.Mean; 25 import org.apache.commons.math.stat.descriptive.moment.SecondMoment; 26 import org.apache.commons.math.stat.descriptive.moment.Variance;
|
D | MultivariateSummaryStatistics.java | 26 import org.apache.commons.math.stat.descriptive.moment.GeometricMean; 27 import org.apache.commons.math.stat.descriptive.moment.Mean; 28 import org.apache.commons.math.stat.descriptive.moment.VectorialCovariance;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/ |
D | StatUtils.java | 23 import org.apache.commons.math.stat.descriptive.moment.GeometricMean; 24 import org.apache.commons.math.stat.descriptive.moment.Mean; 25 import org.apache.commons.math.stat.descriptive.moment.Variance;
|
/external/llvm/test/CodeGen/SystemZ/ |
D | vec-move-17.ll | 40 ; Test a v4i32->v4i8 truncation. At the moment we use a VPERM rather than 71 ; Test a v2i64->v2i8 truncation. At the moment we use a VPERM rather than 83 ; Test a v2i64->v2i16 truncation. At the moment we use a VPERM rather than
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | parameterized_truncated_normal_op_test.py | 62 def __getitem__(self, moment): argument 75 assert moment > 0 79 for k in range(len(self.memoized_moments), moment + 1): 89 return self.memoized_moments[moment]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/ |
D | Covariance.java | 23 import org.apache.commons.math.stat.descriptive.moment.Mean; 24 import org.apache.commons.math.stat.descriptive.moment.Variance;
|
/external/tensorflow/tensorflow/core/lib/random/ |
D | random_distributions_test.cc | 89 double moment = 1.; in CheckSamplesMoments() local 98 moments_data[i] += moment; in CheckSamplesMoments() 100 moment *= static_cast<double>(samples_data[index]); in CheckSamplesMoments()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SystemZ/ |
D | vec-move-17.ll | 40 ; Test a v4i32->v4i8 truncation. At the moment we use a VPERM rather than 79 ; Test a v2i64->v2i8 truncation. At the moment we use a VPERM rather than 91 ; Test a v2i64->v2i16 truncation. At the moment we use a VPERM rather than
|
/external/ltp/runtest/ |
D | ipc | 10 # This test hits EAGAIN, which pipeio doesn't handle at the moment 26 # This test hits EAGAIN, which pipeio doesn't handle at the moment
|
/external/walt/docs/ |
D | AudioLatency.md | 3 Audio output latency as measured by WALT is the time that passes from the moment an application 28 …signal on the wire. Note that this does not include the time between the moment the app decided to… 31 The reported latency is the time from the moment the last frame in a buffer was recorded until the
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_ResourceApplyCenteredRMSProp.pbtxt | 61 The centered RMSProp algorithm uses an estimate of the centered second moment 63 uses the (uncentered) second moment. This often helps with training, but is
|
D | api_def_ResourceSparseApplyCenteredRMSProp.pbtxt | 67 The centered RMSProp algorithm uses an estimate of the centered second moment 69 uses the (uncentered) second moment. This often helps with training, but is
|
D | api_def_ApplyCenteredRMSProp.pbtxt | 67 The centered RMSProp algorithm uses an estimate of the centered second moment 69 uses the (uncentered) second moment. This often helps with training, but is
|
D | api_def_SparseApplyCenteredRMSProp.pbtxt | 73 The centered RMSProp algorithm uses an estimate of the centered second moment 75 uses the (uncentered) second moment. This often helps with training, but is
|
/external/llvm/test/CodeGen/AArch64/ |
D | bitfield.ll | 14 ; moment, but it's still a good test to have and the semantics are 30 ; moment, but it's still a good test to have and the semantics are 46 ; moment, but it's still a good test to have and the semantics are 62 ; moment, but it's still a good test to have and the semantics are
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | bitfield.ll | 14 ; moment, but it's still a good test to have and the semantics are 30 ; moment, but it's still a good test to have and the semantics are 46 ; moment, but it's still a good test to have and the semantics are 62 ; moment, but it's still a good test to have and the semantics are
|
/external/llvm/test/CodeGen/X86/ |
D | lower-bitcast.ll | 12 ; single paddd instruction. At the moment we produce the sequence 71 ; FIXME: At the moment we still produce the sequence pshufd+paddd+pshufd. 153 ; single paddb instruction. At the moment we produce the sequence
|
/external/gemmlowp/doc/ |
D | public.md | 57 * `InputScalar`: The scalar type of the LHS and RHS operands. At the moment, 59 * `OutputScalar`: The scalar type of the LHS and RHS operands. At the moment, 62 and the required accuracy of the computation. At the moment, the only 77 * `GemmContextType`: the type of the `context` parameter. At the moment, this
|
/external/clang/test/CodeGenObjC/ |
D | catch-lexical-block.m | 10 // We should have 3 lexical blocks here at the moment, including one
|