ML Basics Flashcards
1
Q
Using the following template, construct the calculations for a single neuron or layer in an MLP.
A
import numpy as np
Initialize the parameters for each layer
parameters = {None}
Set a test example
x = None
compute the forward pass of the neural network def predict(x, parameters): pass
utilize an activation function def activation(x): pass