Chapter 1 - Artificial Neural Network Fundamentals
- What are the various layers in a neural network? Input, Hidden, and Output Layers
- What is the output of a feed-forward propagation? Predictions that help in calculating loss value
- How is the loss function of a continuous dependent variable different from that of a binary dependent variable and also of a categorical dependent variable? MSE is the generally used loss function for a continuous dependent variable and binary cross-entropy for a binary dependent variable. Categorical cross-entropy is used for categorical dependent variables.
- What is stochastic gradient descent? It is a process of reducing loss, by adjusting weights in the direction of decreasing gradient
- What does a backpropagation ...