Blog

May 22, 2019 · featured post

Meta-Learners - learning how to learn

Active learning allows us to be smart about picking the right set of datapoints for which to create labels. Done properly, this approach results in models that are trained on less data performing comparatively to models trained on much more data. In the world of meta-learning, we do not focus on label acquisition; rather, we attempt to build a machine that learns quickly from a small number of training data.

Training meta-learners is a two-step process involving a learner and a trainer. The goal of the learner (model) is to quickly learn new tasks from a small amount of new data; hence, it is sometimes called a fast learner. A task here refers to any supervised machine learning problem - e.g., predicting a class given a small number of examples. This learner is trained, by the meta-learner, to be able to learn from a large number of different tasks. The meta-learner accomplishes this by repeatedly showing the learner hundreds and thousands of different tasks. Learning then, happens at two levels. The first level focuses on quick acquisition of knowledge within each task. The second level slowly pulls and digests information across all tasks.

Training meta-learners is a two-step process.

Let’s use a concrete example: our goal is to train a model to classify images into four classes (cat, bear, fish. and bird), where each class only has a small number of labeled datapoints. To do so, we first define a learner whose task is to predict one out of two classes when given three examples of each class. We then define a meta-learner. Its job is to show many different combinations of any two classes, each with three examples, to the learner.

In contrast to regular deep learning, where training data is one large labeled dataset split into batches, the training data for meta-learning is in the form of sets. First we need a set of examples, or a support set. This consists of a couple of images belonging to a subset of classes. Going back to our example, a support set could be comprised of three images of cats and three images of bears. We also need to specify images that we would like to classify; they form a target set. In our example, a target set would be a set of images of cats or bears. Together, the support and the target sets form a training episode. The meta-learner takes many many episodes and shows them to the learner, episode by episode. The learner’s job is to learn to classify the images in the target set correctly, episode by episode.

Meta-learning datasets

Papers in this field often use the notation of k and N, where k represents the number of opportunities the fast learner is given to learn, and N represents the number of classes it is required to be able to classify. Our running example, with N=2 and k=3, illustrates a two-way three-shot (N-way, k-shot) meta-learning setting.

Astute readers will notice that while our goal is to train a model to classify four classes (cat, bear, fish, and bird), each training episode only consist of two classes. This is a feature of meta-learning. The training procedure for meta-learning, first proposed by Oriol Vinyals in his seminal paper on matching networks is based on the principle that testing and training conditions must match. We do not show all classes to the fast learner at once because we expect the model to predict correctly (during inference) when shown a couple of images from a small number of classes. In addition, not all classes are used as training data. In our example, we might just use three classes, and expect the model to be able to make predictions accurately about the final class. Meta-learners can do that because they are trained to be able to generalize to other datasets. Each time the fast learner is shown an episode of data, it is exposed to a small subset of classes. The meta-learner cycles through many, many episodes, each exposing the fast learner to a different subset of classes. As a result, the fast learner not only learns to quickly classify each subset of classes, it also extracts the commonality and differences across all the classes.

Similarity between classes

If you were given a set of example images and were asked to classify a new image, the natural thing to do would be to compare the new image to the examples, find the one that is the most similar, and use its class as the new image’s label. This is the idea behind similarity-based approaches. To classify a new (target) image based on the examples available (the support set), first find its closest image from the examples, then use that image’s label as a prediction. In matching networks, images are represented by their embeddings, and distance between images is simply cosine distance between image embeddings. Embeddings, which we discussed in the context of languages in our “Summarization” and “Semantic Recommendations” reports, are rich numerical representations of text that a computer can understand. For images, embeddings can be thought of as a group of features (lines, edges) that richly represent images. The goal of the matching networks approach, then, is to converge to embeddings that will result in the following: target image being closest to the support set image with the correct label.

When an image in the target set belongs to a new unseen class, the matching network model treats it like any other image. It links the new image to the closest image in the support set, and uses that image’s label as a prediction. The matching network works with new and unseen classes!

Internal representation

In essence, the previous approach takes advantage of a distance metric based on embeddings to compare new images to example images in the support set. The model is trained such that we can correctly, in a probabilistic sense, link new images to one of the example images. Post-training, we end up with a model capable of generating representation of images (through embeddings) that captures both the difference and commonality between images. This suggests another approach to teaching machines to learn quickly with little training data. We start by finding a internal representation that can be adjusted easily with new tasks; the model can then rapidly adapt to new tasks using only a few datapoints.

