HomeSort by relevance Sort by last modified time
    Searched refs:evaluate (Results 201 - 225 of 994) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/tensorflow/tensorflow/python/keras/_impl/keras/wrappers/
scikit_learn.py 89 Sequential.evaluate
283 Legal arguments are the arguments of `Sequential.evaluate`.
295 kwargs = self.filter_sk_params(Sequential.evaluate, kwargs)
303 outputs = self.model.evaluate(x, y, **kwargs)
346 Legal arguments are the arguments of `Sequential.evaluate`.
352 kwargs = self.filter_sk_params(Sequential.evaluate, kwargs)
353 loss = self.model.evaluate(x, y, **kwargs)
  /external/tensorflow/tensorflow/python/kernel_tests/
tensor_array_ops_test.py 93 d0, d1, d2 = self.evaluate([r0, r1, r2])
111 c0 = self.evaluate(c0)
141 c0 = self.evaluate(c0)
157 c0 = self.evaluate(c0)
179 self.assertAllEqual([[0.0, 0.0]], self.evaluate(ta.read(0)))
181 self.evaluate(ta.write(1, [[4.0, 5.0]]).stack()))
183 self.evaluate(ta.write(1, [[4.0, 5.0]]).concat()))
195 [[0.0, 0.0]], self.evaluate(ta.write(1, [[4.0, 5.0]]).read(0)))
197 self.evaluate(ta.write(1, [[4.0, 5.0]]).stack()))
199 self.evaluate(ta.write(1, [[4.0, 5.0]]).concat())
    [all...]
  /external/tensorflow/tensorflow/python/training/
momentum_test.py 70 self.evaluate(variables.global_variables_initializer())
72 self.assertAllClose([1.0, 2.0], self.evaluate(var0))
73 self.assertAllClose([3.0, 4.0], self.evaluate(var1))
88 self.evaluate(mom_update)
91 self.evaluate(slot0))
93 self.evaluate(slot1))
97 self.evaluate(var0))
100 self.evaluate(var1))
103 self.evaluate(mom_update)
109 self.evaluate(slot0)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
Util.java 26 return mean.evaluate(data);
34 return std.evaluate(data);
43 return median.evaluate();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
Covariance.java 170 outMatrix.setEntry(i, i, variance.evaluate(matrix.getColumn(i)));
232 double xMean = mean.evaluate(xArray);
233 double yMean = mean.evaluate(yArray);
  /frameworks/base/core/java/android/animation/
FloatKeyframeSet.java 71 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
87 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
105 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
IntKeyframeSet.java 71 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
87 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).intValue();
104 ((Number)mEvaluator.evaluate(intervalFraction, prevValue, nextValue)).
  /frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/perf/
TimedStatement.java 132 public void evaluate() throws Throwable { method in class:TimedStatement
138 mStatement.evaluate();
159 mStatement.evaluate();
  /libcore/ojluni/src/main/java/java/util/stream/
ReferencePipeline.java 419 evaluate(ForEachOps.makeRef(action, false));
424 evaluate(ForEachOps.makeRef(action, true));
451 return evaluate(MatchOps.makeRef(predicate, MatchOps.MatchKind.ANY));
456 return evaluate(MatchOps.makeRef(predicate, MatchOps.MatchKind.ALL));
461 return evaluate(MatchOps.makeRef(predicate, MatchOps.MatchKind.NONE));
466 return evaluate(FindOps.makeRef(true));
471 return evaluate(FindOps.makeRef(false));
476 return evaluate(ReduceOps.makeRef(identity, accumulator, accumulator));
481 return evaluate(ReduceOps.makeRef(accumulator));
486 return evaluate(ReduceOps.makeRef(identity, accumulator, combiner))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathImpl.java 226 * <p>Evaluate an <code>XPath</code> expression in the specified context and return the result as the specified type.</p>
256 public Object evaluate(String expression, Object item, QName returnType) method in class:XPathImpl
346 * <p>Evaluate an XPath expression in the specified context and return the result as a <code>String</code>.</p>
348 * <p>This method calls {@link #evaluate(String expression, Object item, QName returnType)} with a <code>returnType</code> of
369 public String evaluate(String expression, Object item) method in class:XPathImpl
371 return (String)this.evaluate( expression, item, XPathConstants.STRING );
414 * <p>Evaluate an XPath expression in the context of the specified <code>InputSource</code>
418 * {@link #evaluate(String expression, Object item, QName returnType)} on the resulting document object.</p>
431 * @param source The input source of the document to evaluate over.
441 public Object evaluate(String expression, InputSource source, method in class:XPathImpl
519 public String evaluate(String expression, InputSource source) method in class:XPathImpl
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
PolynomialFunctionNewtonForm.java 93 return evaluate(a, c, z);
148 * Evaluate the Newton polynomial using nested multiplication. It is
159 public static double evaluate(double a[], double c[], double z) method in class:PolynomialFunctionNewtonForm
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
Skewness.java 151 public double evaluate(final double[] values,final int begin, method in class:Skewness
160 double m = mean.evaluate(values, begin, length);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
CsmConditional.java 63 boolean evaluate(Node node, ObservableProperty property){ method in class:CsmConditional.Condition
107 test = test || condition.evaluate(node, prop);
  /external/junit/src/main/java/org/junit/internal/runners/statements/
FailOnTimeout.java 97 public void evaluate() throws Throwable { method in class:FailOnTimeout
148 originalStatement.evaluate();
  /external/junit/src/main/java/org/junit/rules/
TestWatcher.java 50 public void evaluate() throws Throwable {
55 base.evaluate();
  /external/vogar/test/vogar/testing/
InterceptOutputStreams.java 114 public void evaluate() throws Throwable {
121 base.evaluate();
  /libcore/dalvik/src/test/java/libcore/dalvik/system/
CloseGuardTest.java 40 public void evaluate() throws Throwable {
43 base.evaluate();
  /libcore/test-rules/src/main/java/libcore/junit/junit3/
TestCaseWithRules.java 65 public void evaluate() throws Throwable {
106 statement.evaluate();
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
SpeedAnglesClassifier.java 73 return SpeedVarianceEvaluator.evaluate(data.getAnglesVariance())
74 + SpeedAnglesPercentageEvaluator.evaluate(data.getAnglesPercentage());
  /packages/apps/Launcher3/tests/src/com/android/launcher3/util/rule/
LauncherActivityRule.java 92 public void evaluate() throws Throwable {
97 mBase.evaluate();
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/
bignums.s 7 # should both evaluate without errors.
  /development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/
PathEvaluator.java 28 public PathPoint evaluate(float t, PathPoint startValue, PathPoint endValue) { method in class:PathEvaluator
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
Max.java 127 public double evaluate(final double[] values, final int begin, final int length) { method in class:Max
Min.java 127 public double evaluate(final double[] values,final int begin, final int length) { method in class:Min
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
SumOfLogs.java 131 public double evaluate(final double[] values, final int begin, final int length) { method in class:SumOfLogs

Completed in 535 milliseconds

1 2 3 4 5 6 7 891011>>