Command Palette
Search for a command to run...
왜 더 큰 모델이 더 많이 학습하는가: 용량, 간섭, 및 희귀 작업 유지의 영향
왜 더 큰 모델이 더 많이 학습하는가: 용량, 간섭, 및 희귀 작업 유지의 영향
Jing Huang Daniel Wurgaft Rachit Bansal Laura Ruis Naomi Saphra David Alvarez-Melis Andrew Lampinen Christopher Potts Ekdeep Singh Lubana
초록
더 큰 모델은 더 작은 모델이 학습하지 못하는 작업들을 학습한다. 이러한 현상을 뒷받침하는 요인은 무엇인가? 우리는 단순한 현상론적 논리를 제시하여, 지수법칙(power-law) 스케일링은 무한한 훈련 데이터가 주어진 상황에서도 더 큰 모델이 더 작은 모델이 학습에 실패하는 데이터 분포의 일부 영역을 학습할 수 있음을 시사한다는 점을 보였다. 이러한 주장을 검증하고 그 원인을 규명하기 위해, 우리는 단일 증가 스케일링 곡선(monotonic scaling curves)을 보이는 작업들의 혼합으로 구성된 합성 설정에서 모델 스케일링의 효과를 연구했다. 결과들은 자원(뉴런)에 대한 데이터 유래 경쟁(data-induced competition)이 주된 요인임을 드러낸다. 구체적으로, 작은 모델들은 고주파수 또는 저복잡도 작업에 뉴런을 할당하므로, 희귀하고 복잡한 작업에서는 성능이 저조한 솔루션을 학습한다. 뿐만 아니라, 원하는 작업을 표현할 수 있는 솔루션이 존재함에도 불구하고 이러한 현상이 발생한다. 이후 우리는 더 큰 모델이 이러한 데이터 중심의 병목 현상을 어떻게 우회하는지 평가했으며, 그 원인이 간섭 감소(interference reduction) 메커니즘에 기인함을 발견했다. 즉, 더 큰 모델은 일반적 작업에 충분한 자원을 할당하여 해당 작업들의 그래디언트 업데이트가 약화되므로, 희귀 작업의 특징들이 서서히 축적될 때 기존 특징들을 덮어쓰지 않게 된다. 마지막으로, 이러한 주장들을 추가로 검증하기 위해, 우리는 다양하는 주파수와 복잡도를 가진 신규 작업들에 대해 OLMo 모델(4M에서 4B 파라미터 규모)을 사전 훈련(pretrain)했다.
One-sentence Summary
The authors develop a phenomenological argument validated through a synthetic task mixture and pretrained OLMo models ranging from 4M to 4B parameters, demonstrating that data-induced competition over neurons forces smaller models to prioritize high-frequency or low-complexity tasks whereas larger models circumvent this bottleneck through reduced interference that preserves rare-task features during gradient updates.
Key Contributions
- This work develops a phenomenological argument demonstrating that power-law scaling allows larger models to learn portions of the data distribution inaccessible to smaller models, even given infinite training data. This theoretical framework posits that scaling inherently provides access to lower-order modes of the data distribution.
- A synthetic setup consisting of a mixture of tasks reveals that smaller models allocate neurons to high-frequency tasks, leading to poor performance on rare and complex tasks due to data-induced resource competition. Results indicate larger models circumvent this bottleneck via a reduced interference mechanism where gradient updates for common tasks do not overwrite rare-task features.
- The study validates these claims by pretraining OLMo models with parameters ranging from 4M to 4B on novel tasks of varying frequency and complexity. These experiments empirically support the claims regarding how scaling enables the learning of rare tasks through reduced interference.
Introduction
Modern machine learning relies on massive generalist models despite the high training and inference costs, yet the specific advantages of scaling parameters remain debated. Prior work often attributes performance gaps to sample efficiency or expressivity, implying smaller models could match larger ones with enough data. The authors argue that smaller models face a fundamental limitation where they fail to learn rare and complex tasks from a data mixture even with infinite training. They leverage a synthetic regression setup and pretrain OLMo models to validate that larger architectures reduce gradient interference between tasks. This mechanism allows larger models to retain features from infrequent data that smaller models overwrite due to resource competition. Their data-centric account explains the marginal benefits of scaling and informs practical decisions regarding model sizing and training data mixtures.
Dataset
Dataset Composition and Sources
- The authors utilize Dolma v1.7 as the pre-training corpus, specifically selecting the first 50K batches totaling 210B tokens.
- This data follows the exact token order used for OLMo-7B-0424 and OLMo-7B-0724 training runs.
- Two special tasks are injected into the corpus to control task frequency: Comparison (TCMP) and Modular Addition (TADD).
Key Details for Each Subset
- Each task consists of 10K instances encoded as a three-token sequence (TOK1, TOK2, LABEL).
- TOK1 and TOK2 are drawn from a set of 100 tokens randomly sampled from the vocabulary.
- A bijective mapping assigns integer values from 0 to 99 to each token.
- Comparison labels indicate if the first token value is less than the second.
- Modular Addition labels represent the sum of both token values modulo 100.
- Instances are split 50/50 for training and testing.
Model Usage and Training Mixture
- OLMo models ranging from 4M to 4B parameters are trained on data mixtures with varying injection frequencies.
- Task frequency is controlled between 7.8×10−3 and 2.4×10−8, simulating ranges from 1K instances per batch to 1 instance every 10 batches.
- Reference tasks (Rcmp and Radd) are sampled from pre-training data to ensure injected frequency matches natural task frequencies.
- Performance is measured via training loss and test accuracy to distinguish between learning task distributions and memorization.
Processing and Injection Strategy
- The injection process replaces the first four tokens of a training sequence with the task sequence plus an end of document token.
- This replacement ensures the injected task frequency remains comparable to tasks learned during standard pre-training.
- Feature geometry and task-relevant features are analyzed to verify scaling laws regarding model width and task frequency.
Method
The authors establish a multi-task learning framework to investigate how model capacity dictates the ability to learn tasks of varying frequency and complexity. They consider a mixture of K linear regression tasks where the kth task appears with frequency πk and has a specific covariance structure Ck. The student model employs a shared width-N encoder U∈Rd×N with orthonormal columns, paired with task-specific linear decoders Dk. The prediction for task k is given by y^k=DkU⊤x, and the total loss is the weighted sum of the mean squared errors across all tasks.
Refer to the scaling regime diagram

