Exercise 1¶
Use a Keras sequential model
The first layer is a dense layer with 256 units and a relu activation.
The second layer is a dense layer with 128 units and a relu activation.
The third layer is a dense layer with num_outputs units and a linear or no activation.
The remainder of the network will be provided. The provided code does not use the Keras sequential model but instead uses the Keras functional api. This format allows for more flexibility in how components are interconnected.
Exercise 1¶
Use a Keras sequential model
The first layer is a dense layer with 256 units and a relu activation.
The second layer is a dense layer with 128 units and a relu activation.
The third layer is a dense layer with num_outputs units and a linear or no activation.
The remainder of the network will be provided. The provided code does not use the Keras sequential model but instead uses the Keras functional api. This format allows for more flexibility in how components are interconnected.