Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Figure 1: CIFAR-10 Dataset. Given the CIFAR10 dataset, implement the following networks and report the results of the test accuracy via screenshot. Make sure to
Figure 1: CIFAR-10 Dataset. Given the CIFAR10 dataset, implement the following networks and report the results of the test accuracy via screenshot. Make sure to provide necessary comments on your code. The dataset can be loaded from here: COLAB LINK HERE (a) Implement the following deep learning architecture and evaluate its test accuracy. network = models.Sequential ( ) network.add (layers.Dense (128, activation='sigmoid')) network.add (layers. Dense ( 64 , activation='sigmoid')) network. add (layers. Dense (10, activation='sigmoid')) network. compile(optimizer='sgd', loss='mse',metrics=['accuracy']) network.fit (X_train, y-train, epochs=20, batch_size=16) (b) Given that you are able to change the number of layers, number of neurons, activaiton functions, and the optimizer. Design your own architecture, provide your models code, and a screenshot of the highest test accuracy of your model. activation : ['sigmoid', 'tanh', 'relu'] optimzer : ['sgd', 'RMSprop', 'Adam'] (c) Provide a high-level description of your model. Moreover, what components had the biggest impact on your accuracy
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started