HomeSort by relevance Sort by last modified time
    Searched defs:Metric (Results 1 - 13 of 13) sorted by null

  /external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Core/
Metric.php 12 * Generated from protobuf message <code>grpc.core.Metric</code>
14 class Metric extends \Google\Protobuf\Internal\Message
  /external/opencensus-java/api/src/main/java/io/opencensus/metrics/export/
Metric.java 32 * A {@link Metric} with one or more {@link TimeSeries}.
39 public abstract class Metric {
41 Metric() {}
44 * Creates a {@link Metric}.
47 * @param timeSeriesList the {@link TimeSeries} list for this metric.
48 * @return a {@code Metric}.
51 public static Metric create(MetricDescriptor metricDescriptor, List<TimeSeries> timeSeriesList) {
59 * Creates a {@link Metric}.
62 * @param timeSeries the single {@link TimeSeries} for this metric.
63 * @return a {@code Metric}
    [all...]
  /external/tensorflow/tensorflow/contrib/eager/python/
metrics_impl.py 40 class Metric(trackable.Trackable):
41 """A metric holds state for aggregating statistics over an evaluation run.
56 inputs = ... # Some tensors to compute the metric on.
89 * `result()`: Computes and returns a final value for the metric
136 """Returns op to execute to update this metric for these inputs.
143 **kwargs: A mini-batch of inputs to the Metric, passed on to `call()`.
161 """Initializes this Metric's variables.
194 """Accumulates statistics for the metric. Users should use __call__ instead.
208 **kwargs: A mini-batch of inputs to the Metric, as passed to
214 """Computes and returns a final value for the metric.""
    [all...]
  /external/autotest/client/common_lib/cros/
system_metrics_collector.py 1 class Metric(object):
8 Initializes a Metric.
9 @param description: Description of the metric, e.g., used as label on a
11 @param units: Units of the metric, e.g. percent, seconds, MB.
22 """Description of the metric."""
27 """Units of the metric."""
37 """Measured values of the metric."""
48 Subclasses can override this to aggregate the metric into a single
74 Instantiate from an existing metric instance.
76 metric = cls
    [all...]
  /external/opencensus-java/api/src/test/java/io/opencensus/metrics/export/
MetricTest.java 36 /** Unit tests for {@link Metric}. */
44 private static final String DESCRIPTION = "Metric description.";
84 Metric metric = local
85 Metric.create(METRIC_DESCRIPTOR_1, Arrays.asList(GAUGE_TIME_SERIES_1, GAUGE_TIME_SERIES_2));
86 assertThat(metric.getMetricDescriptor()).isEqualTo(METRIC_DESCRIPTOR_1);
87 assertThat(metric.getTimeSeriesList())
112 Metric.create(metricDescriptor, timeSeriesList);
119 Metric.create(null, Collections.<TimeSeries>emptyList());
126 Metric.create(METRIC_DESCRIPTOR_1, null)
140 Metric metric = Metric.create(METRIC_DESCRIPTOR_1, timeSeriesList); local
161 Metric metric = Metric.createWithOneTimeSeries(METRIC_DESCRIPTOR_1, GAUGE_TIME_SERIES_1); local
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_log.py 111 class Metric:
112 """A class to handle the name and the value of a metric."""
118 """Insert the key to this metric."""
124 """A class keeping the information of metric name templates, descriptions,
135 The raw_metrics_props is a dictionary from metric attribute to the
136 corresponding metric properties. Take MAX_ERR as an example of metric
137 attribute. Its metric properties include
138 . metric name template: 'max error in {} (mm)'
139 The metric name template will be expanded later. For example
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
statistics_calculator.cc 46 LogToUma(Metric());
65 LogToUma(Metric());
72 int StatisticsCalculator::PeriodicUmaCount::Metric() const {
89 LogToUma(Metric());
97 int StatisticsCalculator::PeriodicUmaAverage::Metric() const {
  /external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/CoreStats/
Stats.cs 38 new pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Core.Metric), global::Grpc.Core.Metric.Parser, new[]{ "Name", "Count", "Histogram" }, new[]{ "Value" }, null, null),
324 public sealed partial class Metric : pb::IMessage<Metric> {
325 private static readonly pb::MessageParser<Metric> _parser = new pb::MessageParser<Metric>(() => new Metric());
328 public static pb::MessageParser<Metric> Parser { get { return _parser; } }
341 public Metric() {
348 public Metric(Metric other) : this()
    [all...]
  /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
PerfStatsCollector.java 19 private final Map<MetricKey, Metric> metricMap = new HashMap<>();
89 public synchronized Collection<Metric> getMetrics() {
133 Metric metric = metricMap.get(key); local
134 if (metric == null) {
135 metricMap.put(key, metric = new Metric(key.name, key.success));
137 metric.count++;
138 metric.elapsedNs += clock.nanoTime() - startTimeNs;
144 * Metric for perf stats collection
188 Metric metric = (Metric) o; local
    [all...]
  /external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/metrics/
MetricRegistryImplTest.java 32 import io.opencensus.metrics.export.Metric;
241 Collection<Metric> metricCollections = metricRegistry.getMetricProducer().getMetrics();
245 Metric.createWithOneTimeSeries(
255 Collection<Metric> metricCollections = metricRegistry.getMetricProducer().getMetrics();
259 Metric.createWithOneTimeSeries(
270 Collection<Metric> metricCollections = metricRegistry.getMetricProducer().getMetrics();
274 Metric.createWithOneTimeSeries(
285 Collection<Metric> metricCollections = metricRegistry.getMetricProducer().getMetrics();
289 Metric.createWithOneTimeSeries(
327 Collection<Metric> metricCollections = metricRegistry.getMetricProducer().getMetrics()
    [all...]
  /external/tensorflow/tensorflow/python/keras/
metrics.py 65 @keras_export('keras.metrics.Metric')
67 class Metric(Layer):
68 """Encapsulates metric logic and state.
106 * `result()`: Computes and returns a value for the metric
112 class BinaryTruePositives(tf.keras.metrics.Metric):
136 super(Metric, self).__init__(name=name, dtype=dtype, **kwargs)
137 self.stateful = True # All metric layers are stateful.
142 obj = super(Metric, cls).__new__(cls)
149 if cls.__module__ == Metric.__module__:
160 """Accumulates statistics and then computes metric result value
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/testng/ant/3rdparty/
cobertura.jar 

Completed in 874 milliseconds