The relationship between model size and loss is characterized by distinct scaling regimes. As illustrated in the scaling regime diagram, smaller models operating in the "Compute Optimal" regime may achieve low loss through data scaling, whereas larger models transition into a regime where "Learning requires model scaling." This transition highlights that increasing the parameter count (N) is necessary to capture the lower-utility features associated with rarer tasks that smaller models fail to learn.
Theoretically, the authors derive that features are learned in order of their utility, defined as the product of task frequency and feature eigenvalue:
νk,j=πkλk,jThe optimal encoder for a width-N model spans the top-N eigenspace of the mixture covariance matrix M=∑k=1KπkCk. Consequently, a larger model retains features with lower utility, effectively allowing it to learn rarer or more complex tasks that are ignored by smaller models.
Refer to the alignment mechanism visualization

This selection process can be understood through the lens of gradient interference and feature alignment. In the geometric representation, the encoder attempts to align with task directions Tf (frequent) and Tr (rare). For a narrow model (N=1), the encoder is pulled strongly toward the frequent task direction, causing the alignment with the rare task to degrade. As the width increases to N=2, the model gains the capacity to span both directions simultaneously. The training dynamics plot confirms this behavior, showing that while frequent task observations pull the rare task alignment down, rare task observations push it up. Larger models stabilize this alignment, preventing the rare task from being overwritten by the dominant frequent tasks.
Experiment
Experiments on synthetic regression and realistic OLMo pretraining pipelines demonstrate that scaling model width reduces interference between frequent and rare tasks. Larger models retain rare task signals across observation gaps, while smaller models exhibit an update-and-forget dynamic where frequent updates overwrite rare features. Representational and gradient analysis confirms that increased capacity enables stable learning of low-frequency tasks without compromising common task performance.