In the context of deep learning, internal representation typically manifests itself as a set of parameters for the neural network. A “good” internal representation is one that is broadly suitable for many tasks. Small tweaks to this representation will produce a model that works well for new tasks. These tweaks are usually performed under the framework of transfer learning. Training the network using a small number of new datapoints while only adjusting weights at the final layers is an example of a feature extraction using transfer learning. Larger tweaks, where the entire model (or parameters) are re-trained using new datapoints is also possible, and is known as fine-tuning.

But where does this magical internal representation come from? In transfer learning, it is a pre-trained neural network from another task which has ample training data. Once initialized, the new, small dataset is used to re-train the network either fully or partially (just the final layers). An alternative way to arrive at this internal representation is through an initial set of network parameters. Once the network is initialized with the right parameters, it becomes quick and easy to adjust using a small number of new data. This implies that the initial set of network parameters should be sensitive to changes in the new tasks; small changes in the parameters will result in large improvements on the loss function of any task.

The optimal initial set of network parameters is sensitive to changes in new tasks.

The general idea behind this approach is the following. We start with a model and its initial set of parameters. We train this model on a new task using data from an episode. During training, the initial set of parameters gets updated; it becomes an updated set of parameters. The goal is to find an initial set of parameters such that the loss, when measured on the new task, using the new set of parameters, is small.

This approach is inspired by transfer learning, but while transfer learning works for moderately sized datasets, it often becomes less effective in cases where datasets are too small or are too different from the original dataset used to create the pre-trained network. Optimization approaches in meta learning - optimizing for a set of initial parameters, or optimizing for the model to converge to a good solution rapidly on each task - attempt to come up with a systematic way to learn a common initialization that would serve as a good starting point for the possibly diverse tasks at hand.

The state of meta learning

Meta-learning is promising because it gets to the heart of the problem of learning with limited labeled data. Meta-learning, though, requires a different data collection paradigm. In traditional machine learning, we focus on collecting many examples of a class. In meta-learning, the focus changes to collecting many tasks. Indirectly, this implies the need to collect data for many diverse classes. In our example, we used four classes (cat, bear, fish, and bird) and defined a task to be “predicting one out of two classes when given three examples each”. This gives a maximum of six (four choose two) different tasks and is obviously insufficient for much learning to happen. Thus, in meta-learning, even though we do not need many examples of cats, we do need examples of many types of animals. Further, during inference, support and target sets typically need to be constructed as well. It is a different type of data requirement (or constraint) and can be expensive for certain use cases. Even within research, the datasets are limited to Omniglot and miniImagenet. The Omniglot dataset has a total of 1623 handwritten characters, each with 20 examples. The miniImageNet dataset consists of 100 classes from the original ImageNet dataset, each with 600 examples.

Meta-learning is an area that is quickly evolving, but it is not dominated by a single algorithm. The most promising class of algorithms seems to be based on optimization approaches; they are inspired by transfer learning and might see relatively quicker adoption. We expect meta-learning to become more important as the underlying algorithms become mature, particularly for use cases such as product classification or rare disease classification, where data exhibits many classes, but each class merely has a few examples.

Acknowledgement: We’d like to thank Oriol Vinyals for his insights.

Read more

Newer
May 29, 2019 · newsletter
Older
Apr 29, 2019 · newsletter

Latest posts

Nov 15, 2022 · newsletter

CFFL November Newsletter

November 2022 Perhaps November conjures thoughts of holiday feasts and festivities, but for us, it’s the perfect time to chew the fat about machine learning! Make room on your plate for a peek behind the scenes into our current research on harnessing synthetic image generation to improve classification tasks. And, as usual, we reflect on our favorite reads of the month. New Research! In the first half of this year, we focused on natural language processing with our Text Style Transfer blog series.
...read more
Nov 14, 2022 · post

Implementing CycleGAN

by Michael Gallaspy · Introduction This post documents the first part of a research effort to quantify the impact of synthetic data augmentation in training a deep learning model for detecting manufacturing defects on steel surfaces. We chose to generate synthetic data using CycleGAN,1 an architecture involving several networks that jointly learn a mapping between two image domains from unpaired examples (I’ll elaborate below). Research from recent years has demonstrated improvement on tasks like defect detection2 and image segmentation3 by augmenting real image data sets with synthetic data, since deep learning algorithms require massive amounts of data, and data collection can easily become a bottleneck.
...read more
Oct 20, 2022 · newsletter

