Home Technology peripherals AI Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

Jul 17, 2024 pm 02:34 PM
project Expert search

Unlock the potential to further scale Transformer while maintaining computational efficiency.


Feedforward (FFW) layers in the standard Transformer architecture result in a linear increase in computational cost and activation memory as the hidden layer width increases. As the size of large language models (LLM) continues to increase, the sparse mixed expert (MoE) architecture has become a feasible method to solve this problem, which separates the model size from the computational cost. Many emerging MoE models can achieve better performance and more powerful performance at the same size.

The recently discovered fine-grained MoE expansion law shows that higher granularity leads to better performance. However, existing MoE models are limited to a low number of experts due to computational and optimization challenges.

This Tuesday, New research from Google DeepMind introduces a parameter-efficient expert retrieval mechanism that leverages product key technology to perform sparse retrieval from one million micro-experts.

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

Link: https://arxiv.org/abs/2407.04153

This approach attempts to decouple the computational cost from parameter count by efficiently concatenating to a large number of tiny experts through a learned index structure for routing . Demonstrates superior efficiency compared to dense FFW, coarse-grained MoE, and Product Key Memory (PKM) layers.

This work introduces the Parameter Efficient Expert Retrieval (PEER) architecture (parameter efficient expert retrieval), which uses product key retrieval to efficiently route to a large number of experts, separating the computational cost from the amount of parameters. This design demonstrated superior computational performance levels in experiments, positioning it as a competitive alternative to dense FFW layers for extending base models. The main contributions of this work are:

Exploration of extreme MoE settings: Unlike the focus on a few large experts in previous MoE studies, this work investigates the underexplored situation of numerous small experts.

Learned Index Structure for Routing: First demonstration that a learned index structure can efficiently route to over a million experts.

New layer design: Combining product key routing with single-neuron experts, we introduce the PEER layer, which scales layer capacity without significant computational overhead. Empirical results demonstrate higher efficiency compared to dense FFW, coarse-grained MoE, and Product Key Memory (PKM) layers.

Comprehensive ablation study: We study the impact of different design choices for PEER (such as number of experts, activity parameters, number of heads, and query batch normalization) on language modeling tasks.

Method Introduction

In this section, the researcher explains in detail the Parametric Efficient Expert Retrieval (PEER) layer, a hybrid expert architecture that uses product keys in routing and single-neuron MLP As an expert. Figure 2 below shows the calculation process within the PEER layer.

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

PEER Layer Overview. Formally, the PEER layer is a function f : R^n → R^m, which consists of three parts: a pool of N experts E := {e_i}^N_i=1, where each expert e_i : R^n → R^m shares the same signature as f; a corresponding set of N product keys K := {k_i}^N_i=1 ⊂ R^d; and a query network q : R^n → R ^d, which maps the input vector x ∈ R^n to the query vector q (x).

Let T_k represent the top-k operator. Given an input x, first retrieve the subset of k experts whose corresponding product keys have the highest inner product with the query q (x).

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

Then apply a nonlinear activation (such as softmax or sigmoid) to the query key inner product of the top k experts to obtain the routing score.

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

Finally the output is calculated by linearly combining the expert outputs weighted by routing scores.

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

Product Key Retrieval. Since the researchers intend to use a large number of experts (N ≥ 10^6), simply computing the top k indexes in Equation 1 can be very costly, so the product key retrieval technique is applied. Instead of using N independent d-dimensional vectors as keys k_i, they create them by concatenating vectors from two independent d/2-dimensional subkey sets (i.e., C, C ′ ⊂ R d/2):

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

Parametric efficient expert and multi-head search. Unlike other MoE architectures, these architectures typically set each expert's hidden layer to the same size as other FFW layers. In PEER, each expert e_i is a singleton MLP, in other words, it has only one hidden layer with a single neuron:

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

The researchers did not change the size of the individual expert, but used Multi-head retrieval is used to adjust the expressive ability of the PEER layer, which is similar to the multi-head attention mechanism in the transformer and the multi-head memory in PKM.

Specifically, they use h independent query networks, each network computes its own query and retrieves a separate set of k experts. However, different heads share the same expert pool, with the same set of product keys. The output of these h heads is simply summarized as follows:

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

Why do we need a large number of small experts ? A given MoE layer can be characterized by three hyperparameters: the total number of parameters P, the number of active parameters per token P_active, and the size of a single expert P_expert. Krajewski et al. (2024) showed that the scaling law of the MoE model has the following form:

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

For PEER, the researcher uses the smallest possible expert size by setting d_expert = 1, and the number of activated neurons is the search head The number is multiplied by the number of experts retrieved per head: d_active = hk. Therefore, the granularity of PEER is always G = P_active/P_expert = d_active/d_expert = hk.

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

