Question: Python mnist = tf . keras.datasets.mnist ( x _ train, y _ train ) , ( x _ test, y _ test ) = mnist.load

Python
mnist = tf.keras.datasets.mnist
(x_train, y_train),(x_test, y_test)= mnist.load_data()
1. If you have a DNN with the following layers:
1. Input layer with 784 units (e.g., for MNIST dataset), connected to a hidden layer with 128 units.
2. Hidden layer with 128 units, connected to an output layer with 10 units (for classification).
How many parameters are in this network?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!