Reptile: A Scalable Meta-Learning Algorithm

Reptile: A Scalable Meta-Learning Algorithm

  • March 8, 2018
Table of Contents

Reptile: A Scalable Meta-Learning Algorithm

We’ve developed a simple meta-learning algorithm called Reptile which works by repeatedly sampling a task, performing stochastic gradient descent on it, and updating the initial parameters towards the final parameters learned on that task. This method performs as well as MAML, a broadly applicable meta-learning algorithm, while being simpler to implement and more computationally efficient.

Source: openai.com

Share :
comments powered by Disqus

Related Posts

Building a Next Word Predictor in Tensorflow

Building a Next Word Predictor in Tensorflow

Next Word Prediction or what is also called Language Modeling is the task of predicting what word comes next. It is one of the fundamental tasks of NLP and has many applications. You might be using it daily when you write texts or emails without realizing it.

Read More