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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly