What is the meaning of two values separated only by parenthesis on the RHS of = in Keras?
LSTM_layer = LSTM(units=256)(embedding)
Full code:
from tensorflow.keras.models import Model
from tensorflow.keras.layers import Input, LSTM, Dense, Embedding
from tensorflow.keras import optimizers
sentence_input = Input(shape=(None,))
embedding = Embedding(input_dim = len(tokenizer.word_index)+1, output_dim = 100)(sentence_input)
LSTM_layer = LSTM(units=256)(embedding)
output_dense = Dense(1, activation='sigmoid')(LSTM_layer)