Google News
logo
Keras - Quiz(MCQ)
Which of the following is not a method of the Keras Sequential class?
A)
add()
B)
fit()
C)
predict()
D)
backward()

Correct Answer :   backward()


Explanation : The Sequential class does not have a backward() method. Instead, it uses automatic differentiation to compute gradients during training.

Advertisement