The Sequential model - Keras
https://keras.io/guides/sequential_model12.04.2020 · A Sequential model is appropriate for a plain stack of layers where each layer has exactly one input tensor and one output tensor. Schematically, the following Sequential model: is equivalent to this function: A Sequential model is not appropriate when: Your model has multiple inputs or multiple outputs.
The Sequential model - Keras
keras.io › guides › sequential_modelApr 12, 2020 · import tensorflow as tf from tensorflow import keras from tensorflow.keras import layers When to use a Sequential model A Sequential model is appropriate for a plain stack of layers where each layer has exactly one input tensor and one output tensor .