Neural network
Applies to: python, general
A neural network composes layers of weighted sums and nonlinear activations to learn complex functions from data.
h = relu(X @ W1 + b1)
y = h @ W2 + b2
See also: activation-function, backpropagation
Applies to: python, general
A neural network composes layers of weighted sums and nonlinear activations to learn complex functions from data.
h = relu(X @ W1 + b1)
y = h @ W2 + b2
See also: activation-function, backpropagation