Single layer neural network

For simplicity and better understanding, we use a neural network with only a single layer for predicting the output:

a = np.matmul(X, theta)
YHat = sigmoid(a)

So, we use MAML for finding this optimal parameter value θ that is generalizable across tasks. So, for a new task, we can learn from a few data points in less time by taking fewer gradient steps.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.118.144.248