Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

GPT-4 & GPT-4o

Overview

GPT-4 (March 2023) and GPT-4o (May 2024) are OpenAI’s flagship multimodal large language models. GPT-4 set new benchmarks across reasoning, coding, and professional exams. GPT-4o (“o” for omni) added native multimodal capabilities — processing text, audio, image, and video in a single model with faster response times.

Architecture (Inferred)

GPT-4’s exact architecture is not public, but based on leaks and analysis:

graph TD
    A[GPT-4] --> B[Mixture of Experts MoE]
    B --> C[~8 Experts, ~220B params each]
    B --> D[~1.8T total parameters]
    B --> E[~220B active per token]
    A --> F[128K context window]
    A --> G[Multi-modal: Text + Vision]

Key Architectural Features

FeatureGPT-4GPT-4o
ArchitectureMoE (likely)Unified multimodal
Parameters~1.8T totalNot disclosed
Context8K → 128K128K
ModalitiesText + VisionText + Vision + Audio
SpeedStandard2x faster
Cost$30/$60 per 1M tokens$5/$15 per 1M tokens

Capabilities

Reasoning

  • Passes bar exam (top 10%), medical licensing exams
  • Strong mathematical reasoning
  • Multi-step logical deduction

Coding

  • HumanEval: ~90% pass rate
  • Handles complex codebases
  • Debugging and refactoring

Multimodal (GPT-4V/4o)

  • Image understanding and description
  • Document parsing (charts, tables)
  • Video understanding (4o)
  • Audio transcription and generation (4o)

Training Pipeline

graph LR
    A[Pre-training] --> B[Supervised Fine-Tuning SFT]
    B --> C[RLHF]
    C --> D[Red Teaming]
    D --> E[Safety Alignment]
    A -->|Trillions of tokens| A
    B -->|High-quality demonstrations| B
    C -->|Human preferences| C

Interview Questions

  1. What makes GPT-4 better than GPT-3.5? — Better reasoning (passes professional exams), multimodal capabilities, longer context (128K), better instruction following, and reduced hallucinations.

  2. What is GPT-4o’s key innovation? — Unified multimodal model that natively processes text, audio, and video in one forward pass, rather than using separate encoders. Faster and cheaper than GPT-4.

  3. How does GPT-4 handle long context? — 128K token context window. Uses techniques like sparse attention and positional interpolation. “Lost in the middle” problem: performance degrades for information in the middle of long contexts.

  4. What is RLHF and how does GPT-4 use it? — Reinforcement Learning from Human Feedback. Trains a reward model on human preferences, then optimizes the LLM to maximize the reward. Makes the model more helpful, harmless, and honest.

  5. GPT-4 vs open-source models? — GPT-4 still leads on complex reasoning and multimodal tasks. Open-source models (Llama 3.1 405B) are competitive on many benchmarks at a fraction of the cost. Gap is narrowing rapidly.

Summary

GPT-4/GPT-4o represent the current frontier of proprietary LLMs. Key strengths include strong reasoning, multimodal capabilities, and wide API availability. GPT-4o unified text, audio, and vision into a single faster model. The main limitations are cost, closed architecture, and dependency on OpenAI’s API.

Cross-References