Question: Which of the following code command can be used to specify the neural network model as: use cross entropy loss function, gradient descent optimizer and

Which of the following code command can be used to specify the neural network model as: use cross entropy loss function, gradient descent optimizer and classification accuracy as performance metric?
Group of answer choices
model.fit(optimizer='SGD',
loss='categorical_crossentropy',
metrics=['accuracy'])
model.train(optimizer='SGD',
loss='categorical_crossentropy',
performance=['accuracy'])
model.compile(optimizer='SGD',
loss='categorical_crossentropy',
metrics=['accuracy'])
model.compile(optimizer='SGD',
loss='categorical_crossentropy',
performance=['accuracy'])

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 Databases Questions!