Datasets:

File size: 3,538 Bytes
e64dbe5
 
2ab5b05
 
 
 
 
4880759
 
 
 
 
 
 
bb8aeb5
 
 
 
4880759
bb8aeb5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e64dbe5
c7f054a
445b0b8
e64dbe5
445b0b8
 
e64dbe5
 
 
4c636e6
e64dbe5
4c636e6
e64dbe5
 
 
 
 
 
 
 
 
 
 
 
2ab5b05
cce4836
 
2ab5b05
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
---
license: gpl-2.0
language:
- en
tags:
- scaling_laws
- pre_training
- llms
- language_modeling
- llama
paper: >-
  Tokens-per-Parameter Coverage Is Critical for Robust LLM Scaling Law
  Extrapolation
venue: NeurIPS 2026
configs:
- config_name: default
  data_files:
  - split: train
    path: '**/*.json'
dataset_info:
  features:
  - name: checkpoint_prefix
    dtype: string
  - name: timestamp
    dtype: string
  - name: status
    dtype: string
  - name: model_size
    dtype: int64
  - name: d_model
    dtype: int64
  - name: n_layers
    dtype: int64
  - name: n_heads
    dtype: int64
  - name: d_ff
    dtype: int64
  - name: vocab_size
    dtype: int64
  - name: max_seq_len
    dtype: int64
  - name: learning_rate
    dtype: float64
  - name: epochs
    dtype: int64
  - name: batch_size
    dtype: int64
  - name: weight_decay
    dtype: float64
  - name: seed
    dtype: int64
  - name: deterministic
    dtype: bool
  - name: cudnn_deterministic
    dtype: bool
  - name: cudnn_benchmark
    dtype: bool
  - name: total_tokens
    dtype: int64
  - name: total_steps
    dtype: int64
  - name: cumulative_time_seconds
    dtype: float64
  - name: val_epochs_count
    dtype: int64
  - name: mean_val_loss
    dtype: float64
  - name: best_val_loss
    dtype: float64
  - name: final_train_loss
    dtype: float64
  - name: std_train_loss
    dtype: float64
  - name: mean_train_loss
    dtype: float64
  - name: global_batch_tokens
    dtype: int64
  - name: final_val_loss
    dtype: float64
---
# Collinear/Non-Collinear Scaling Models
Checkpoint repository for scaling law experiments comparing **collinear (CO)** and **non-collinear (NC)** experimental designs for the paper *Tokens-per-Parameter Coverage Is Critical for Robust LLM Scaling Law Extrapolation* under review for NeurIPS 2026.

## Code
Anonymized code repository (reproduces all tables): [anonymous.4open.science](https://anonymous.4open.science/r/Tokens-per-Parameter_Coverage_Is_Critical_for_Robust_LLM_Scaling_Law_Extrapolation-CC76)

## Directory Structure
`{dataset}/{design}/N_{param_count}/`
- **Dataset**: `wikipedia`, `pes2o`, `cosmopedia`, `redpajama`, `c4` (plus `_bf16` and `_bigtpp` variants)
- **Design**: `colinear` or `non_colinear`
- **N**: Model parameter count (one of 14 canonical sizes from ~5M to ~76.5M)
## Experimental Designs
**Collinear (CO):** Models are trained along a line in (N, D) space where D = TPP × N for varying TPP (tokens per parameter) values. A single model size N is swept across many TPP values.

**Non-collinear (NC):** Models are trained on a grid over (N, D) space (`NxD_GRID`), varying both N and D independently.
## Holdout Sets
Some checkpoints include `HOLDOUT` in the filename. These were **held out from scaling law fitting** and are used to evaluate extrapolation / interpolation accuracy of fitted scaling laws. Both CO and NC designs have holdout checkpoints:
- `COLINEAR_HOLDOUT_*` → collinear holdout (held-out TPP values)
- `*_HOLDOUT_*` (without `COLINEAR`) → non-collinear holdout (held-out (N, D) pairs)
## Filename Convention
`{PREFIX}{DESIGN}N{approx_size}[TPP{val}]D{tokens}_{dataset}_m{exact_N}_token{exact_D}lr{lr}..._completedAt{timestamp}.pt`

The `m{N}` and `token{D}` fields contain the exact parameter count and token count used for training.

Full results pre-extracted are available in this repository aswell, under: extracted_losses/ , full_coverage_results/, prelim_bigtpp_results/, seed_variance_results/, special_results/ and subset_bbox_seeds/ .

---
License: GPL v2.0