Back to the 2025 paper
Similar questions
MACHINE LEARNINGExplain the backpropagation algorithm. How are weights updated in a neural network using gradient descent?20257mMACHINE LEARNINGA perceptron has weights w=[0.5, -0.5] and bias b=0. For input x=[1,1] with label y=1, the weight update with learning rate η=0.1 is (i) w=[0.6, -0.4], b=0.1 (ii) w=[0.4, -0.6], b=-0.1 (iii) w=[0.5, -0.5], b=0 (iv) w=[0.7, -0.3], b=0.220252mArtificial intelligenceDiscuss how backpropagation helps train a neural network. Use a small example with two layers and a loss function to explain weight adjustment.20247mMACHINE LEARNINGHow does Back Propagation Rule help in learning in Neural Network?20237m