Searched refs:metrics (Results 276 - 300 of 444) sorted by relevance

<<1112131415161718

/external/tensorflow/tensorflow/python/keras/_impl/keras/engine/
H A Dtraining.py31 from tensorflow.python.keras._impl.keras import metrics as metrics_module
308 def _collect_metrics(metrics, output_names):
312 metrics: a list or dict of metric functions.
324 TypeError: if an incorrect type is passed for the `metrics` argument.
326 if not metrics:
328 if isinstance(metrics, list):
329 # we then apply all metrics to all outputs.
330 return [copy.copy(metrics) for _ in output_names]
331 elif isinstance(metrics, dict):
334 output_metrics = metrics
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DReportProperties.java147 public void setMetrics (final IntIntMap metrics) argument
149 if ($assert.ENABLED) $assert.ASSERT (metrics != null, "null input: metrics");
151 m_metrics = metrics;
/external/icu/icu4c/source/samples/layout/
H A DGDIFontInstance.cpp373 GLYPHMETRICS metrics; local
380 result = GetGlyphOutline(hdc, glyph, GGO_GLYPH_INDEX | GGO_METRICS, &metrics, 0, NULL, &identity);
386 advance.fX = metrics.gmCellIncX;
H A DGnomeFontInstance.cpp160 advance.fX = fFace->glyph->metrics.horiAdvance >> 6;
/external/skia/src/ports/
H A DSkTypeface_win_dw.cpp132 DWRITE_FONT_METRICS metrics; local
133 fDWriteFontFace->GetMetrics(&metrics);
134 return metrics.designUnitsPerEm;
/external/skqp/src/ports/
H A DSkTypeface_win_dw.cpp132 DWRITE_FONT_METRICS metrics; local
133 fDWriteFontFace->GetMetrics(&metrics);
134 return metrics.designUnitsPerEm;
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
H A Ddnn_linear_combined_test.py38 from tensorflow.contrib.metrics.python.ops import metric_ops
60 def _assert_metrics_in_range(keys, metrics):
64 metrics)
793 """Tests custom evaluation metrics."""
824 metrics={
853 metrics={('bad_name', 'bad_type'): metric_ops.streaming_auc})
860 metrics={
871 metrics={
1417 """Tests custom evaluation metrics."""
1444 metrics
[all...]
H A D_sklearn.py194 from sklearn.metrics import accuracy_score, log_loss, mean_squared_error
H A Ddnn_linear_combined.py1023 metrics=None,
1030 if metrics:
1031 for key, metric in six.iteritems(metrics):
1045 metrics=custom_metrics,
/external/ImageMagick/MagickCore/
H A Ddraw.h256 *metrics, member in struct:_DrawInfo
/external/autotest/client/common_lib/cros/cfm/metrics/
H A Dmedia_info_metrics_extractor_unittest.py3 from autotest_lib.client.common_lib.cros.cfm.metrics import (
H A Dmedia_metrics_collector.py3 from autotest_lib.client.common_lib.cros.cfm.metrics import (
34 # Get metrics of a kind we know exists and count the nuber of values
147 """Collects metrics for a test run."""
167 # getting metrics
/external/autotest/tko/
H A Dparse.py35 from chromite.lib import metrics namespace
37 metrics = utils.metrics_mock variable
461 metrics.Counter(
737 metrics.Flush()
/external/freetype/src/pcf/
H A Dpcf.h152 PCF_Metric metrics; member in struct:PCF_FaceRec_
/external/freetype/src/sfnt/
H A Dttbdf.c181 if ( _ppem == size->metrics.y_ppem )
/external/freetype/src/truetype/
H A Dttobjs.h279 /* we have our own copy of metrics so that we can modify */
281 FT_Size_Metrics* metrics; /* for the current rendering mode */ member in struct:TT_SizeRec_
/external/libmojo/base/android/java/src/org/chromium/base/
H A DPathUtils.java16 import org.chromium.base.metrics.RecordHistogram;
/external/llvm/utils/lit/lit/
H A Dmain.py68 # Report test metrics, if present.
69 if test.result.metrics:
72 items = sorted(test.result.metrics.items())
103 # Add test metrics, if present.
104 if test.result.metrics:
105 test_data['metrics'] = metrics_data = {}
106 for key, value in test.result.metrics.items():
/external/noto-fonts/emoji-compat/
H A Dcreatefont.py208 def update_metrics(self, metrics):
209 """Updates width/height instance variables with the values given in metrics dictionary.
210 :param metrics: a dictionary object that has width and height values.
212 self.width = metrics.width
213 self.height = metrics.height
478 self.glyph_to_image_metrics_map[key] = data.metrics
/external/skia/src/core/
H A DSkTypeface_remote.h25 // TODO: do metrics need effects?
67 void generateFontMetrics(SkPaint::FontMetrics* metrics) override;
/external/skqp/src/core/
H A DSkTypeface_remote.h25 // TODO: do metrics need effects?
62 void generateFontMetrics(SkPaint::FontMetrics* metrics) override;
/external/tcpdump/
H A Dospf.h162 struct tos_metric metrics; member in union:un_tos
/external/tensorflow/tensorflow/contrib/
H A D__init__.py56 from tensorflow.contrib import metrics namespace
/external/tensorflow/tensorflow/contrib/tensor_forest/client/
H A Deval_metrics.py15 """A collection of functions to be used as evaluation metrics."""
24 from tensorflow.contrib.metrics.python.ops import metric_ops
/external/tensorflow/tensorflow/examples/get_started/regression/
H A Dcustom_regression.py68 # In evaluation mode we will calculate evaluation metrics.
72 rmse = tf.metrics.root_mean_squared_error(labels, predictions)
74 # Add the rmse to the collection of evaluation metrics.

Completed in 774 milliseconds

<<1112131415161718