Sequential - To construct with a sequential structure, a stack from the input layer to the output layer. - It lets stack the layers one by one. - It connects several functions such as Wx+b, Sigmoid. model.add() - Adding the layer-an input layer, a hidden layer, and an output layer - You can construct the model using the various layers(Dense, Conv2D, MaxPooling2D, LSTM, etc.). input_shape - Only ..