I am new to AI, i am trying to understand the concept of perceptron, hidden layers, MLP etc.
in below code i want to understand how many total layers we have including input and output, number of hidden layers
embed_layer = Embedding(vocab_size,embed_dim,weights =
[embedding_matrix],trainable=trainable_param)
input_seq = Input(shape=(X_train_pad.shape[1],))
embed_seq = embed_layer(input_seq)
x = Dense(256,activation ="relu")(embed_seq)
x = Flatten()(x)
preds = Dense(1,activation="sigmoid")(x)
model = Model(input_seq,preds)
below is the summary of the model