tf.keras.layers.InputSpec

View source on GitHub

Specifies the ndim, dtype and shape of every input to a layer.

tf.keras.layers.InputSpec(
    dtype=None, shape=None, ndim=None, max_ndim=None, min_ndim=None, axes=None
)

Every layer should expose (if appropriate) an input_spec attribute: a list of instances of InputSpec (one per input tensor).

A None entry in a shape is compatible with any dimension, a None shape is compatible with any shape.

Arguments:

Methods

from_config

View source

@classmethod
from_config(
    config
)

get_config

View source

get_config()