Home
last modified time | relevance | path

Searched refs:expected_batch_size (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/compiler/tf2tensorrt/segment/
Dsegment.cc825 ClusterBatchSize expected_batch_size = in SegmentGraph() local
829 VLOG(3) << "batch size " << expected_batch_size; in SegmentGraph()
850 ClusterBatchSize merged_batch_size = expected_batch_size; in SegmentGraph()
853 << expected_batch_size.ToString() << " " in SegmentGraph()
872 expected_batch_size = merged_batch_size; in SegmentGraph()
905 if (expected_batch_size != in SegmentGraph()
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/
Dgroup_by_window_test.py203 expected_batch_size = 5 if is_even else 10
204 self.assertEqual(expected_batch_size, result.shape[0])
/external/tensorflow/tensorflow/python/feature_column/
Dfeature_column.py3239 expected_batch_size = None
3242 if expected_batch_size is None:
3244 expected_batch_size = tensors[i].shape.dims[0]
3245 elif not expected_batch_size.is_compatible_with(tensors[i].shape.dims[0]):
3250 expected_batch_size, tensors[i].shape.dims[0]))
Dfeature_column_v2.py4299 expected_batch_size = None
4304 if expected_batch_size is None:
4306 expected_batch_size = batch_size
4307 elif not expected_batch_size.is_compatible_with(batch_size):
4312 expected_batch_size, batch_size))