tf.keras.backend.shape | TensorFlow v2.0.0 (original) (raw)
tf.keras.backend.shape
Stay organized with collections Save and categorize content based on your preferences.
Returns the symbolic shape of a tensor or variable.
View aliases
Compat aliases for migration
SeeMigration guide for more details.
tf.compat.v1.keras.backend.shape
tf.keras.backend.shape(
x
)
Arguments | |
---|---|
x | A tensor or variable. |
Returns |
---|
A symbolic shape (which is itself a tensor). |
Examples:
# TensorFlow example
>>> from keras import backend as K
>>> tf_session = K.get_session()
>>> val = np.array([[1, 2], [3, 4]])
>>> kvar = K.variable(value=val)
>>> input = keras.backend.placeholder(shape=(2, 4, 5))
>>> K.shape(kvar)
<tf.Tensor 'Shape_8:0' shape=(2,) dtype=int32>
>>> K.shape(input)
<tf.Tensor 'Shape_9:0' shape=(3,) dtype=int32>
# To get integer shape (Instead, you can use K.int_shape(x))
>>> K.shape(kvar).eval(session=tf_session)
array([2, 2], dtype=int32)
>>> K.shape(input).eval(session=tf_session)
array([2, 4, 5], dtype=int32)
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-10-01 UTC.