Home
last modified time | relevance | path

Searched refs:result_1 (Results 1 – 11 of 11) sorted by relevance

/external/tensorflow/tensorflow/contrib/boosted_trees/python/kernel_tests/
Dstats_accumulator_ops_test.py149 result_1 = _AccumulatorResultToDict(partition_1, feature_1, grads_1,
155 self.assertEqual(len(result_1), 2)
156 self.assertAllClose(result_1[(1, 2, 0)], [0.1, 0.2])
157 self.assertAllClose(result_1[(2, 3, 0)], [0.3, 0.4])
158 self.assertAllEqual(result_1, result_2)
365 result_1 = _AccumulatorResultToDict(partition_1, feature_1, grads_1,
372 self.assertEqual(len(result_1), 2)
373 self.assertAllClose(result_1[(1, 2, 0)][0], [0.1, 0.1])
374 self.assertAllClose(result_1[(1, 2, 0)][1], [[0.01, 0.02], [0.03, 0.04]])
375 self.assertAllClose(result_1[(2, 3, 0)][0], [0.2, 0.2])
[all …]
Dprediction_ops_test.py1116 result_1, dropout_info_1 = self._get_predictions(
1134 self.assertAllEqual(result_1.eval(), pattern_result.eval())
/external/trappy/trappy/stats/
DCorrelator.py73 result_1 = self._first_agg.aggregate(level=level, **self._agg_kwargs)
80 for group_id, result_group in enumerate(result_1):
114 result_1 = self._first_agg.aggregate(level=level, **self._agg_kwargs)
120 for group_id, result_group in enumerate(result_1):
156 result_1 = self._first_agg.aggregate(level="all")
159 s_x = self._resample(result_1[0])
/external/icu/icu4c/source/i18n/
Dcurrpinf.cpp305 char result_1[1000]; in setupCurrencyPluralPattern() local
306 pattern->extract(0, pattern->length(), result_1, "UTF-8"); in setupCurrencyPluralPattern()
307 … std::cout << "pluralCount: " << pluralCount << "; pattern: " << result_1 << "\n"; in setupCurrencyPluralPattern()
322 pattern->extract(0, pattern->length(), result_1, "UTF-8"); in setupCurrencyPluralPattern()
323 … std::cout << "pluralCount: " << pluralCount << "; pattern: " << result_1 << "\n"; in setupCurrencyPluralPattern()
Ddtitvfmt.cpp91 char result_1[1000]; in createInstance() local
96 pat.extract(0, pat.length(), result_1, "UTF-8"); in createInstance()
97 sprintf(mesg, "skeleton: %s; pattern: %s\n", result, result_1); in createInstance()
602 char result_1[1000]; in initializePattern() local
648 char result_1[1000]; in initializePattern() local
Ddtitvinf.cpp531 char result_1[1000]; in getBestSkeleton() local
/external/tensorflow/tensorflow/python/kernel_tests/
Dstack_op_test.py311 result_1 = ops.convert_to_tensor([[0, 0, 0], [0, ph_1, 0], [0, 0, 0]])
313 [[0, 0, 0], [0, 1, 0], [0, 0, 0]], result_1.eval(feed_dict={ph_1: 1}))
315 [[0, 0, 0], [0, 2, 0], [0, 0, 0]], result_1.eval(feed_dict={ph_1: 2}))
325 result_1 = ops.convert_to_tensor([[0, 0, 0], [0, ph_1, 0], [0, 0, 0]])
328 result_1.eval(feed_dict={ph_1: [1]})
/external/icu/icu4c/source/test/intltest/
Dtufmtts.cpp151 Formattable result_1; in testBasic() local
152 ((Format*)formats[1-style])->parseObject(formatted, result_1, status); in testBasic()
154 …if (!tmaEqual(*((TimeUnitAmount *)result_1.getObject()), *((TimeUnitAmount *) formattable.getObjec… in testBasic()
/external/trappy/tests/
Dtest_plotter.py325 result_1 = trappy.plotter.ILinePlotGen.df_to_dygraph(dfr1)
328 self.assertDictEqual(result_1, expected_result_1)
/external/tensorflow/tensorflow/compiler/xla/tests/
Dlocal_client_execute_test.cc408 std::unique_ptr<ScopedShapedBuffer> result_1 = in XLA_TEST_F() local
410 std::unique_ptr<Literal> result_1_literal = ShapedBufferToLiteral(*result_1); in XLA_TEST_F()
/external/tensorflow/tensorflow/python/framework/
Dfunction_test.py961 result_1 = Foo(3, [1.0, 2.0, 3.0, 4.0])
965 self.assertEqual(4.0, sess.run(result_1))
967 self.assertEqual((4.0, 100), sess.run((result_1, result_2)))