HomeSort by relevance Sort by last modified time
    Searched refs:dense_to_sparse_batch (Results 1 - 4 of 4) sorted by null

  /external/tensorflow/tensorflow/contrib/data/
__init__.py 28 @@dense_to_sparse_batch
53 from tensorflow.contrib.data.python.ops.batching import dense_to_sparse_batch
  /external/tensorflow/tensorflow/contrib/data/python/ops/
dataset_ops.py 433 Like `Dataset.dense_to_sparse_batch()`, this method combines
462 None, "Use `ds.apply(tf.contrib.data.dense_to_sparse_batch())`.")
463 def dense_to_sparse_batch(self, batch_size, row_shape): member in class:Dataset
464 """Use: `Dataset.apply(tf.contrib.data.dense_to_sparse_batch(...))`."""
466 return self.apply(batching.dense_to_sparse_batch(batch_size, row_shape))
batching.py 33 def dense_to_sparse_batch(batch_size, row_shape): function
50 a.apply(tf.contrib.data.dense_to_sparse_batch(batch_size=2, row_shape=[6])) ==
227 """See `Dataset.dense_to_sparse_batch()` for more details."""
  /external/tensorflow/tensorflow/contrib/data/python/kernel_tests/
batch_dataset_op_test.py 49 batching.dense_to_sparse_batch(4, [12]))
77 batching.dense_to_sparse_batch(
109 batching.dense_to_sparse_batch(4, [-2])).make_initializable_iterator()
115 batching.dense_to_sparse_batch(4, [12]))
475 batching.dense_to_sparse_batch(4, [12]))

Completed in 530 milliseconds