Dense layers
Once you have an Input layer, the next step is to add a Dense layer.
Dense layers learn a weight matrix, where the first dimension of the matrix is the dimension of the input data, and the second dimension is the dimension of the output data. Recall that your Input layer has a shape of 1. In this case, your output layer will also have a shape of 1. This means that the Dense layer will learn a 1x1 weight matrix.
In this exercise, you will add a dense layer to your model, after the input layer.
Deze oefening maakt deel uit van de cursus
Advanced Deep Learning with Keras
Oefeninstructies
- Import the
Denselayer function fromkeras.layers. - Create a Dense layer with 1 unit.
- Pass
input_tensortooutput_layer().
Praktische interactieve oefening
Probeer deze oefening eens door deze voorbeeldcode in te vullen.
# Load layers
from tensorflow.keras.layers import Input, ____
# Input layer
input_tensor = Input(shape=(1,))
# Dense layer
output_layer = ____
# Connect the dense layer to the input_tensor
output_tensor = output_layer(____)