CFFL October Newsletter

October 2022 We’ve got another action-packed newsletter for October! Highlights this month include the re-release of a classic CFFL research report, an example-heavy tutorial on Dask for distributed ML, and our picks for the best reads of the month. Open Data Science Conference Cloudera Fast Forward Labs will be at ODSC West near San Fransisco on November 1st-3rd, 2022! If you’ll be in the Bay Area, don’t miss Andrew and Melanie who will be presenting our recent research on Neutralizing Subjectivity Bias with HuggingFace Transformers.
...read more
Sep 21, 2022 · newsletter

CFFL September Newsletter

September 2022 Welcome to the September edition of the Cloudera Fast Forward Labs newsletter. This month we’re talking about ethics and we have all kinds of goodies to share including the final installment of our Text Style Transfer series and a couple of offerings from our newest research engineer. Throw in some choice must-reads and an ASR demo, and you’ve got yourself an action-packed newsletter! New Research! Ethical Considerations When Designing an NLG System In the final post of our blog series on Text Style Transfer, we discuss some ethical considerations when working with natural language generation systems, and describe the design of our prototype application: Exploring Intelligent Writing Assistance.
...read more
Sep 8, 2022 · post

Thought experiment: Human-centric machine learning for comic book creation

by Michael Gallaspy · This post has a companion piece: Ethics Sheet for AI-assisted Comic Book Art Generation I want to make a comic book. Actually, I want to make tools for making comic books. See, the problem is, I can’t draw too good. I mean, I’m working on it. Check out these self portraits drawn 6 months apart: Left: “Sad Face”. February 2022. Right: “Eyyyy”. August 2022. But I have a long way to go until my illustrations would be considered professional quality, notwithstanding the time it would take me to develop the many other skills needed for making comic books.
...read more
Aug 18, 2022 · newsletter

CFFL August Newsletter

August 2022 Welcome to the August edition of the Cloudera Fast Forward Labs newsletter. This month we’re thrilled to introduce a new member of the FFL team, share TWO new applied machine learning prototypes we’ve built, and, as always, offer up some intriguing reads. New Research Engineer! If you’re a regular reader of our newsletter, you likely noticed that we’ve been searching for new research engineers to join the Cloudera Fast Forward Labs team.
...read more

Popular posts

Oct 30, 2019 · newsletter
Exciting Applications of Graph Neural Networks
Nov 14, 2018 · post
Federated learning: distributed machine learning with data locality and privacy
Apr 10, 2018 · post
PyTorch for Recommenders 101
Oct 4, 2017 · post
First Look: Using Three.js for 2D Data Visualization
Aug 22, 2016 · whitepaper
Under the Hood of the Variational Autoencoder (in Prose and Code)
Feb 24, 2016 · post
"Hello world" in Keras (or, Scikit-learn versus Keras)

Reports

In-depth guides to specific machine learning capabilities

Prototypes

Machine learning prototypes and interactive notebooks
Notebook

ASR with Whisper

Explore the capabilities of OpenAI's Whisper for automatic speech recognition by creating your own voice recordings!
https://colab.research.google.com/github/fastforwardlabs/whisper-openai/blob/master/WhisperDemo.ipynb
Library

NeuralQA

A usable library for question answering on large datasets.
https://neuralqa.fastforwardlabs.com
Notebook

Explain BERT for Question Answering Models

Tensorflow 2.0 notebook to explain and visualize a HuggingFace BERT for Question Answering model.
https://colab.research.google.com/drive/1tTiOgJ7xvy3sjfiFC9OozbjAX1ho8WN9?usp=sharing
Notebooks

NLP for Question Answering

Ongoing posts and code documenting the process of building a question answering model.
https://qa.fastforwardlabs.com

Cloudera Fast Forward Labs

Making the recently possible useful.

Cloudera Fast Forward Labs is an applied machine learning research group. Our mission is to empower enterprise data science practitioners to apply emergent academic research to production machine learning use cases in practical and socially responsible ways, while also driving innovation through the Cloudera ecosystem. Our team brings thoughtful, creative, and diverse perspectives to deeply researched work. In this way, we strive to help organizations make the most of their ML investment as well as educate and inspire the broader machine learning and data science community.

Cloudera   Blog   Twitter

©2022 Cloudera, Inc. All rights reserved.