Searched defs:accuracy (Results 1 - 25 of 36) sorted by relevance

12

/external/tensorflow/tensorflow/contrib/metrics/python/metrics/
H A Dclassification.py29 def accuracy(predictions, labels, weights=None, name=None): function
37 weights: None or `Tensor` of float values to reweight the accuracy.
56 with ops.name_scope(name, 'accuracy', values=[predictions, labels]):
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowCriteria.java10 private int accuracy = Criteria.NO_REQUIREMENT; field in class:ShadowCriteria
18 accuracy = criteria.getAccuracy();
24 return accuracy;
28 public void setAccuracy(int accuracy) { argument
29 this.accuracy = accuracy;
49 if (criteria.getAccuracy() == accuracy && criteria.getPowerRequirement() == powerRequirement) {
H A DShadowLocation.java22 private float accuracy; field in class:ShadowLocation
59 accuracy = l.getAccuracy();
92 return accuracy;
96 public void setAccuracy(float accuracy) { argument
97 this.accuracy = accuracy;
103 this.accuracy = 0.0f;
213 if (accuracy != that.accuracy) return false;
227 temp = accuracy !
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/
H A DConvergingAlgorithm.java30 * be moved to a new {@code IterativeAlgorithm}. The concept of "accuracy" is
68 * Set the absolute accuracy.
71 * -10..-0.1 and +0.1..+10 can be found with a reasonable accuracy. If the
76 * accuracy, but clients should not rely on this.</p>
78 * @param accuracy the accuracy.
79 * @throws IllegalArgumentException if the accuracy can't be achieved by
82 void setAbsoluteAccuracy(double accuracy); argument
85 * Get the actual absolute accuracy.
87 * @return the accuracy
112 setRelativeAccuracy(double accuracy) argument
[all...]
H A DConvergingAlgorithmImpl.java52 * Construct an algorithm with given iteration count and accuracy.
89 public void setAbsoluteAccuracy(double accuracy) { argument
90 absoluteAccuracy = accuracy;
119 public void setRelativeAccuracy(double accuracy) { argument
120 relativeAccuracy = accuracy;
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DUnivariateRealSolver.java35 * Set the function value accuracy.
43 * @param accuracy the accuracy.
44 * @throws IllegalArgumentException if the accuracy can't be achieved by
47 void setFunctionValueAccuracy(double accuracy); argument
50 * Get the actual function value accuracy.
51 * @return the accuracy
56 * Reset the actual function accuracy to the default.
H A DUnivariateRealSolverImpl.java63 * Construct a solver with given iteration count and accuracy.
89 * Construct a solver with given iteration count and accuracy.
125 public void setFunctionValueAccuracy(final double accuracy) { argument
126 functionValueAccuracy = accuracy;
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DSensorManagerTest.java74 public void onAccuracyChanged(Sensor sensor, int accuracy) { argument
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
H A DShadowSensorManagerTest.java109 public void onAccuracyChanged(Sensor sensor, int accuracy) { argument
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DAppRTCProximitySensor.java92 public final void onAccuracyChanged(Sensor sensor, int accuracy) { argument
95 if (accuracy == SensorManager.SENSOR_STATUS_UNRELIABLE) {
122 + "accuracy=" + event.accuracy
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
H A DLoessInterpolator.java54 * Default value for accuracy.
85 private final double accuracy; field in class:LoessInterpolator
91 * and an accuracy of {#link #DEFAULT_ACCURACY}.
98 this.accuracy = DEFAULT_ACCURACY;
130 * with given bandwidth, number of robustness iterations and accuracy.
142 * @param accuracy If the median residual at a certain robustness iteration
149 public LoessInterpolator(double bandwidth, int robustnessIters, double accuracy) throws MathException { argument
159 this.accuracy = accuracy;
301 if (FastMath.sqrt(FastMath.abs(meanXSquared - meanX * meanX)) < accuracy) {
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
H A DMultiStartUnivariateRealOptimizer.java147 public void setAbsoluteAccuracy(double accuracy) { argument
148 optimizer.setAbsoluteAccuracy(accuracy);
162 public void setRelativeAccuracy(double accuracy) { argument
163 optimizer.setRelativeAccuracy(accuracy);
/external/skia/src/core/
H A DSkAnalyticEdge.h46 static const int kDefaultAccuracy = 2; // default accuracy for snapping
49 const int accuracy = kDefaultAccuracy; local
51 return ((unsigned)y + (SK_Fixed1 >> (accuracy + 1))) >> (16 - accuracy) << (16 - accuracy);
141 const int accuracy = kDefaultAccuracy;
143 SkFixed x0 = SkFDot6ToFixed(SkScalarRoundToFDot6(p0.fX, accuracy)) >> accuracy;
144 SkFixed y0 = SnapY(SkFDot6ToFixed(SkScalarRoundToFDot6(p0.fY, accuracy)) >> accuracy);
[all...]
/external/skqp/src/core/
H A DSkAnalyticEdge.h46 static const int kDefaultAccuracy = 2; // default accuracy for snapping
49 const int accuracy = kDefaultAccuracy; local
51 return ((unsigned)y + (SK_Fixed1 >> (accuracy + 1))) >> (16 - accuracy) << (16 - accuracy);
141 const int accuracy = kDefaultAccuracy;
143 SkFixed x0 = SkFDot6ToFixed(SkScalarRoundToFDot6(p0.fX, accuracy)) >> accuracy;
144 SkFixed y0 = SnapY(SkFDot6ToFixed(SkScalarRoundToFDot6(p0.fY, accuracy)) >> accuracy);
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DAndouKun.java723 public void onAccuracyChanged(Sensor sensor, int accuracy) { argument
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
H A DSensorManagerFacade.java42 * accuracy (usually represented by 10 bit data). The floating point data values obtained from
81 * s1 = {u'accuracy': 3, u'pitch': -0.47323511242866517, u'xmag': 1.75, u'azimuth':
85 * s2 = 3 (Highest accuracy)<br>
220 @Rpc(description = "Returns the most recently received accuracy value.")
289 public void onAccuracyChanged(Sensor sensor, int accuracy) { argument
294 mSensorReadings.putInt("accuracy", accuracy);
295 mAccuracy = accuracy;
/external/tensorflow/tensorflow/python/ops/
H A Dmetrics_impl.py347 @tf_export('metrics.accuracy')
348 def accuracy(labels, function
356 The `accuracy` function creates two local variables, `total` and
358 matches `labels`. This frequency is ultimately returned as `accuracy`: an
362 `update_op` operation that updates these variables and returns the `accuracy`.
378 metrics_collections: An optional list of collections that `accuracy` should
385 accuracy: A `Tensor` representing the accuracy, the value of `total` divided
388 appropriately and whose value matches `accuracy`.
398 raise RuntimeError('tf.metrics.accuracy i
[all...]
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/core/ org/eclipse/jdt/core/compiler/ org/ ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/python/cpython2/Mac/Modules/qt/
H A D_Qtmodule.c10796 CodecQ accuracy; local
10810 &accuracy,
10821 accuracy,
26573 PyDoc_STR("(ImageDescriptionHandle srcDD, Ptr srcData, short colorDepth, CTabHandle ctable, CodecQ accuracy, CodecQ quality, CodecType cType, CodecComponent codec, ImageDescriptionHandle dstDD, Ptr dstData) -> None")},
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/robolectric/v3/runtime/
H A Dshadows-core-3.1-SNAPSHOT-16.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-17.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-18.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-19.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...

Completed in 1287 milliseconds

12