---
title: "PaLM (Pathways Language Model)"
source: "https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)"
wiki: "systems-analysis.info/eng"
article: "PaLM_(Pathways_Language_Model)"
language: "en"
categories:
  - "Category:English"
  - "Category:Google"
  - "Category:Large language models"
  - "Category:LLM families"
  - "Category:Machine learning"
  - "Category:Technology"
revision_id: 296
wiki_created_at: 2026-09-06T22:20:11Z
wiki_modified_at: 2026-09-06T22:20:11Z
downloaded_at: 2026-09-07T22:22:31Z
---

# PaLM (Pathways Language Model)

**PaLM** (**P**athways **L**anguage **M**odel) is a family of [large language models (LLMs)](https://systems-analysis.info/eng/Large_language_model "Large language model") developed by Google. The first version of the model, introduced in April 2022, contained **540 billion parameters** and became one of the largest language models in the world at the time, demonstrating breakthrough capabilities that resulted from massive scaling<sup>[\[1\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-chowdhery2022-1)</sup>.

The key technological foundation of PaLM was **Pathways**, a new machine learning systems architecture from Google that enables the efficient coordination of distributed computations across thousands of accelerator chips<sup>[\[2\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-google-blog-pathways-intro-2)</sup>. PaLM was the first large-scale demonstration of this system, showcasing unprecedented training efficiency at an immense scale.

## Pathways System: The Foundation for Scaling

The **Pathways** concept, introduced by Google in 2021, envisioned a single neural network capable of efficiently generalizing knowledge across different domains and performing thousands of tasks simultaneously. PaLM became the first large-scale application of this system: its training was parallelized across **6144** specialized **TPU v4** processors, organized into two cloud clusters (TPU v4 Pods)<sup>[\[1\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-chowdhery2022-1)</sup>.

At the time of its creation, this was the largest TPU configuration ever used to train a single model. The system achieved a record utilization efficiency of **57.8% hardware FLOPs utilization** (corresponding to a model FLOPs utilization, or MFU, of 46.2% — roughly double the 21.3% reported for GPT-3), which made it possible to significantly surpass previous projects in scale and successfully train a model with over half a trillion parameters<sup>[\[1\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-chowdhery2022-1)[\[3\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-google-blog-palm-scaling-3)</sup>.

## Architecture and Training Data

### Model Architecture

PaLM is a dense (non-sparse) language model with a **[decoder-only](https://systems-analysis.info/eng/Decoder-only_models_(architecture) "Decoder-only models (architecture)")** architecture, similar to models in the [GPT](https://systems-analysis.info/eng/GPT_(OpenAI) "GPT (OpenAI)") series. This architecture is oriented towards next-[token](https://systems-analysis.info/eng/Token_(LLM) "Token (LLM)") prediction tasks and is well-suited for text generation. Unlike the standard [transformer architecture](https://systems-analysis.info/eng/Transformer_architecture "Transformer architecture"), PaLM uses several key modifications to enhance efficiency<sup>[\[1\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-chowdhery2022-1)</sup>:

- **Parallel Layers**: The attention and feed-forward layers are computed in parallel, which accelerated training by approximately 15%.
- **SwiGLU Activation**: Use of the SwiGLU activation function instead of the standard ReLU, which significantly improved model quality.
- **Multi-Query Attention**: The key and value projections are shared across attention heads (only the queries remain separate), which sharply reduces the memory cost of autoregressive decoding — a technique that later became standard for fast LLM inference.
- **RoPE Embeddings**: Rotary position embeddings are used instead of absolute or relative ones, improving behaviour on long sequences.
- **Other choices**: Shared input and output embedding matrices, no bias terms in dense layers or layer norms (which improved training stability at scale), and a SentencePiece vocabulary of 256k tokens.

The family was trained at three scales — **8 billion**, **62 billion**, and **540 billion** parameters — which allowed the authors to study the effect of scale directly; the largest model has 118 layers<sup>[\[1\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-chowdhery2022-1)</sup>.

### Training Data

PaLM was trained on a high-quality data corpus of **780 billion tokens**. The dataset was multilingual and diverse, including<sup>[\[1\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-chowdhery2022-1)</sup>:

- Social media conversations (50% of the corpus).
- Filtered web documents (27%) and books (13%).
- Articles from Wikipedia (4%) and news (1%).
- Source code from GitHub (5% of the corpus).

Approximately 78% of the data was in English, while the remaining 22% was a multilingual set. A special "lossless" [tokenization](https://systems-analysis.info/eng/Tokenization_(NLP) "Tokenization (NLP)") method was used, which preserved all whitespace (critical for code) and split unrecognized Unicode characters into bytes.

## Capabilities and Results

### Emergent Abilities and Few-Shot Learning

PaLM demonstrated that increasing the scale of the model, the volume of data, and the computational power can lead to **emergent** (unexpectedly arising) abilities. On many tasks, the model's performance increased sharply and non-linearly only upon reaching the maximum scale, indicating the appearance of new, previously unobserved capabilities<sup>[\[3\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-google-blog-palm-scaling-3)</sup>.

The model was evaluated in **few-shot learning** mode (without [fine-tuning](https://systems-analysis.info/eng/Fine-tuning_(deep_learning) "Fine-tuning (deep learning)"), with a few examples in the prompt) and surpassed previous large models (such as GPT-3, Gopher, Chinchilla, GLaM, Megatron-Turing NLG, and [LaMDA](https://systems-analysis.info/eng/LaMDA_(Google) "LaMDA (Google)")) on 28 out of 29 popular NLP benchmarks. On the comprehensive **[BIG-bench](https://systems-analysis.info/eng/BIG-bench_(benchmark) "BIG-bench (benchmark)")** suite of tasks, PaLM became the first model reported to surpass the *average* score of the human raters who attempted the same tasks<sup>[\[1\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-chowdhery2022-1)</sup>.

### Chain-of-Thought Reasoning

One of PaLM's most notable achievements was its ability for multi-step logical reasoning when using the **"[chain-of-thought prompting](https://systems-analysis.info/eng/Chain-of-Thought_Prompting "Chain-of-Thought Prompting")"** technique<sup>[\[1\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-chowdhery2022-1)</sup>. This method involves providing the model with examples where the solution to a problem is broken down into steps. After learning from such examples, PaLM was able to generate its own "chain of thought" to solve new complex tasks, such as:

- **Mathematical Problems**: On the **[GSM8K](https://systems-analysis.info/eng/GSM8K_(Grade_School_Math_8K) "GSM8K (Grade School Math 8K)")** test (grade school-level math problems), PaLM solved 58% of the tasks, surpassing the previous state-of-the-art result achieved by a fine-tuned model.
- **Common Sense Tasks**: The model was able to generate detailed explanations for non-trivial problems, for example, providing interpretations of previously unseen jokes.

This capability made the model's "thinking" process more transparent and human-like.

### Code Generation and Multilingualism

Despite source code constituting only 5% of the training data, PaLM performed comparably to the specialized OpenAI Codex 12B model on code generation and transformation tasks, while having been trained on roughly 50 times less Python code. The model also showed strong capabilities in multilingual tasks, including translation<sup>[\[1\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-chowdhery2022-1)[\[3\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-google-blog-palm-scaling-3)</sup>.

## Evolution and Successors: The PaLM Family

PaLM became the foundation for an entire family of models developed by Google.

### PaLM 2

Introduced in May 2023, **PaLM 2** became a more efficient and multilingual successor. Instead of pursuing a higher parameter count, the focus shifted to the quality of training data and architectural efficiency. PaLM 2 is trained on texts in **over 100 languages** and demonstrates improved capabilities in logic, programming, and translation<sup>[\[4\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-google-blog-palm2-4)</sup>. The model is released in four sizes (from smallest to largest): **Gecko**, **Otter**, **Bison**, and **Unicorn**. The most compact version (Gecko) is lightweight enough to run on mobile devices offline. In contrast to the original PaLM, Google withheld the parameter count, dataset size, and architectural details of PaLM 2 from its technical report<sup>[\[5\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-anil2023-5)</sup>.

### Instruction-Tuned and Specialized Versions

Based on PaLM and PaLM 2, versions for specific domains and usage modes were created:

- **Flan-PaLM**: PaLM [fine-tuned](https://systems-analysis.info/eng/Fine-tuning_(deep_learning) "Fine-tuning (deep learning)") on a large collection of tasks phrased as instructions (*instruction tuning*), which markedly improved zero-shot generalization and made it the base model for several downstream systems, including the first Med-PaLM<sup>[\[6\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-chung2022-flan-6)</sup>.
- **Minerva**: A version of PaLM (62B and 540B) further trained on scientific and mathematical texts from arXiv and the web, aimed at quantitative reasoning<sup>[\[7\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-lewkowycz2022-7)</sup>.
- **Med-PaLM** and **Med-PaLM 2**: Specialized models for medicine. Med-PaLM (built on Flan-PaLM, late 2022) was the first AI system to exceed the commonly quoted pass mark on USMLE-style questions from the MedQA dataset (67.2%); Med-PaLM 2 (2023, built on PaLM 2) raised this to **86.5%**, which Google described as expert-level performance<sup>[\[8\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-singhal2023-8)</sup>.
- **Sec-PaLM 2**: A model focused on cybersecurity, trained to identify vulnerabilities and analyze malicious code<sup>[\[9\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-google-cloud-sec-ai-9)</sup>.

### PaLM-E: Multimodal Version

**PaLM-E** (Pathways Language Model Embodied) is a [multimodal](https://systems-analysis.info/eng/Multimodal_large_language_models "Multimodal large language models") model that combines the PaLM language model with visual data from a Vision Transformer (ViT). This allows the model to process both text and images, solving tasks related to the physical world, such as controlling robots<sup>[\[10\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-palm-e-blog-10)</sup>. Its largest configuration, **PaLM-E-562B**, combines the 540B PaLM with a 22-billion-parameter ViT and was, at the time, the largest vision-language model ever published; it reached state-of-the-art results on the OK-VQA benchmark without task-specific fine-tuning<sup>[\[11\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-driess2023-11)</sup>.

### Supersession by Gemini

PaLM's role as Google's flagship model was short-lived. In December 2023, Google introduced the [Gemini](https://systems-analysis.info/eng/Gemini_(Google) "Gemini (Google)") family, and the Bard chatbot — which had run on a lightweight LaMDA model and then on PaLM 2 — was migrated to Gemini. The developer-facing PaLM API was subsequently replaced by the Gemini API, and the legacy PaLM 2 endpoints on Vertex AI (*text-bison*, *chat-bison*, and related models) were retired in April 2025<sup>[\[12\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-vertex-lifecycle-12)</sup>. The PaLM family is therefore no longer available as a product and is now mainly of historical and research interest.

## Ethical Aspects and Limitations

The creators of PaLM emphasize the need for a responsible approach to developing large language models. The official scientific paper included an analysis of potential **biases and toxicity** in the generated text. To ensure transparency, Google published a **Model Card** and a **Datasheet** for PaLM, documenting the dataset's characteristics, testing results, and identified limitations<sup>[\[1\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-chowdhery2022-1)</sup>. These measures align with modern practices for responsible AI and are intended to mitigate risks associated with biases and the generation of harmful content.

### Departure from Compute-Optimal Scaling

PaLM was trained on 780 billion tokens for 540 billion parameters — a ratio of roughly 1.4 tokens per parameter. One month before its release, DeepMind's **Chinchilla** study argued that compute-optimal training requires approximately 20 tokens per parameter, meaning that models of PaLM's generation were substantially **undertrained** relative to their size<sup>[\[13\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-hoffmann2022-13)</sup>. By that standard, a considerably smaller model trained on far more data could have matched PaLM's quality at lower cost — an insight that shaped subsequent models, including PaLM 2, which explicitly shifted the emphasis from parameter count toward data quality and volume<sup>[\[5\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-anil2023-5)</sup>.

### The Debate over Emergent Abilities

The claim that abilities "emerge" abruptly at large scale — for which PaLM was a central piece of evidence — was later challenged. Schaeffer et al. argued that such sharp, unpredictable jumps can be an artifact of the researcher's choice of evaluation metric: discontinuous metrics (such as exact-match accuracy) produce apparent leaps, whereas continuous metrics reveal smooth, predictable improvement with scale<sup>[\[14\]](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_note-schaeffer2023-14)</sup>. The question of whether emergence reflects a genuine qualitative change in model behaviour remains open.

## External links

- <a href="https://research.google/blog/pathways-language-model-palm-scaling-to-540-billion-parameters-for-breakthrough-performance/" class="external text" rel="nofollow">Official Google Blog about PaLM</a>
- <a href="https://ai.google/discover/palm2/" class="external text" rel="nofollow">Official PaLM 2 page (Google AI)</a>
- <a href="https://en.wikipedia.org/wiki/PaLM" class="external text" rel="nofollow">PaLM — Wikipedia</a>

## Literature

- Chowdhery, A. et al. (2022). *PaLM: Scaling Language Modeling with Pathways*. <a href="https://arxiv.org/abs/2204.02311" class="external text" rel="nofollow">arXiv:2204.02311</a>.
- Anil, R. et al. (2023). *PaLM 2 Technical Report*. <a href="https://arxiv.org/abs/2305.10403" class="external text" rel="nofollow">arXiv:2305.10403</a>.
- Driess, D. et al. (2023). *PaLM-E: An Embodied Multimodal Language Model*. <a href="https://arxiv.org/abs/2303.03378" class="external text" rel="nofollow">arXiv:2303.03378</a>.
- Singhal, K. et al. (2022). *Large Language Models Encode Clinical Knowledge*. <a href="https://arxiv.org/abs/2212.13138" class="external text" rel="nofollow">arXiv:2212.13138</a>.
- Singhal, K. et al. (2023). *Towards Expert-Level Medical Question Answering with Large Language Models*. <a href="https://arxiv.org/abs/2305.09617" class="external text" rel="nofollow">arXiv:2305.09617</a>.
- Lewkowycz, A. et al. (2022). *Solving Quantitative Reasoning Problems with Language Models (Minerva)*. <a href="https://arxiv.org/abs/2206.14858" class="external text" rel="nofollow">arXiv:2206.14858</a>.
- Barham, P. et al. (2022). *Pathways: Asynchronous Distributed Dataflow for ML*. <a href="https://arxiv.org/abs/2203.12533" class="external text" rel="nofollow">arXiv:2203.12533</a>.
- Wei, J. et al. (2022). *Chain-of-Thought Prompting Elicits Reasoning in Large Language Models*. <a href="https://arxiv.org/abs/2201.11903" class="external text" rel="nofollow">arXiv:2201.11903</a>.
- Zhang, Z. et al. (2022). *Automatic Chain of Thought Prompting in Large Language Models*. <a href="https://arxiv.org/abs/2210.03493" class="external text" rel="nofollow">arXiv:2210.03493</a>.
- Wei, J. et al. (2022). *Emergent Abilities of Large Language Models*. <a href="https://arxiv.org/abs/2206.07682" class="external text" rel="nofollow">arXiv:2206.07682</a>.
- Schaeffer, R. et al. (2023). *Are Emergent Abilities of Large Language Models a Mirage?*. <a href="https://arxiv.org/abs/2304.15004" class="external text" rel="nofollow">arXiv:2304.15004</a>.
- Lu, S. et al. (2023). *Are Emergent Abilities in Large Language Models just In-Context Learning?*. <a href="https://arxiv.org/abs/2309.01809" class="external text" rel="nofollow">arXiv:2309.01809</a>.
- Chung, H. W. et al. (2022). *Scaling Instruction-Finetuned Language Models (Flan-PaLM)*. <a href="https://arxiv.org/abs/2210.11416" class="external text" rel="nofollow">arXiv:2210.11416</a>.
- Kaplan, J. et al. (2020). *Scaling Laws for Neural Language Models*. <a href="https://arxiv.org/abs/2001.08361" class="external text" rel="nofollow">arXiv:2001.08361</a>.
- Hoffmann, J. et al. (2022). *Training Compute-Optimal Large Language Models*. <a href="https://arxiv.org/abs/2203.15556" class="external text" rel="nofollow">arXiv:2203.15556</a>.
- Rae, J. W. et al. (2021). *Scaling Language Models: Methods, Analysis & Insights from Training Gopher*. <a href="https://arxiv.org/abs/2112.11446" class="external text" rel="nofollow">arXiv:2112.11446</a>.
- Diao, S. et al. (2023). *Active Prompting with Chain-of-Thought for Large Language Models*. <a href="https://arxiv.org/abs/2302.12246" class="external text" rel="nofollow">arXiv:2302.12246</a>.

## References

1.  <span id="cite_note-chowdhery2022-1">↑ <sup>[1.00](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-chowdhery2022_1-0)</sup> <sup>[1.01](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-chowdhery2022_1-1)</sup> <sup>[1.02](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-chowdhery2022_1-2)</sup> <sup>[1.03](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-chowdhery2022_1-3)</sup> <sup>[1.04](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-chowdhery2022_1-4)</sup> <sup>[1.05](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-chowdhery2022_1-5)</sup> <sup>[1.06](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-chowdhery2022_1-6)</sup> <sup>[1.07](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-chowdhery2022_1-7)</sup> <sup>[1.08](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-chowdhery2022_1-8)</sup> <sup>[1.09](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-chowdhery2022_1-9)</sup> Chowdhery, Aakanksha; Narang, Sharan; Devlin, Jacob; et al. "PaLM: Scaling Language Modeling with Pathways". *arXiv*. <a href="https://arxiv.org/abs/2204.02311" class="external autonumber" rel="nofollow">[1]</a></span>
2.  <span id="cite_note-google-blog-pathways-intro-2">[↑](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-google-blog-pathways-intro_2-0) "Introducing Pathways: A next-generation AI architecture". *Google AI Blog*. <a href="https://blog.google/technology/ai/introducing-pathways-next-generation-ai-architecture/" class="external autonumber" rel="nofollow">[2]</a></span>
3.  <span id="cite_note-google-blog-palm-scaling-3">↑ <sup>[3.0](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-google-blog-palm-scaling_3-0)</sup> <sup>[3.1](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-google-blog-palm-scaling_3-1)</sup> <sup>[3.2](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-google-blog-palm-scaling_3-2)</sup> "Pathways Language Model (PaLM): Scaling to 540 Billion Parameters for Breakthrough Performance". *Google Research Blog*. <a href="https://research.google/blog/pathways-language-model-palm-scaling-to-540-billion-parameters-for-breakthrough-performance/" class="external autonumber" rel="nofollow">[3]</a></span>
4.  <span id="cite_note-google-blog-palm2-4">[↑](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-google-blog-palm2_4-0) "Google AI: What to know about the PaLM 2 large language model". *Google AI Blog*. <a href="https://blog.google/technology/ai/google-palm-2-ai-large-language-model/" class="external autonumber" rel="nofollow">[4]</a></span>
5.  <span id="cite_note-anil2023-5">↑ <sup>[5.0](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-anil2023_5-0)</sup> <sup>[5.1](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-anil2023_5-1)</sup> Anil, Rohan; Dai, Andrew M.; Firat, Orhan; et al. "PaLM 2 Technical Report". *arXiv*. <a href="https://arxiv.org/abs/2305.10403" class="external autonumber" rel="nofollow">[5]</a></span>
6.  <span id="cite_note-chung2022-flan-6">[↑](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-chung2022-flan_6-0) Chung, Hyung Won; et al. "Scaling Instruction-Finetuned Language Models". *arXiv*. <a href="https://arxiv.org/abs/2210.11416" class="external autonumber" rel="nofollow">[6]</a></span>
7.  <span id="cite_note-lewkowycz2022-7">[↑](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-lewkowycz2022_7-0) Lewkowycz, Aitor; et al. "Solving Quantitative Reasoning Problems with Language Models". *arXiv*. <a href="https://arxiv.org/abs/2206.14858" class="external autonumber" rel="nofollow">[7]</a></span>
8.  <span id="cite_note-singhal2023-8">[↑](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-singhal2023_8-0) Singhal, Karan; et al. "Towards Expert-Level Medical Question Answering with Large Language Models". *arXiv*. <a href="https://arxiv.org/abs/2305.09617" class="external autonumber" rel="nofollow">[8]</a></span>
9.  <span id="cite_note-google-cloud-sec-ai-9">[↑](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-google-cloud-sec-ai_9-0) "New AI capabilities that can help address your security challenges". *Google Cloud Blog*. <a href="https://cloud.google.com/blog/products/identity-security/security-ai-next23" class="external autonumber" rel="nofollow">[9]</a></span>
10. <span id="cite_note-palm-e-blog-10">[↑](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-palm-e-blog_10-0) "PaLM-E: An embodied multimodal language model". *Google Research Blog*. <a href="https://research.google/blog/palm-e-an-embodied-multimodal-language-model/" class="external autonumber" rel="nofollow">[10]</a></span>
11. <span id="cite_note-driess2023-11">[↑](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-driess2023_11-0) Driess, Danny; Xia, Fei; Sajjadi, Mehdi S. M.; et al. "PaLM-E: An Embodied Multimodal Language Model". *arXiv*. <a href="https://arxiv.org/abs/2303.03378" class="external autonumber" rel="nofollow">[11]</a></span>
12. <span id="cite_note-vertex-lifecycle-12">[↑](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-vertex-lifecycle_12-0) "Model versions and lifecycle". *Google Cloud documentation*. <a href="https://cloud.google.com/vertex-ai/generative-ai/docs/learn/model-versions" class="external autonumber" rel="nofollow">[12]</a></span>
13. <span id="cite_note-hoffmann2022-13">[↑](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-hoffmann2022_13-0) Hoffmann, Jordan; et al. "Training Compute-Optimal Large Language Models". *arXiv*. <a href="https://arxiv.org/abs/2203.15556" class="external autonumber" rel="nofollow">[13]</a></span>
14. <span id="cite_note-schaeffer2023-14">[↑](https://systems-analysis.info/eng/PaLM_(Pathways_Language_Model)#cite_ref-schaeffer2023_14-0) Schaeffer, Rylan; Miranda, Brando; Koyejo, Sanmi. "Are Emergent Abilities of Large Language Models a Mirage?". *NeurIPS 2023, arXiv:2304.15004*. <a href="https://arxiv.org/abs/2304.15004" class="external autonumber" rel="nofollow">[14]</a></span>