Experimental results

Let’s first look at the evaluation results on the language modeling data set.

After determining the computationally optimal model for each method based on the isoFLOP curve, the researchers evaluated the performance of these pre-trained models on the following popular language modeling datasets:

  • Curation Corpus
  • Lambada
  • Pile
  • Wikitext
  • Pre-training dataset C4

Table 1 below shows the evaluation results. We grouped the models based on the FLOP budget used during training. As can be seen, PEER has the lowest perplexity on these language modeling datasets.

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

In the ablation experiment, the researchers changed the total number of experts. The models shown in the isoFLOP curve in Figure 1 below all have over one million (1024^2) experts.

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

The researcher chose the model with the optimal position of isoFLOP and changed the number of experts in the PEER layer (N = 128^2, 256^2, 512^2, 1024^2), while keeping the number of active experts unchanged (h = 8, k = 16). The results are shown in Figure 3(a) below.

It can be seen that the isoFLOP curve interpolates between the PEER model with 1024^2 experts and the corresponding dense backbone without replacing the FFW layer in the middle block with a PEER layer. This shows that model performance can be improved simply by increasing the number of experts.

At the same time, the researchers changed the number of active experts. They systematically varied the number of active experts (hk = 32, 64, 128, 256, 512) while keeping the total number of experts constant (N = 1024^2). For a given hk, the researcher then jointly changes h and k to determine the best combination. Figure 3(b) below plots the isoFLOP curve with respect to the number of heads (h).

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

Table 2 below lists the expert usage and unevenness for different numbers of experts with and without BN. It can be seen that even for 1M experts, the expert utilization rate is close to 100%, and using BN can make the expert utilization rate more balanced and the confusion level lower. These findings demonstrate the effectiveness of the PEER model in leveraging a large number of experts.

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

The researchers also compared the isoFLOP curves with and without BN. Figure 4 below shows that PEER models with BN can generally achieve lower perplexity. Although the difference is not significant, it is most noticeable near the isoFLOP optimal region.

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

Introduction to the author

PEER study has only one author, Xu He (Owen), who is a research scientist at Google DeepMind and graduated with a PhD from the University of Groningen in the Netherlands in 2017.

Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE

The above is the detailed content of Single-author paper, Google proposes millions of expert Mixture, surpassing dense feedforward and sparse MoE. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The author of ControlNet has another hit! The whole process of generating a painting from a picture, earning 1.4k stars in two days The author of ControlNet has another hit! The whole process of generating a painting from a picture, earning 1.4k stars in two days Jul 17, 2024 am 01:56 AM

It is also a Tusheng video, but PaintsUndo has taken a different route. ControlNet author LvminZhang started to live again! This time I aim at the field of painting. The new project PaintsUndo has received 1.4kstar (still rising crazily) not long after it was launched. Project address: https://github.com/lllyasviel/Paints-UNDO Through this project, the user inputs a static image, and PaintsUndo can automatically help you generate a video of the entire painting process, from line draft to finished product. follow. During the drawing process, the line changes are amazing. The final video result is very similar to the original image: Let’s take a look at a complete drawing.

Topping the list of open source AI software engineers, UIUC's agent-less solution easily solves SWE-bench real programming problems Topping the list of open source AI software engineers, UIUC's agent-less solution easily solves SWE-bench real programming problems Jul 17, 2024 pm 10:02 PM

The AIxiv column is a column where this site publishes academic and technical content. In the past few years, the AIxiv column of this site has received more than 2,000 reports, covering top laboratories from major universities and companies around the world, effectively promoting academic exchanges and dissemination. If you have excellent work that you want to share, please feel free to contribute or contact us for reporting. Submission email: liyazhou@jiqizhixin.com; zhaoyunfeng@jiqizhixin.com The authors of this paper are all from the team of teacher Zhang Lingming at the University of Illinois at Urbana-Champaign (UIUC), including: Steven Code repair; Deng Yinlin, fourth-year doctoral student, researcher

From RLHF to DPO to TDPO, large model alignment algorithms are already 'token-level' From RLHF to DPO to TDPO, large model alignment algorithms are already 'token-level' Jun 24, 2024 pm 03:04 PM

