I am trying to figure out how to use Keras and came across some syntax I'm not familiar with and don't know what to search for. I figured it would be easier to just show someone.
What is going on with the last part of lines 2, 3, and 4? I'm asking about the (inputs) and (x) at the end of the lines.
inputs = keras.Input(shape=(784,), name="digits")
x = layers.Dense(64, activation="relu", name="dense_1")(inputs)
x = layers.Dense(64, activation="relu", name="dense_2")(x)
outputs = layers.Dense(10, activation="softmax", name="predictions")(x)