Scaling Sparse Autoencoders and Challenges

Scaling a sparse autoencoder means more activation data, wider dictionaries, larger training runs, and a much bigger evaluation job. A dictionary can contain millions of features. Each one needs examples, labels, quality scores, and ideally causal tests.

Key tradeoffs

Dictionary width increases capacity. Sparsity reduces simultaneous activations. Reconstruction loss measures preserved information. Dead-feature rate and feature splitting reveal inefficient capacity use.

Teams should choose scale from the decision they need to make. A narrow audit of medical misinformation may need excellent coverage of one domain, not a universal dictionary of every concept in the model.

Checkpoint

Why might a smaller domain-specific sparse autoencoder be preferable to the largest possible dictionary?

Beyond dictionary scale, teams face broader scaling challenges. Compute is one bottleneck. Evaluation is another. Automated labels can sound confident while being wrong. Rare but important features may have too few examples. Features can split, merge, drift across checkpoints, and behave differently in new contexts.

Four scaling risks

  • Coverage: important mechanisms may be absent.
  • Validation: labels outnumber human reviewers.
  • Causality: observational catalogs can outrun interventions.
  • Transfer: results may fail across models, layers, languages, or domains.
Checkpoint

How would you allocate limited human review across a very large feature library?