aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/api_docs/python/functions_and_classes/shard1/tf.shape.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/g3doc/api_docs/python/functions_and_classes/shard1/tf.shape.md')
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard1/tf.shape.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard1/tf.shape.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard1/tf.shape.md
new file mode 100644
index 0000000000..4262f41a3d
--- /dev/null
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard1/tf.shape.md
@@ -0,0 +1,23 @@
+### `tf.shape(input, name=None)` {#shape}
+
+Returns the shape of a tensor.
+
+This operation returns a 1-D integer tensor representing the shape of `input`.
+
+For example:
+
+```prettyprint
+# 't' is [[[1, 1, 1], [2, 2, 2]], [[3, 3, 3], [4, 4, 4]]]
+shape(t) ==> [2, 2, 3]
+```
+
+##### Args:
+
+
+* <b>`input`</b>: A `Tensor`.
+* <b>`name`</b>: A name for the operation (optional).
+
+##### Returns:
+
+ A `Tensor` of type `int32`.
+