The AIxiv column is a column where this site publishes academic and technical content. In the past few years, the AIxiv column of this site has received more than 2,000 reports, covering top laboratories from major universities and companies around the world, effectively promoting academic exchanges and dissemination. If you have excellent work that you want to share, please feel free to contribute or contact us for reporting. Submission email: liyazhou@jiqizhixin.com; zhaoyunfeng@jiqizhixin.com In the development process of artificial intelligence, the control and guidance of large language models (LLM) has always been one of the core challenges, aiming to ensure that these models are both powerful and safe serve human society. Early efforts focused on reinforcement learning methods through human feedback (RL

Posthumous work of the OpenAI Super Alignment Team: Two large models play a game, and the output becomes more understandable Posthumous work of the OpenAI Super Alignment Team: Two large models play a game, and the output becomes more understandable Jul 19, 2024 am 01:29 AM

If the answer given by the AI ​​model is incomprehensible at all, would you dare to use it? As machine learning systems are used in more important areas, it becomes increasingly important to demonstrate why we can trust their output, and when not to trust them. One possible way to gain trust in the output of a complex system is to require the system to produce an interpretation of its output that is readable to a human or another trusted system, that is, fully understandable to the point that any possible errors can be found. For example, to build trust in the judicial system, we require courts to provide clear and readable written opinions that explain and support their decisions. For large language models, we can also adopt a similar approach. However, when taking this approach, ensure that the language model generates

A significant breakthrough in the Riemann Hypothesis! Tao Zhexuan strongly recommends new papers from MIT and Oxford, and the 37-year-old Fields Medal winner participated A significant breakthrough in the Riemann Hypothesis! Tao Zhexuan strongly recommends new papers from MIT and Oxford, and the 37-year-old Fields Medal winner participated Aug 05, 2024 pm 03:32 PM

Recently, the Riemann Hypothesis, known as one of the seven major problems of the millennium, has achieved a new breakthrough. The Riemann Hypothesis is a very important unsolved problem in mathematics, related to the precise properties of the distribution of prime numbers (primes are those numbers that are only divisible by 1 and themselves, and they play a fundamental role in number theory). In today's mathematical literature, there are more than a thousand mathematical propositions based on the establishment of the Riemann Hypothesis (or its generalized form). In other words, once the Riemann Hypothesis and its generalized form are proven, these more than a thousand propositions will be established as theorems, which will have a profound impact on the field of mathematics; and if the Riemann Hypothesis is proven wrong, then among these propositions part of it will also lose its effectiveness. New breakthrough comes from MIT mathematics professor Larry Guth and Oxford University

The first Mamba-based MLLM is here! Model weights, training code, etc. have all been open source The first Mamba-based MLLM is here! Model weights, training code, etc. have all been open source Jul 17, 2024 am 02:46 AM

The AIxiv column is a column where this site publishes academic and technical content. In the past few years, the AIxiv column of this site has received more than 2,000 reports, covering top laboratories from major universities and companies around the world, effectively promoting academic exchanges and dissemination. If you have excellent work that you want to share, please feel free to contribute or contact us for reporting. Submission email: liyazhou@jiqizhixin.com; zhaoyunfeng@jiqizhixin.com. Introduction In recent years, the application of multimodal large language models (MLLM) in various fields has achieved remarkable success. However, as the basic model for many downstream tasks, current MLLM consists of the well-known Transformer network, which

Axiomatic training allows LLM to learn causal reasoning: the 67 million parameter model is comparable to the trillion parameter level GPT-4 Axiomatic training allows LLM to learn causal reasoning: the 67 million parameter model is comparable to the trillion parameter level GPT-4 Jul 17, 2024 am 10:14 AM

Show the causal chain to LLM and it learns the axioms. AI is already helping mathematicians and scientists conduct research. For example, the famous mathematician Terence Tao has repeatedly shared his research and exploration experience with the help of AI tools such as GPT. For AI to compete in these fields, strong and reliable causal reasoning capabilities are essential. The research to be introduced in this article found that a Transformer model trained on the demonstration of the causal transitivity axiom on small graphs can generalize to the transitive axiom on large graphs. In other words, if the Transformer learns to perform simple causal reasoning, it may be used for more complex causal reasoning. The axiomatic training framework proposed by the team is a new paradigm for learning causal reasoning based on passive data, with only demonstrations

arXiv papers can be posted as 'barrage', Stanford alphaXiv discussion platform is online, LeCun likes it arXiv papers can be posted as 'barrage', Stanford alphaXiv discussion platform is online, LeCun likes it Aug 01, 2024 pm 05:18 PM

cheers! What is it like when a paper discussion is down to words? Recently, students at Stanford University created alphaXiv, an open discussion forum for arXiv papers that allows questions and comments to be posted directly on any arXiv paper. Website link: https://alphaxiv.org/ In fact, there is no need to visit this website specifically. Just change arXiv in any URL to alphaXiv to directly open the corresponding paper on the alphaXiv forum: you can accurately locate the paragraphs in the paper, Sentence: In the discussion area on the right, users can post questions to ask the author about the ideas and details of the paper. For example, they can also comment on the content of the paper, such as: "Given to

See all articles