June 2020
Intermediate to advanced
364 pages
13h 56m
English
Model-Agnostic Meta Learning (MAML) is an optimization algorithm that can work on any type of neural network that is trained using gradient descent. Suppose we have a model, f, with parameters, θ, and a task, τi, that has a corresponding dataset
. Then, we can make updates to the model using a single or several gradient descent steps. A single step in this algorithm works as follows:

The preceding step learns to optimize a single task, but we would like to optimize multiple tasks. So, we can change the task to find ...