Add files using upload-large-folder tool
Browse files- README.md +145 -42
- figures/anneal.svg +93 -93
- figures/frontier.svg +164 -164
- figures/isoflop.svg +56 -56
- figures/isotime.svg +69 -69
- figures/projection.svg +88 -88
- figures/training-anneal.svg +0 -0
- figures/training-grad-norm.svg +0 -0
- figures/training-loss.svg +0 -0
- figures/training-lr.svg +2414 -0
- figures/training-throughput.svg +0 -0
- index.json +153 -8
- training-curves/350m/anneal-T018750.csv +39 -0
- training-curves/350m/anneal-T037500.csv +76 -0
- training-curves/350m/anneal-T075000.csv +151 -0
- training-curves/350m/anneal-T150000.csv +301 -0
- training-curves/350m/anneal-T300000.csv +0 -0
- training-curves/350m/trunk.csv +0 -0
- training-curves/700m/anneal-T018750.csv +39 -0
- training-curves/700m/anneal-T037500.csv +76 -0
- training-curves/700m/anneal-T075000.csv +151 -0
- training-curves/700m/anneal-T150000.csv +301 -0
- training-curves/700m/anneal-T300000.csv +0 -0
- training-curves/700m/trunk.csv +0 -0
- training-curves/91m/anneal-T018750.csv +39 -0
- training-curves/91m/anneal-T037500.csv +76 -0
- training-curves/91m/anneal-T075000.csv +151 -0
- training-curves/91m/anneal-T150000.csv +301 -0
- training-curves/91m/anneal-T300000.csv +0 -0
- training-curves/91m/trunk.csv +0 -0
- training-curves/replay_to_wandb.py +154 -0
README.md
CHANGED
|
@@ -9,11 +9,11 @@ tags:
|
|
| 9 |
- scaling-laws
|
| 10 |
---
|
| 11 |
|
| 12 |
-
# Alfredvc/chess-autocomplete-v1-checkpoints
|
| 13 |
|
| 14 |
34 checkpoints, 100 GB, across three model sizes and five token
|
| 15 |
budgets. Each checkpoint is a `torch.save` payload carrying the full optimizer state
|
| 16 |
-
(AdamW + Muon), the GradScaler and the dataset cursor, so
|
| 17 |
|
| 18 |
The models predict the move a human Lichess player of a given rating plays; Elo and time
|
| 19 |
control are conditioning tokens. Weights-only inference repo (safetensors + ONNX,
|
|
@@ -31,7 +31,7 @@ control are conditioning tokens. Weights-only inference repo (safetensors + ONNX
|
|
| 31 |
| `700m/` | 700M | **742.2M** | gpt2_gpt2large | 64k tok/s (283 TFLOP/s) |
|
| 32 |
|
| 33 |
`params` is the exact count, embeddings included. The directory names are the GPT-2
|
| 34 |
-
nicknames the runs
|
| 35 |
|
| 36 |
## Layout
|
| 37 |
|
|
@@ -40,9 +40,9 @@ resumes the trunk at `0.8·T` and decays the LR to zero over the remaining `0.2
|
|
| 40 |
it differs from the trunk config only in `max_iters` and `warmdown_iters`. Each budget `T`
|
| 41 |
therefore has two checkpoints:
|
| 42 |
|
| 43 |
-
* **pre-anneal**
|
| 44 |
-
and
|
| 45 |
-
* **post-anneal**
|
| 46 |
|
| 47 |
```
|
| 48 |
91m/
|
|
@@ -80,20 +80,21 @@ therefore has two checkpoints:
|
|
| 80 |
700m/ (same layout; trunk still training, so no annealed 600k checkpoint yet)
|
| 81 |
```
|
| 82 |
|
| 83 |
-
* `config.json`
|
| 84 |
-
* `training_config.yaml`
|
| 85 |
`data_config.shards`. `dataset_state.start_shard` is a bare index into that list.
|
| 86 |
-
* `metrics.csv` / `metrics.json`
|
| 87 |
`training_flops` (6ND), `gpu_hours`, and its path in this repo.
|
| 88 |
-
* `index.json`
|
| 89 |
-
* `
|
|
|
|
| 90 |
|
| 91 |
## Evals
|
| 92 |
|
| 93 |
`top1_move_match_pct` on the Allie benchmark's 2022-blitz test set (884,049 positions,
|
| 94 |
`maia3_table1` surface). **Δ acc** = post-anneal − pre-anneal.
|
| 95 |
|
| 96 |
-
|
| 97 |
final 20%, as `max_lr · (1 − √progress)`. The dashed line is the model before that anneal
|
| 98 |
(the trunk at `0.8·T`, LR still at `max_lr`); the solid line is the same run after it (the
|
| 99 |
branch final at `T`, LR at zero).
|
|
@@ -131,9 +132,110 @@ branch final at `T`, LR at zero).
|
|
| 131 |
| 150,000 | 30.7B | 55.03 | **56.88** | +1.86 | 1.3031 | `700m/trunk/checkpoint-000120000.pt` | `700m/anneal/T150000/checkpoint-000149999.pt` |
|
| 132 |
| 300,000 | 61.4B | 55.29 | **57.15** | +1.86 | 1.2917 | `700m/trunk/checkpoint-000240000.pt` | `700m/anneal/T300000/checkpoint-000299999.pt` |
|
| 133 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 134 |
## Architecture
|
| 135 |
|
| 136 |
-
All three
|
| 137 |
non-interleaved NeoX RoPE, SwiGLU MLP, LayerNorm, head dim 64, a 600-half-move context and
|
| 138 |
a shared move+metadata vocabulary. They differ only in depth and width:
|
| 139 |
|
|
@@ -158,8 +260,8 @@ Cooled (post-anneal) points grouped into bands whose `C` agrees within 20%.
|
|
| 158 |
| 1.26e+20 | 1.17× | 350M 56.78 · 700M 56.88 | **700M** |
|
| 159 |
| 2.53e+20 | 1.17× | 350M 57.01 · 700M 57.15 | **700M** |
|
| 160 |
|
| 161 |
-
The sweep grid is iso-*token*
|
| 162 |
-
column).
|
| 163 |
|
| 164 |
## Fitted surface
|
| 165 |
|
|
@@ -171,8 +273,8 @@ accuracy = 58.91 − 16.7·(N/1e6)^−0.455 − 4.49·(D/1e9)^−0.385
|
|
| 171 |
R² = 0.99980
|
| 172 |
```
|
| 173 |
|
| 174 |
-
Minimised under `6ND = C`: **N\* ∝ C^0.46**, **D\* ∝ C^0.54**.
|
| 175 |
-
from five budgets per size
|
| 176 |
|
| 177 |

|
| 178 |
|
|
@@ -191,28 +293,29 @@ D\*/N\* ≈ 60.
|
|
| 191 |
|
| 192 |
[`Alfredvc/chess-autocomplete-lichess`](https://huggingface.co/datasets/Alfredvc/chess-autocomplete-lichess) holds
|
| 193 |
7.86B games = **528,651,645,230 move tokens** (528.7B), which is
|
| 194 |
-
2.58M steps at 204,800 tokens per step. One pass, no repeats.
|
| 195 |
-
size below
|
|
|
|
| 196 |
|
| 197 |
-
* the **`L(N,D)` surface**, fit on all three sizes at once. It extends in **N**
|
| 198 |
-
|
| 199 |
* that size's **own `L(D)` curve** (`E + B·(D/1e9)^−β`, fit on its points alone). It
|
| 200 |
extends in **D**, for that exact architecture, with no assumption tying it to the other
|
| 201 |
sizes.
|
| 202 |
|
| 203 |

|
| 204 |
|
| 205 |
-
| model | largest run | accuracy there | full dataset is |
|
| 206 |
| --- | --- | --- | --- | --- | --- | --- | --- |
|
| 207 |
| 91M | 122.9B tok | 56.05% | 4.3× that | 56.36% | 56.35% | 2.9e+20 | 349 |
|
| 208 |
| 350M | 122.9B tok | 57.01% | 4.3× that | 57.29% | 57.32% | 1.0e+21 | 1,080 |
|
| 209 |
| 700M | 61.4B tok | 57.15% | 8.6× that | 57.68% | 57.63% | 2.4e+21 | 2,313 |
|
| 210 |
|
| 211 |
-
The largest run in this repo is 122.9B tokens, so
|
| 212 |
-
|
| 213 |
|
| 214 |
-
The token count above
|
| 215 |
-
(2019-12, 2023-12, all of 2022), which
|
| 216 |
|
| 217 |
The same compute, spent as the surface prefers:
|
| 218 |
|
|
@@ -225,20 +328,20 @@ The same compute, spent as the surface prefers:
|
|
| 225 |
## Wall-clock
|
| 226 |
|
| 227 |
Accuracy per GPU-hour, from each size's measured `avg_tokens_per_second` on the same GPU
|
| 228 |
-
(`1x NVIDIA H100 NVL`).
|
| 229 |
-
a budget outside the range
|
| 230 |
|
| 231 |

|
| 232 |
|
| 233 |
| GPU-hours (1× H100 NVL) | 91M | 350M | 700M |
|
| 234 |
| --- | --- | --- | --- |
|
| 235 |
-
| 5h | 54.71% (8B tok) |
|
| 236 |
-
| 10h | 55.20% (15B tok) | 55.22% (5B tok) |
|
| 237 |
| 20h | 55.55% (30B tok) | 55.81% (10B tok) | 55.58% (5B tok) |
|
| 238 |
| 40h | 55.84% (61B tok) | 56.25% (20B tok) | 56.17% (9B tok) |
|
| 239 |
| 80h | 56.05% (121B tok) | 56.59% (39B tok) | 56.60% (18B tok) |
|
| 240 |
-
| 160h |
|
| 241 |
-
| 240h |
|
| 242 |
|
| 243 |
## The same surface fit on the pre-anneal points
|
| 244 |
|
|
@@ -289,15 +392,15 @@ in the shipped `training_config.yaml`.
|
|
| 289 |
|
| 290 |
## Metric definitions
|
| 291 |
|
| 292 |
-
* `top1_move_match_pct`
|
| 293 |
-
* `mean_nll_legal` / `perplexity_legal`
|
| 294 |
moves, on the Allie 2022-blitz test set.
|
| 295 |
-
* `final_val_loss`
|
| 296 |
run's own final eval. A different distribution from `mean_nll_legal`. Pre-anneal rows
|
| 297 |
-
have no value
|
| 298 |
-
* `training_flops` = `6 · N · D`
|
| 299 |
-
|
| 300 |
-
* All eval probability math runs in fp32, and every point
|
| 301 |
code version.
|
| 302 |
|
| 303 |
## Training data
|
|
@@ -306,9 +409,9 @@ Lichess standard rated games (`lichess_db_standard_rated_*`), most recent months
|
|
| 306 |
`data_config.shards` in any `training_config.yaml` has the exact list and order. Sequence
|
| 307 |
length 200 half-moves, batch size 1024, so **tokens = iter × 204,800**.
|
| 308 |
|
| 309 |
-
|
| 310 |
-
|
| 311 |
-
|
| 312 |
|
| 313 |
The full training corpus is at
|
| 314 |
[`Alfredvc/chess-autocomplete-lichess`](https://huggingface.co/datasets/Alfredvc/chess-autocomplete-lichess); the evaluation
|
|
|
|
| 9 |
- scaling-laws
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Alfredvc/chess-autocomplete-v1-checkpoints: training checkpoints (with optimizer state)
|
| 13 |
|
| 14 |
34 checkpoints, 100 GB, across three model sizes and five token
|
| 15 |
budgets. Each checkpoint is a `torch.save` payload carrying the full optimizer state
|
| 16 |
+
(AdamW + Muon), the GradScaler and the dataset cursor, so you can resume training from it.
|
| 17 |
|
| 18 |
The models predict the move a human Lichess player of a given rating plays; Elo and time
|
| 19 |
control are conditioning tokens. Weights-only inference repo (safetensors + ONNX,
|
|
|
|
| 31 |
| `700m/` | 700M | **742.2M** | gpt2_gpt2large | 64k tok/s (283 TFLOP/s) |
|
| 32 |
|
| 33 |
`params` is the exact count, embeddings included. The directory names are the GPT-2
|
| 34 |
+
nicknames we launched the runs under; every number below uses `params`.
|
| 35 |
|
| 36 |
## Layout
|
| 37 |
|
|
|
|
| 40 |
it differs from the trunk config only in `max_iters` and `warmdown_iters`. Each budget `T`
|
| 41 |
therefore has two checkpoints:
|
| 42 |
|
| 43 |
+
* **pre-anneal**: the trunk checkpoint at `0.8·T`, LR still hot. It lives under `trunk/`,
|
| 44 |
+
and `metrics.csv` points at it there rather than duplicating it under `anneal/`.
|
| 45 |
+
* **post-anneal**: the branch's final checkpoint at `T-1`, LR decayed to zero.
|
| 46 |
|
| 47 |
```
|
| 48 |
91m/
|
|
|
|
| 80 |
700m/ (same layout; trunk still training, so no annealed 600k checkpoint yet)
|
| 81 |
```
|
| 82 |
|
| 83 |
+
* `config.json`: the run's own config (model / train / hardware / tokenizers).
|
| 84 |
+
* `training_config.yaml`: the merged effective YAML, `extends` chain resolved, including
|
| 85 |
`data_config.shards`. `dataset_state.start_shard` is a bare index into that list.
|
| 86 |
+
* `metrics.csv` / `metrics.json`: one row per checkpoint, with its evals, tokens,
|
| 87 |
`training_flops` (6ND), `gpu_hours`, and its path in this repo.
|
| 88 |
+
* `index.json`: sha256 and byte size of every file.
|
| 89 |
+
* `training-curves/`: the full W&B history of every run here, one CSV each.
|
| 90 |
+
* `figures/`: the plots below, as PNG and SVG.
|
| 91 |
|
| 92 |
## Evals
|
| 93 |
|
| 94 |
`top1_move_match_pct` on the Allie benchmark's 2022-blitz test set (884,049 positions,
|
| 95 |
`maia3_table1` surface). **Δ acc** = post-anneal − pre-anneal.
|
| 96 |
|
| 97 |
+
We hold the LR at `max_lr` for the first 80% of a budget, then anneal it to zero over the
|
| 98 |
final 20%, as `max_lr · (1 − √progress)`. The dashed line is the model before that anneal
|
| 99 |
(the trunk at `0.8·T`, LR still at `max_lr`); the solid line is the same run after it (the
|
| 100 |
branch final at `T`, LR at zero).
|
|
|
|
| 132 |
| 150,000 | 30.7B | 55.03 | **56.88** | +1.86 | 1.3031 | `700m/trunk/checkpoint-000120000.pt` | `700m/anneal/T150000/checkpoint-000149999.pt` |
|
| 133 |
| 300,000 | 61.4B | 55.29 | **57.15** | +1.86 | 1.2917 | `700m/trunk/checkpoint-000240000.pt` | `700m/anneal/T300000/checkpoint-000299999.pt` |
|
| 134 |
|
| 135 |
+
## Training curves
|
| 136 |
+
|
| 137 |
+
The tables above give endpoints. `training-curves/` holds the runs behind them: every
|
| 138 |
+
metric the training loop logged, for all 18 runs in this repo, as plain CSV.
|
| 139 |
+
Nothing in the files is downsampled or smoothed, and the smoothing below happens only in
|
| 140 |
+
the plots.
|
| 141 |
+
|
| 142 |
+

|
| 143 |
+
|
| 144 |
+
Each anneal branch resumes its trunk at `0.8·T` and decays the LR to zero. Every endpoint
|
| 145 |
+
in the next plot is a checkpoint you can download:
|
| 146 |
+
|
| 147 |
+

|
| 148 |
+
|
| 149 |
+
All three sizes run the same LR schedule, with Muon 5× hotter than AdamW. Below that, the
|
| 150 |
+
gradient norms that schedule produces:
|
| 151 |
+
|
| 152 |
+

|
| 153 |
+
|
| 154 |
+

|
| 155 |
+
|
| 156 |
+
Throughput on one `1x NVIDIA H100 NVL`. The wall-clock section below rests on these measurements.
|
| 157 |
+
Bigger models use more of the GPU per step, so ranking the sizes by time and by FLOPs
|
| 158 |
+
gives different answers:
|
| 159 |
+
|
| 160 |
+

|
| 161 |
+
|
| 162 |
+
### What is in the CSVs
|
| 163 |
+
|
| 164 |
+
Two logging cadences share one table: eval metrics every `eval_interval` steps, the rest
|
| 165 |
+
every `log_interval` steps (500 and 100 for these runs). A cell is empty where the run
|
| 166 |
+
logged nothing for that metric at that step, so read every column against `step` rather
|
| 167 |
+
than against a row index.
|
| 168 |
+
|
| 169 |
+
| column | cadence | meaning |
|
| 170 |
+
| --- | --- | --- |
|
| 171 |
+
| `step` | every logged step | optimizer step, absolute (a branch starts at 0.8·T) |
|
| 172 |
+
| `tokens` | derived | `step × tokens_per_step`, the x-axis of every card curve |
|
| 173 |
+
| `wall_clock_s` | every logged step | seconds since the run started |
|
| 174 |
+
| `train_loss` | eval | next-token NLL on a held-out slice of the training shards |
|
| 175 |
+
| `val_loss` | eval | next-token NLL on the held-out validation shard |
|
| 176 |
+
| `valid_prob_mass` | eval | probability mass the model puts on legal moves |
|
| 177 |
+
| `game_end_accuracy` | eval | accuracy on the game-terminating token |
|
| 178 |
+
| `game_end_top1_accuracy` | eval | top-1 accuracy on the game-terminating token |
|
| 179 |
+
| `batch_train_loss` | log | loss on the current microbatch, noisy by construction |
|
| 180 |
+
| `lr` | log | AdamW learning rate |
|
| 181 |
+
| `muon_lr` | log | Muon learning rate |
|
| 182 |
+
| `unclipped_grad_norm` | log | ‖g‖ *before* `grad_clip = 1.0` is applied |
|
| 183 |
+
| `tokens_per_second` | log | instantaneous, from the last iteration's duration |
|
| 184 |
+
| `avg_tokens_per_second` | log | averaged over the interval since the last log |
|
| 185 |
+
| `samples_per_second` | log | sequences/s, i.e. `tokens_per_second / 200` |
|
| 186 |
+
| `t_flops` | log | the run's own FLOP/s estimate (TiFLOP/s, 1024⁴ scaling) |
|
| 187 |
+
| `shard_idx` | log | index into `data_config.shards`, the dataset cursor |
|
| 188 |
+
| `shard_sample_idx` | log | position within that shard |
|
| 189 |
+
|
| 190 |
+
`step` is absolute. An anneal branch's history starts at `0.8·T` rather than at 0, because
|
| 191 |
+
it continues its trunk.
|
| 192 |
+
|
| 193 |
+
| run | steps logged | step range | tokens at the end | history |
|
| 194 |
+
| --- | --- | --- | --- | --- |
|
| 195 |
+
| 91M trunk | 6,001 | 0 → 600,000 | 122.9B | `training-curves/91m/trunk.csv` |
|
| 196 |
+
| 91M anneal T=18,750 | 38 | 15,100 → 18,750 | 3.8B | `training-curves/91m/anneal-T018750.csv` |
|
| 197 |
+
| 91M anneal T=37,500 | 75 | 30,100 → 37,500 | 7.7B | `training-curves/91m/anneal-T037500.csv` |
|
| 198 |
+
| 91M anneal T=75,000 | 150 | 60,100 → 75,000 | 15.4B | `training-curves/91m/anneal-T075000.csv` |
|
| 199 |
+
| 91M anneal T=150,000 | 300 | 120,100 → 150,000 | 30.7B | `training-curves/91m/anneal-T150000.csv` |
|
| 200 |
+
| 91M anneal T=300,000 | 600 | 240,100 → 300,000 | 61.4B | `training-curves/91m/anneal-T300000.csv` |
|
| 201 |
+
| 350M trunk | 6,001 | 0 → 600,000 | 122.9B | `training-curves/350m/trunk.csv` |
|
| 202 |
+
| 350M anneal T=18,750 | 38 | 15,100 → 18,750 | 3.8B | `training-curves/350m/anneal-T018750.csv` |
|
| 203 |
+
| 350M anneal T=37,500 | 75 | 30,100 → 37,500 | 7.7B | `training-curves/350m/anneal-T037500.csv` |
|
| 204 |
+
| 350M anneal T=75,000 | 150 | 60,100 → 75,000 | 15.4B | `training-curves/350m/anneal-T075000.csv` |
|
| 205 |
+
| 350M anneal T=150,000 | 300 | 120,100 → 150,000 | 30.7B | `training-curves/350m/anneal-T150000.csv` |
|
| 206 |
+
| 350M anneal T=300,000 | 600 | 240,100 → 300,000 | 61.4B | `training-curves/350m/anneal-T300000.csv` |
|
| 207 |
+
| 700M trunk | 5,204 | 0 → 520,400 | 106.6B | `training-curves/700m/trunk.csv` |
|
| 208 |
+
| 700M anneal T=18,750 | 38 | 15,100 → 18,750 | 3.8B | `training-curves/700m/anneal-T018750.csv` |
|
| 209 |
+
| 700M anneal T=37,500 | 75 | 30,100 → 37,500 | 7.7B | `training-curves/700m/anneal-T037500.csv` |
|
| 210 |
+
| 700M anneal T=75,000 | 150 | 60,100 → 75,000 | 15.4B | `training-curves/700m/anneal-T075000.csv` |
|
| 211 |
+
| 700M anneal T=150,000 | 300 | 120,100 → 150,000 | 30.7B | `training-curves/700m/anneal-T150000.csv` |
|
| 212 |
+
| 700M anneal T=300,000 | 600 | 240,100 → 300,000 | 61.4B | `training-curves/700m/anneal-T300000.csv` |
|
| 213 |
+
|
| 214 |
+
### Load them into your own W&B
|
| 215 |
+
|
| 216 |
+
`training-curves/replay_to_wandb.py` loads these CSVs into your own W&B project, so you
|
| 217 |
+
can plot your run against ours on the same axes. It needs `wandb` and nothing else:
|
| 218 |
+
|
| 219 |
+
```bash
|
| 220 |
+
pip install wandb
|
| 221 |
+
python training-curves/replay_to_wandb.py --project my-project
|
| 222 |
+
|
| 223 |
+
# or just the runs you want ("91m" means every 91M run)
|
| 224 |
+
python training-curves/replay_to_wandb.py --project my-project --runs 91m/trunk 350m/anneal-T300000
|
| 225 |
+
|
| 226 |
+
# log locally now, upload whenever
|
| 227 |
+
WANDB_MODE=offline python training-curves/replay_to_wandb.py --project my-project
|
| 228 |
+
wandb sync --sync-all
|
| 229 |
+
```
|
| 230 |
+
|
| 231 |
+
The script keeps the original step numbers and loads each run's `config.json` as its W&B
|
| 232 |
+
config, so the run-comparison filters work the way they do on a run you trained yourself.
|
| 233 |
+
It logs `tokens` as a metric too; pick that as the x-axis to compare by data seen rather
|
| 234 |
+
than by step.
|
| 235 |
+
|
| 236 |
## Architecture
|
| 237 |
|
| 238 |
+
All three share one decoder-only transformer: discrete move-token embedding,
|
| 239 |
non-interleaved NeoX RoPE, SwiGLU MLP, LayerNorm, head dim 64, a 600-half-move context and
|
| 240 |
a shared move+metadata vocabulary. They differ only in depth and width:
|
| 241 |
|
|
|
|
| 260 |
| 1.26e+20 | 1.17× | 350M 56.78 · 700M 56.88 | **700M** |
|
| 261 |
| 2.53e+20 | 1.17× | 350M 57.01 · 700M 57.15 | **700M** |
|
| 262 |
|
| 263 |
+
The sweep grid is iso-*token* rather than iso-FLOP, so the bands span up to 1.17× in `C`
|
| 264 |
+
(second column).
|
| 265 |
|
| 266 |
## Fitted surface
|
| 267 |
|
|
|
|
| 273 |
R² = 0.99980
|
| 274 |
```
|
| 275 |
|
| 276 |
+
Minimised under `6ND = C`: **N\* ∝ C^0.46**, **D\* ∝ C^0.54**. We fit β
|
| 277 |
+
from five budgets per size and α from three sizes spanning 8×.
|
| 278 |
|
| 279 |

|
| 280 |
|
|
|
|
| 293 |
|
| 294 |
[`Alfredvc/chess-autocomplete-lichess`](https://huggingface.co/datasets/Alfredvc/chess-autocomplete-lichess) holds
|
| 295 |
7.86B games = **528,651,645,230 move tokens** (528.7B), which is
|
| 296 |
+
2.58M steps at 204,800 tokens per step. One pass, no repeats. We
|
| 297 |
+
extrapolate each size below to that `D` twice, with two fits that extend along different
|
| 298 |
+
axes:
|
| 299 |
|
| 300 |
+
* the **`L(N,D)` surface**, fit on all three sizes at once. It extends in **N**, so it
|
| 301 |
+
gives a number for a size nobody trained (the frontier table above does exactly that).
|
| 302 |
* that size's **own `L(D)` curve** (`E + B·(D/1e9)^−β`, fit on its points alone). It
|
| 303 |
extends in **D**, for that exact architecture, with no assumption tying it to the other
|
| 304 |
sizes.
|
| 305 |
|
| 306 |

|
| 307 |
|
| 308 |
+
| model | largest run | accuracy there | full dataset is | full dataset, L(N,D) surface | full dataset, that size's own L(D) curve | C = 6ND | GPU-hours |
|
| 309 |
| --- | --- | --- | --- | --- | --- | --- | --- |
|
| 310 |
| 91M | 122.9B tok | 56.05% | 4.3× that | 56.36% | 56.35% | 2.9e+20 | 349 |
|
| 311 |
| 350M | 122.9B tok | 57.01% | 4.3× that | 57.29% | 57.32% | 1.0e+21 | 1,080 |
|
| 312 |
| 700M | 61.4B tok | 57.15% | 8.6× that | 57.68% | 57.63% | 2.4e+21 | 2,313 |
|
| 313 |
|
| 314 |
+
The largest run in this repo is 122.9B tokens, so you are reading both fits 4.3–8.6×
|
| 315 |
+
beyond the tokens behind them. The surface's ceiling (N→∞, D→∞) is 58.91%.
|
| 316 |
|
| 317 |
+
The token count above covers the whole dataset. The training runs exclude the benchmark
|
| 318 |
+
months (2019-12, 2023-12, all of 2022), which we do not subtract here.
|
| 319 |
|
| 320 |
The same compute, spent as the surface prefers:
|
| 321 |
|
|
|
|
| 328 |
## Wall-clock
|
| 329 |
|
| 330 |
Accuracy per GPU-hour, from each size's measured `avg_tokens_per_second` on the same GPU
|
| 331 |
+
(`1x NVIDIA H100 NVL`). We interpolate accuracy along that size's own measured curve; a blank cell is
|
| 332 |
+
a budget outside the range we ran.
|
| 333 |
|
| 334 |

|
| 335 |
|
| 336 |
| GPU-hours (1× H100 NVL) | 91M | 350M | 700M |
|
| 337 |
| --- | --- | --- | --- |
|
| 338 |
+
| 5h | 54.71% (8B tok) | | |
|
| 339 |
+
| 10h | 55.20% (15B tok) | 55.22% (5B tok) | |
|
| 340 |
| 20h | 55.55% (30B tok) | 55.81% (10B tok) | 55.58% (5B tok) |
|
| 341 |
| 40h | 55.84% (61B tok) | 56.25% (20B tok) | 56.17% (9B tok) |
|
| 342 |
| 80h | 56.05% (121B tok) | 56.59% (39B tok) | 56.60% (18B tok) |
|
| 343 |
+
| 160h | | 56.86% (78B tok) | 56.95% (37B tok) |
|
| 344 |
+
| 240h | | 57.00% (118B tok) | 57.11% (55B tok) |
|
| 345 |
|
| 346 |
## The same surface fit on the pre-anneal points
|
| 347 |
|
|
|
|
| 392 |
|
| 393 |
## Metric definitions
|
| 394 |
|
| 395 |
+
* `top1_move_match_pct`: % of positions where the model's argmax move equals the human's.
|
| 396 |
+
* `mean_nll_legal` / `perplexity_legal`: NLL of the human move, renormalized over legal
|
| 397 |
moves, on the Allie 2022-blitz test set.
|
| 398 |
+
* `final_val_loss`: next-token NLL on the held-out validation shard, from the training
|
| 399 |
run's own final eval. A different distribution from `mean_nll_legal`. Pre-anneal rows
|
| 400 |
+
have no value, since a mid-schedule checkpoint has no end-of-run eval block.
|
| 401 |
+
* `training_flops` = `6 · N · D`, which leaves out the attention term (~3–4% at sequence
|
| 402 |
+
length 200).
|
| 403 |
+
* All eval probability math runs in fp32, and we scored every point on one host with one
|
| 404 |
code version.
|
| 405 |
|
| 406 |
## Training data
|
|
|
|
| 409 |
`data_config.shards` in any `training_config.yaml` has the exact list and order. Sequence
|
| 410 |
length 200 half-moves, batch size 1024, so **tokens = iter × 204,800**.
|
| 411 |
|
| 412 |
+
We benchmark these models against Maia-1/2/3 and Allie, so training excludes the months
|
| 413 |
+
those test sets draw from: 2019-12, 2023-12, and all of 2022. The pipeline has no game-id
|
| 414 |
+
holdout.
|
| 415 |
|
| 416 |
The full training corpus is at
|
| 417 |
[`Alfredvc/chess-autocomplete-lichess`](https://huggingface.co/datasets/Alfredvc/chess-autocomplete-lichess); the evaluation
|
figures/anneal.svg
CHANGED
|
|
|
|
figures/frontier.svg
CHANGED
|
|
|
|
figures/isoflop.svg
CHANGED
|
|
|
|
figures/isotime.svg
CHANGED
|
|
|
|
figures/projection.svg
CHANGED
|
|
|
|
figures/training-anneal.svg
ADDED
|
|
figures/training-grad-norm.svg
ADDED
|
|
figures/training-loss.svg
ADDED
|
|
figures/training-lr.svg
ADDED
|
|
figures/training-throughput.svg
ADDED
|
|
index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
"repo_id": "Alfredvc/chess-autocomplete-v1-checkpoints",
|
| 3 |
-
"total_bytes":
|
| 4 |
"files": [
|
| 5 |
{
|
| 6 |
"path": "350m/anneal/T018750/checkpoint-000018749.pt",
|
|
@@ -354,8 +354,8 @@
|
|
| 354 |
},
|
| 355 |
{
|
| 356 |
"path": "README.md",
|
| 357 |
-
"size":
|
| 358 |
-
"sha256": "
|
| 359 |
},
|
| 360 |
{
|
| 361 |
"path": "figures/anneal.png",
|
|
@@ -365,7 +365,7 @@
|
|
| 365 |
{
|
| 366 |
"path": "figures/anneal.svg",
|
| 367 |
"size": 61148,
|
| 368 |
-
"sha256": "
|
| 369 |
},
|
| 370 |
{
|
| 371 |
"path": "figures/frontier.png",
|
|
@@ -375,7 +375,7 @@
|
|
| 375 |
{
|
| 376 |
"path": "figures/frontier.svg",
|
| 377 |
"size": 120161,
|
| 378 |
-
"sha256": "
|
| 379 |
},
|
| 380 |
{
|
| 381 |
"path": "figures/isoflop.png",
|
|
@@ -385,7 +385,7 @@
|
|
| 385 |
{
|
| 386 |
"path": "figures/isoflop.svg",
|
| 387 |
"size": 67456,
|
| 388 |
-
"sha256": "
|
| 389 |
},
|
| 390 |
{
|
| 391 |
"path": "figures/isotime.png",
|
|
@@ -395,7 +395,7 @@
|
|
| 395 |
{
|
| 396 |
"path": "figures/isotime.svg",
|
| 397 |
"size": 74233,
|
| 398 |
-
"sha256": "
|
| 399 |
},
|
| 400 |
{
|
| 401 |
"path": "figures/projection.png",
|
|
@@ -405,7 +405,57 @@
|
|
| 405 |
{
|
| 406 |
"path": "figures/projection.svg",
|
| 407 |
"size": 80775,
|
| 408 |
-
"sha256": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 409 |
},
|
| 410 |
{
|
| 411 |
"path": "metrics.csv",
|
|
@@ -416,6 +466,101 @@
|
|
| 416 |
"path": "metrics.json",
|
| 417 |
"size": 16527,
|
| 418 |
"sha256": "2a52419794a2926936b4a9389dab5417ea6990d7279a0aed15bb5f91e52c22d6"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 419 |
}
|
| 420 |
]
|
| 421 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"repo_id": "Alfredvc/chess-autocomplete-v1-checkpoints",
|
| 3 |
+
"total_bytes": 99736679106,
|
| 4 |
"files": [
|
| 5 |
{
|
| 6 |
"path": "350m/anneal/T018750/checkpoint-000018749.pt",
|
|
|
|
| 354 |
},
|
| 355 |
{
|
| 356 |
"path": "README.md",
|
| 357 |
+
"size": 20962,
|
| 358 |
+
"sha256": "f3f3e151b8c816f6b77374c9361475a052d26da870c322dc6efd8433bce253ac"
|
| 359 |
},
|
| 360 |
{
|
| 361 |
"path": "figures/anneal.png",
|
|
|
|
| 365 |
{
|
| 366 |
"path": "figures/anneal.svg",
|
| 367 |
"size": 61148,
|
| 368 |
+
"sha256": "5742255e75a78c84b122d03b4135097994f0f2d4b42a0c262579b887303bd60b"
|
| 369 |
},
|
| 370 |
{
|
| 371 |
"path": "figures/frontier.png",
|
|
|
|
| 375 |
{
|
| 376 |
"path": "figures/frontier.svg",
|
| 377 |
"size": 120161,
|
| 378 |
+
"sha256": "e1bb1ca8f8a6e1f7dee261b7d2a1f89fe7b8edbb890d49e81e940e8120ef919b"
|
| 379 |
},
|
| 380 |
{
|
| 381 |
"path": "figures/isoflop.png",
|
|
|
|
| 385 |
{
|
| 386 |
"path": "figures/isoflop.svg",
|
| 387 |
"size": 67456,
|
| 388 |
+
"sha256": "f16ada10f6771d84ec3903a33f3b776927671518b82959d260eaedeee7db10bd"
|
| 389 |
},
|
| 390 |
{
|
| 391 |
"path": "figures/isotime.png",
|
|
|
|
| 395 |
{
|
| 396 |
"path": "figures/isotime.svg",
|
| 397 |
"size": 74233,
|
| 398 |
+
"sha256": "63fc2cc7e41b1793939f531cbc0cd7dd002115cc546447fa20a3e313625980ab"
|
| 399 |
},
|
| 400 |
{
|
| 401 |
"path": "figures/projection.png",
|
|
|
|
| 405 |
{
|
| 406 |
"path": "figures/projection.svg",
|
| 407 |
"size": 80775,
|
| 408 |
+
"sha256": "9aa3811a3001bb124a5b844b22bdea4dd7d5f9ef80c02e6e872c8b0a5948f999"
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"path": "figures/training-anneal.png",
|
| 412 |
+
"size": 172082,
|
| 413 |
+
"sha256": "040bebd9b5b4ab82308f9a199b53ed6621cc36e518c4fd457ae130b97e38fc16"
|
| 414 |
+
},
|
| 415 |
+
{
|
| 416 |
+
"path": "figures/training-anneal.svg",
|
| 417 |
+
"size": 179061,
|
| 418 |
+
"sha256": "5fa7a9cf5e15c79162f0048963338c6e5cea1c2bfafca0ef12e19ca9a4e04285"
|
| 419 |
+
},
|
| 420 |
+
{
|
| 421 |
+
"path": "figures/training-grad-norm.png",
|
| 422 |
+
"size": 174375,
|
| 423 |
+
"sha256": "56b5e3b42416d1e82a099c313c61ed16c1c9bb20103afa1b62b946e104ed8f57"
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"path": "figures/training-grad-norm.svg",
|
| 427 |
+
"size": 376514,
|
| 428 |
+
"sha256": "4de88fc608028173d293398e48dd84552377f260b12ce474208bad8951571a15"
|
| 429 |
+
},
|
| 430 |
+
{
|
| 431 |
+
"path": "figures/training-loss.png",
|
| 432 |
+
"size": 183964,
|
| 433 |
+
"sha256": "49aaa61019b242361fdf7fcc2927186d470336342ea6753c26f421dea5eca94d"
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"path": "figures/training-loss.svg",
|
| 437 |
+
"size": 281513,
|
| 438 |
+
"sha256": "8f1acab85d3e0d8c2da07a90680ac17b573fa844aff1ca57b5f2d875f849944f"
|
| 439 |
+
},
|
| 440 |
+
{
|
| 441 |
+
"path": "figures/training-lr.png",
|
| 442 |
+
"size": 100602,
|
| 443 |
+
"sha256": "03ffdc41fb2604fd5295e2da23f0d1b8b6fdde947180d39b76d5fdd774d67024"
|
| 444 |
+
},
|
| 445 |
+
{
|
| 446 |
+
"path": "figures/training-lr.svg",
|
| 447 |
+
"size": 71508,
|
| 448 |
+
"sha256": "a4d3f6fbaa810c67a4c4568ed5bbfd02054fa51be014b580c7e6760cf752ef3b"
|
| 449 |
+
},
|
| 450 |
+
{
|
| 451 |
+
"path": "figures/training-throughput.png",
|
| 452 |
+
"size": 128397,
|
| 453 |
+
"sha256": "b4570bc1aa1c6b3e4be22a5b30a6aa882c14fca777fa71b698f1f2d356f0b3a6"
|
| 454 |
+
},
|
| 455 |
+
{
|
| 456 |
+
"path": "figures/training-throughput.svg",
|
| 457 |
+
"size": 191838,
|
| 458 |
+
"sha256": "6850de57f92f576f196e68a170629bb53794501388806e887893cfd4f314ed90"
|
| 459 |
},
|
| 460 |
{
|
| 461 |
"path": "metrics.csv",
|
|
|
|
| 466 |
"path": "metrics.json",
|
| 467 |
"size": 16527,
|
| 468 |
"sha256": "2a52419794a2926936b4a9389dab5417ea6990d7279a0aed15bb5f91e52c22d6"
|
| 469 |
+
},
|
| 470 |
+
{
|
| 471 |
+
"path": "training-curves/350m/anneal-T018750.csv",
|
| 472 |
+
"size": 8654,
|
| 473 |
+
"sha256": "40fb3d13a321d8d3abfb690f99a9a4f10ec9c41327cd6f6c8f8e6003096dd5de"
|
| 474 |
+
},
|
| 475 |
+
{
|
| 476 |
+
"path": "training-curves/350m/anneal-T037500.csv",
|
| 477 |
+
"size": 16926,
|
| 478 |
+
"sha256": "3499991eb1687d3a8b3a0e758c4eb8918b1976fd052f2df00c8cb45da13fb926"
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"path": "training-curves/350m/anneal-T075000.csv",
|
| 482 |
+
"size": 34058,
|
| 483 |
+
"sha256": "50ca736e2666dc5d105bc7666b6efdbea27c3da77ece7a9663cf33ad9afeca03"
|
| 484 |
+
},
|
| 485 |
+
{
|
| 486 |
+
"path": "training-curves/350m/anneal-T150000.csv",
|
| 487 |
+
"size": 68305,
|
| 488 |
+
"sha256": "1ed3db03792984f30cc9bc997e2233c2bbe46ff20c0a52808e24f970eae6e771"
|
| 489 |
+
},
|
| 490 |
+
{
|
| 491 |
+
"path": "training-curves/350m/anneal-T300000.csv",
|
| 492 |
+
"size": 136767,
|
| 493 |
+
"sha256": "1b07b3319b68c36769c8899bc840e549a32020960f97d807e84e4c167202c4d8"
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"path": "training-curves/350m/trunk.csv",
|
| 497 |
+
"size": 1240882,
|
| 498 |
+
"sha256": "59b50b458f3e41c90b20b255587f6cd860c0dd368692c2c1f3e32a4087e5f3cd"
|
| 499 |
+
},
|
| 500 |
+
{
|
| 501 |
+
"path": "training-curves/700m/anneal-T018750.csv",
|
| 502 |
+
"size": 8656,
|
| 503 |
+
"sha256": "2ff64aff17bb16578e7866e880004ddcdc246b0333e45dbef49d09f037411ab0"
|
| 504 |
+
},
|
| 505 |
+
{
|
| 506 |
+
"path": "training-curves/700m/anneal-T037500.csv",
|
| 507 |
+
"size": 16923,
|
| 508 |
+
"sha256": "9ba4e14456cd67ad61001b41a5fca4d1f6317fbfced94b7582d51cc1fc15e16b"
|
| 509 |
+
},
|
| 510 |
+
{
|
| 511 |
+
"path": "training-curves/700m/anneal-T075000.csv",
|
| 512 |
+
"size": 34010,
|
| 513 |
+
"sha256": "c8dbddcfc3c5c3f52d4d8fbd8deb655e4de1a52fbf028a62097aa5830d4ef194"
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"path": "training-curves/700m/anneal-T150000.csv",
|
| 517 |
+
"size": 68277,
|
| 518 |
+
"sha256": "1e9683d7b49db058e7547b7042f8f04c20dfc0eb88e21fdbe4979cefd2d9e4d4"
|
| 519 |
+
},
|
| 520 |
+
{
|
| 521 |
+
"path": "training-curves/700m/anneal-T300000.csv",
|
| 522 |
+
"size": 136800,
|
| 523 |
+
"sha256": "688b1beca80545678dd0df23ce7760f1e1f239763ffa8892e681c8b38cc71bf9"
|
| 524 |
+
},
|
| 525 |
+
{
|
| 526 |
+
"path": "training-curves/700m/trunk.csv",
|
| 527 |
+
"size": 1057930,
|
| 528 |
+
"sha256": "84483354a5cab29b66ffffdedf7480c7d0776b1428c63a695215a7a3debad6eb"
|
| 529 |
+
},
|
| 530 |
+
{
|
| 531 |
+
"path": "training-curves/91m/anneal-T018750.csv",
|
| 532 |
+
"size": 8670,
|
| 533 |
+
"sha256": "911884dff8cede6124962768c23b0e8f9a75756aebfde82d3862fbd8ea4f031c"
|
| 534 |
+
},
|
| 535 |
+
{
|
| 536 |
+
"path": "training-curves/91m/anneal-T037500.csv",
|
| 537 |
+
"size": 16935,
|
| 538 |
+
"sha256": "ef7cd7421e3651d184e9d921d60b899d33be9dd262e8a3ecf0e1d1a4b94d2462"
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"path": "training-curves/91m/anneal-T075000.csv",
|
| 542 |
+
"size": 34004,
|
| 543 |
+
"sha256": "596fbf6ee59645ea333605c195f971c6e1984ab5552d771745abed7bb3cfa528"
|
| 544 |
+
},
|
| 545 |
+
{
|
| 546 |
+
"path": "training-curves/91m/anneal-T150000.csv",
|
| 547 |
+
"size": 68248,
|
| 548 |
+
"sha256": "c4f9fd053e4e9a5d987f1f707a85960a03bb420f2661bc30f585d2f14bffddd9"
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"path": "training-curves/91m/anneal-T300000.csv",
|
| 552 |
+
"size": 136783,
|
| 553 |
+
"sha256": "6470bbfdc8e211730bf9cb053ee97c51e0262d3d46e16ef67f9612e662168bce"
|
| 554 |
+
},
|
| 555 |
+
{
|
| 556 |
+
"path": "training-curves/91m/trunk.csv",
|
| 557 |
+
"size": 1239576,
|
| 558 |
+
"sha256": "28a36e08c2ac8188a02bc1019e4d31cbe87c009a3012a294f22a0bf0c62107fe"
|
| 559 |
+
},
|
| 560 |
+
{
|
| 561 |
+
"path": "training-curves/replay_to_wandb.py",
|
| 562 |
+
"size": 5774,
|
| 563 |
+
"sha256": "e61f2fe7aa08daa3e73f96efadcf2bac5d6fd4a676d148a06e39dfd59ba939f4"
|
| 564 |
}
|
| 565 |
]
|
| 566 |
}
|
training-curves/350m/anneal-T018750.csv
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step,tokens,wall_clock_s,train_loss,val_loss,valid_prob_mass,game_end_accuracy,game_end_top1_accuracy,batch_train_loss,lr,muon_lr,unclipped_grad_norm,tokens_per_second,avg_tokens_per_second,samples_per_second,t_flops,shard_idx,shard_sample_idx
|
| 2 |
+
15100.0,3092480000.0,416.002066216,,,,,,1.4315905570983887,0.001589731299247464,0.00794865649623732,0.04603220522403717,136013.55319666743,86623.0539899549,680.0677659833372,242.4967528298239,0.0,44400270.0
|
| 3 |
+
15200.0,3112960000.0,567.311759187,,,,,,1.4094873666763306,0.0014612137954158843,0.0073060689770794215,0.04615640267729759,135717.51254290578,135777.8590923162,678.5875627145289,241.96894589032706,0.0,44695751.0
|
| 4 |
+
15300.0,3133440000.0,718.55155394,,,,,,1.4307063817977905,0.0013625988462982238,0.006812994231491119,0.04319467395544052,135671.98326941644,135352.16333457857,678.3599163470822,241.88777235489343,0.0,44991705.0
|
| 5 |
+
15400.0,3153920000.0,881.274213308,,,,,,1.4083582162857056,0.0012794625984949282,0.00639731299247464,0.044025566428899765,125807.4784108183,135414.70918340256,629.0373920540915,224.30047799882863,0.0,45285758.0
|
| 6 |
+
15500.0,3174400000.0,1033.268247568,1.4249703884124756,1.4283629655838013,0.99609375,0.98046875,0.9836065173149109,1.4005756378173828,0.0012062180938267897,0.006031090469133948,0.043248992413282394,141963.38328256877,124752.2692545215,709.8169164128439,253.10462566168826,0.0,45578390.0
|
| 7 |
+
15600.0,3194880000.0,1184.197042586,,,,,,1.395514726638794,0.00114,0.005699999999999999,0.046222981065511703,134339.09497611749,136034.8664420099,671.6954748805874,239.51138356559002,0.0,45869286.0
|
| 8 |
+
15700.0,3215360000.0,1334.999833401,,,,,,1.403607726097107,0.001079106178201671,0.005395530891008355,0.04351905733346939,135805.50656788255,135693.87980809965,679.0275328394127,242.12582926572452,0.0,46159813.0
|
| 9 |
+
15800.0,3235840000.0,1485.97618825,,,,,,1.4067351818084717,0.0010224275908317687,0.005112137954158844,0.04433123767375946,135476.8797560199,135807.26138561137,677.3843987800994,241.53992489886863,0.0,46451999.0
|
| 10 |
+
15900.0,3256320000.0,1638.323816057,,,,,,1.397456407546997,0.0009691938977423924,0.004845969488711962,0.04439893737435341,134498.05136048398,135651.09740212542,672.4902568024199,239.79478478660445,0.0,46746503.0
|
| 11 |
+
16000.0,3276800000.0,1790.713227249,1.4145047664642334,1.4186652898788452,0.99609375,0.98046875,0.9890710115432739,1.408543348312378,0.0009188442189607878,0.004594221094803939,0.04177549481391907,135729.56447859146,133111.0495971875,678.6478223929573,241.9904331259768,0.0,47042953.0
|
| 12 |
+
16100.0,3297280000.0,1941.602616302,,,,,,1.405790090560913,0.0008709551354127783,0.004354775677063891,0.039409786462783813,135846.6782545767,135737.88220576572,679.2333912728835,242.19923371768692,0.0,47338257.0
|
| 13 |
+
16200.0,3317760000.0,2092.661234855,,,,,,1.4104766845703125,0.0008251976925964478,0.004125988462982239,0.04198456183075905,135829.94454807026,135729.30090002375,679.1497227403513,242.16939941518362,0.0,47633541.0
|
| 14 |
+
16300.0,3338240000.0,2243.658889764,,,,,,1.417162299156189,0.0007813102902651393,0.003906551451325697,0.04160238429903984,134374.5893370214,135577.1295853373,671.872946685107,239.5746659890006,0.0,47928392.0
|
| 15 |
+
16400.0,3358720000.0,2396.297829557,,,,,,1.3881069421768188,0.0007390808239445205,0.0036954041197226027,0.0399840846657753,134785.19472999996,135631.9466250152,673.9259736499998,240.3067288764964,0.0,48223118.0
|
| 16 |
+
16500.0,3379200000.0,2548.999972674,1.4063268899917603,1.4106545448303223,0.99609375,0.984375,0.994535505771637,1.3965935707092285,0.0006983344891360159,0.003491672445680079,0.04109888896346092,134386.17266830392,132846.3762380582,671.9308633415196,239.59531775609992,0.0,48517037.0
|
| 17 |
+
16600.0,3399680000.0,2699.897501393,,,,,,1.3972724676132202,0.0006589251969898564,0.0032946259849492817,0.04026145115494728,135766.03354537126,135470.83406176404,678.8301677268563,242.05545333951426,0.0,48808882.0
|
| 18 |
+
16700.0,3420160000.0,2850.989244227,,,,,,1.3875421285629272,0.0006207293744741368,0.003103646872370684,0.04079505428671837,135141.2495138654,135722.08066087242,675.7062475693269,240.94153420940353,0.0,49100075.0
|
| 19 |
+
16800.0,3440640000.0,3001.831349146,,,,,,1.4045803546905518,0.0005836413862476532,0.002918206931238266,0.04043746739625931,135394.98741557845,135547.62193543883,676.9749370778923,241.39392013557887,0.0,49393163.0
|
| 20 |
+
16900.0,3461120000.0,3154.215613493,,,,,,1.3995227813720703,0.0005475700880760339,0.0027378504403801694,0.04144824296236038,135976.52055437685,135771.92814222784,679.8826027718843,242.4307278250129,0.0,49688368.0
|
| 21 |
+
17000.0,3481600000.0,3306.772777085,1.4001816511154175,1.404437780380249,0.99609375,0.98828125,0.994535505771637,1.3938206434249878,0.0005124361876535793,0.0025621809382678964,0.04110689461231232,134974.47080648097,133072.03701990013,674.8723540324048,240.64418667284298,0.0,49985402.0
|
| 22 |
+
17100.0,3502080000.0,3457.534901616,,,,,,1.391986608505249,0.00047817019302590216,0.002390850965129511,0.04107404872775078,135130.10960881502,135594.6848208885,675.6505480440751,240.92167302102885,0.0,50281463.0
|
| 23 |
+
17200.0,3522560000.0,3608.628781264,,,,,,1.3948298692703247,0.000444710796210366,0.00222355398105183,0.03976499289274216,135046.68251918218,135843.83237428518,675.233412595911,240.77293197384256,0.0,50577577.0
|
| 24 |
+
17300.0,3543040000.0,3759.58662951,,,,,,1.4007588624954224,0.00041200358423370756,0.0020600179211685376,0.0417514331638813,134557.0219406372,135545.4717162085,672.785109703186,239.8999226487039,0.0,50874241.0
|
| 25 |
+
17400.0,3563520000.0,3911.933812017,,,,,,1.383979320526123,0.0003799999999999999,0.0018999999999999996,0.040040142834186554,134965.5425475435,135667.6957889954,674.8277127377175,240.6282685988726,0.0,51169204.0
|
| 26 |
+
17500.0,3584000000.0,4064.155940956,1.393800139427185,1.3984850645065308,1.0,0.9921875,0.994535505771637,1.3734432458877563,0.0003486564962373205,0.0017432824811866026,0.04047509655356407,135018.9812669561,133104.53566874494,675.0949063347805,240.72354378012017,0.0,51461690.0
|
| 27 |
+
17600.0,3604480000.0,4214.773055436,,,,,,1.3865396976470947,0.00031793384040573915,0.0015896692020286958,0.03952247276902199,134362.41953053194,135895.80550368282,671.8120976526598,239.55296860306444,0.0,51752197.0
|
| 28 |
+
17700.0,3624960000.0,4365.439431215,,,,,,1.3937381505966187,0.00028779653889467166,0.0014389826944733583,0.040313832461833954,135537.28940082437,135974.55279077453,677.6864470041219,241.64762845017216,0.0,52043822.0
|
| 29 |
+
17800.0,3645440000.0,4516.313477379,,,,,,1.3997248411178589,0.00025821235640334213,0.0012910617820167108,0.04071689024567604,135409.82105432244,135930.2092722272,677.0491052716122,241.42036683256993,0.0,52337646.0
|
| 30 |
+
17900.0,3665920000.0,4668.835339398,,,,,,1.3577656745910645,0.00022915191195209696,0.0011457595597604848,0.03941017761826515,134855.29856625275,135743.09908039463,674.2764928312638,240.4317160726447,0.0,52633356.0
|
| 31 |
+
18000.0,3686400000.0,4821.438431825,1.3895618915557861,1.3935158252716064,1.0,0.98828125,0.994535505771637,1.3796523809432983,0.00020058833710015988,0.0010029416855007994,0.0392322912812233,134497.0405258796,132948.54962769107,672.485202629398,239.79298258304865,0.0,52929850.0
|
| 32 |
+
18100.0,3706880000.0,4972.24588933,,,,,,1.399108648300171,0.0001724969850484583,0.0008624849252422915,0.039025597274303436,135755.09076774592,135558.37726385338,678.7754538387296,242.03594360700072,0.0,53225701.0
|
| 33 |
+
18200.0,3727360000.0,5123.282394113,,,,,,1.3851826190948486,0.00014485518166353753,0.0007242759083176876,0.04062114655971527,135266.5084188689,135803.02289017063,676.3325420943446,241.16485664317935,0.0,53522191.0
|
| 34 |
+
18300.0,3747840000.0,5274.327240904,,,,,,1.3827378749847412,0.00011764201126709671,0.0005882100563354835,0.03974210470914841,134517.870999668,135597.08660921644,672.58935499834,239.83012095738616,0.0,53819102.0
|
| 35 |
+
18400.0,3768320000.0,5426.728177862,,,,,,1.3622522354125977,9.083813143581147e-05,0.0004541906571790573,0.03881387412548065,134129.87293322873,135589.59192413653,670.6493646661437,239.1383643713368,0.0,54114596.0
|
| 36 |
+
18500.0,3788800000.0,5579.071679673,1.3858922719955444,1.389794111251831,1.0,0.9921875,0.994535505771637,1.3679753541946411,6.442561214933782e-05,0.00032212806074668907,0.03845897316932678,134305.57223834214,133050.95140255467,671.5278611917107,239.45161632280113,0.0,54407977.0
|
| 37 |
+
18600.0,3809280000.0,5729.953449792,,,,,,1.3841793537139893,3.838779548478472e-05,0.00019193897742392362,0.039896123111248016,135405.25322787932,135793.82282380576,677.0262661393966,241.4122229156299,0.0,54699203.0
|
| 38 |
+
18700.0,3829760000.0,5807.116263526,,,,,,1.392147421836853,1.2709172738163532e-05,6.354586369081767e-05,0.03872116282582283,135698.5168623673,135736.06955314538,678.4925843118366,241.93507874444268,0.0,54991135.0
|
| 39 |
+
18750.0,3840000000.0,5810.469788764,1.3851300477981567,1.3888936042785645,,,,,,,,,,,,,
|
training-curves/350m/anneal-T037500.csv
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step,tokens,wall_clock_s,train_loss,val_loss,valid_prob_mass,game_end_accuracy,game_end_top1_accuracy,batch_train_loss,lr,muon_lr,unclipped_grad_norm,tokens_per_second,avg_tokens_per_second,samples_per_second,t_flops,shard_idx,shard_sample_idx
|
| 2 |
+
30100.0,6164480000.0,339.256273857,,,,,,1.398147702217102,0.0016806068977079421,0.00840303448853971,0.04802625998854637,135211.6178988175,125563.46327168231,676.0580894940874,241.06699306590505,1.0,10111625.0
|
| 3 |
+
30200.0,6184960000.0,489.977766907,,,,,,1.3897705078125,0.001589731299247464,0.00794865649623732,0.0490470826625824,135800.43968691357,135717.81617393414,679.0021984345678,242.11679559111582,1.0,10405706.0
|
| 4 |
+
30300.0,6205440000.0,640.756763554,,,,,,1.4016926288604736,0.00152,0.0076,0.05038044601678848,135607.492915678,135880.5546098023,678.0374645783901,241.77279336197057,1.0,10700206.0
|
| 5 |
+
30400.0,6225920000.0,802.805090209,,,,,,1.4143056869506836,0.0014612137954158843,0.0073060689770794215,0.04164512827992439,136052.15750429977,135828.67239650973,680.2607875214989,242.56557993584434,1.0,10994475.0
|
| 6 |
+
30500.0,6246400000.0,954.71000794,1.4107460975646973,1.4141361713409424,0.99609375,0.98828125,0.994535505771637,1.4159812927246094,0.001409422109480394,0.00704711054740197,0.04470105096697807,141834.1556749863,125265.90595383862,709.1707783749315,252.87422748093192,1.0,11287032.0
|
| 7 |
+
30600.0,6266880000.0,1105.562861174,,,,,,1.4097784757614136,0.0013625988462982238,0.006812994231491119,0.04488513246178627,134105.28909667302,136116.6464587897,670.526445483365,239.09453417650138,1.0,11579201.0
|
| 8 |
+
30700.0,6287360000.0,1256.431870386,,,,,,1.399253010749817,0.0013195404119722602,0.006597702059861301,0.04132673144340515,135687.9707669967,135762.20980962293,678.4398538349835,241.91627625143883,1.0,11869949.0
|
| 9 |
+
30800.0,6307840000.0,1407.342317786,,,,,,1.38137948513031,0.0012794625984949282,0.00639731299247464,0.04305035620927811,135770.47552904263,135747.595124939,678.8523776452131,242.0633728930522,1.0,12159973.0
|
| 10 |
+
30900.0,6328320000.0,1559.771698017,,,,,,1.4002010822296143,0.0012418206931238266,0.006209103465619133,0.04478985071182251,135189.08268236698,135710.34801684454,675.9454134118349,241.02681532857574,1.0,12452522.0
|
| 11 |
+
31000.0,6348800000.0,1712.378642773,1.4046928882598877,1.4080088138580322,0.99609375,0.98828125,0.994535505771637,1.4120116233825684,0.0012062180938267897,0.006031090469133948,0.0482356995344162,135958.3345784405,133042.43033887123,679.7916728922024,242.39830429068144,1.0,12746418.0
|
| 12 |
+
31100.0,6369280000.0,1863.386829615,,,,,,1.4024347066879272,0.001172355398105183,0.005861776990525915,0.04291262850165367,138960.56049254857,135540.35599584237,694.8028024627429,247.75093289512702,1.0,13042369.0
|
| 13 |
+
31200.0,6389760000.0,2014.346903518,,,,,,1.3842864036560059,0.00114,0.005699999999999999,0.04262661188840866,134324.1589077846,135622.57272428233,671.620794538923,239.4847542482489,1.0,13337531.0
|
| 14 |
+
31300.0,6410240000.0,2165.469613453,,,,,,1.3878213167190552,0.0011089669202028697,0.005544834601014348,0.04163743183016777,135205.4885976361,135665.6816731463,676.0274429881805,241.05606521644688,1.0,13632103.0
|
| 15 |
+
31400.0,6430720000.0,2317.879003729,,,,,,1.3883070945739746,0.001079106178201671,0.005395530891008355,0.04209481179714203,135500.28049875842,135519.7569336995,677.501402493792,241.58164577149148,1.0,13927178.0
|
| 16 |
+
31500.0,6451200000.0,2470.338327103,1.3987691402435303,1.4025293588638306,0.99609375,0.98046875,0.9890710115432739,1.3792915344238281,0.00105029416855008,0.0052514708427504,0.04197924584150314,135202.65823986204,133052.42348307904,676.0132911993102,241.05101900926073,1.0,14220954.0
|
| 17 |
+
31600.0,6471680000.0,2620.984249032,,,,,,1.3764609098434448,0.0010224275908317687,0.005112137954158844,0.04230089113116264,128253.03982921763,135680.51125185014,641.2651991460881,228.66063688645235,1.0,14514065.0
|
| 18 |
+
31700.0,6492160000.0,2771.73370623,,,,,,1.379419207572937,0.000995419065717906,0.004977095328589529,0.046046312898397446,135023.4593965333,135948.71046261504,675.1172969826664,240.73152777771227,1.0,14804923.0
|
| 19 |
+
31800.0,6512640000.0,2922.514177433,,,,,,1.383323073387146,0.0009691938977423924,0.004845969488711962,0.0397937074303627,135755.9918710147,135855.2436837534,678.7799593550735,242.03755017201948,1.0,15095623.0
|
| 20 |
+
31900.0,6533120000.0,3074.900248485,,,,,,1.3897899389266968,0.0009436876381990383,0.004718438190995192,0.042155273258686066,134292.05025656385,135827.2426236786,671.4602512828193,239.42750816154813,1.0,15386938.0
|
| 21 |
+
32000.0,6553600000.0,3227.308340152,1.393596887588501,1.3971145153045654,0.99609375,0.98828125,0.994535505771637,1.3830513954162598,0.0009188442189607878,0.004594221094803939,0.04171619191765785,135776.4630104321,133078.27665430342,678.8823150521605,242.07404789389184,1.0,15680425.0
|
| 22 |
+
32100.0,6574080000.0,3378.396426401,,,,,,1.3972615003585815,0.0008946145017954555,0.004473072508977278,0.04258222132921219,135709.98653000983,135720.59973610626,678.5499326500492,241.95552786215174,1.0,15977422.0
|
| 23 |
+
32200.0,6594560000.0,3529.513499517,,,,,,1.3962061405181885,0.0008709551354127783,0.004354775677063891,0.039791058748960495,134697.25021075027,135550.88493199114,673.4862510537514,240.14993376420057,1.0,16273290.0
|
| 24 |
+
32300.0,6615040000.0,3680.480964662,,,,,,1.3803822994232178,0.0008478276440303772,0.004239138220151885,0.04346299543976784,135535.49300819292,135524.7070995324,677.6774650409646,241.64442568567043,1.0,16568465.0
|
| 25 |
+
32400.0,6635520000.0,3832.935519698,,,,,,1.3787788152694702,0.0008251976925964478,0.004125988462982239,0.04030342027544975,135103.94655945507,135658.97638395338,675.5197327972754,240.87502726871375,1.0,16863918.0
|
| 26 |
+
32500.0,6656000000.0,3985.406913866,1.3898255825042725,1.3940341472625732,0.99609375,0.9921875,0.994535505771637,1.38494873046875,0.0008030344885397111,0.004015172442698556,0.04125060513615608,134764.8945288017,133009.30047285723,673.8244726440086,240.27053591809872,1.0,17159812.0
|
| 27 |
+
32600.0,6676480000.0,4136.285200655,,,,,,1.3730610609054565,0.0007813102902651393,0.003906551451325697,0.03963964805006981,138113.67745821306,135673.77792473687,690.5683872910653,246.24103641035478,1.0,17453871.0
|
| 28 |
+
32700.0,6696960000.0,4286.985544752,,,,,,1.3941854238510132,0.00076,0.0038,0.04044607654213905,133831.83227612133,135739.28671773808,669.1591613806066,238.606991652507,1.0,17747164.0
|
| 29 |
+
32800.0,6717440000.0,4437.626244625,,,,,,1.3834232091903687,0.0007390808239445205,0.0036954041197226027,0.04067292436957359,135288.57938350146,135899.41832486077,676.4428969175074,241.20420667212446,1.0,18037899.0
|
| 30 |
+
32900.0,6737920000.0,4589.856769913,,,,,,1.3825520277023315,0.00071853198660875,0.00359265993304375,0.04046636447310448,135880.0935570832,135953.39765662007,679.400467785416,242.25880941556562,1.0,18329418.0
|
| 31 |
+
33000.0,6758400000.0,4742.110061927,1.3864549398422241,1.390041470527649,1.0,0.9921875,0.994535505771637,1.3813596963882446,0.0006983344891360159,0.003491672445680079,0.04253961145877838,135225.83661194204,133207.5551657781,676.1291830597102,241.09234342019758,1.0,18622879.0
|
| 32 |
+
33100.0,6778880000.0,4893.186079124,,,,,,1.3822599649429321,0.000678470903607559,0.003392354518037795,0.04235249385237694,134904.62440554742,135865.61959735304,674.5231220277371,240.51965845469738,1.0,18919426.0
|
| 33 |
+
33200.0,6799360000.0,5044.329044361,,,,,,1.355193853378296,0.0006589251969898564,0.0032946259849492817,0.03956690803170204,135025.28469095557,135561.62516092916,675.1264234547779,240.73478207083207,1.0,19215176.0
|
| 34 |
+
33300.0,6819840000.0,5195.576086169,,,,,,1.3726208209991455,0.0006396825796649481,0.0031984128983247404,0.03985275700688362,135346.98712791505,135501.58711819793,676.7349356395753,241.30834106187845,1.0,19510215.0
|
| 35 |
+
33400.0,6840320000.0,5347.983258826,,,,,,1.3744590282440186,0.0006207293744741368,0.003103646872370684,0.039133843034505844,135303.41102654015,135408.2378620089,676.5170551327008,241.23064981099907,1.0,19805367.0
|
| 36 |
+
33500.0,6860800000.0,5500.30769368,1.3828299045562744,1.387444257736206,1.0,0.98828125,0.994535505771637,1.371967077255249,0.000602052902978451,0.0030102645148922546,0.04081401601433754,135133.1707737605,133053.636330441,675.6658538688025,240.9271307312475,1.0,20100118.0
|
| 37 |
+
33600.0,6881280000.0,5650.978127564,,,,,,1.3642387390136719,0.0005836413862476532,0.002918206931238266,0.042218830436468124,135017.7503639534,135802.43526290907,675.088751819767,240.72134921954745,1.0,20393991.0
|
| 38 |
+
33700.0,6901760000.0,5801.538905218,,,,,,1.3543999195098877,0.0005654838579719865,0.0028274192898599323,0.04117608442902565,135592.27348617336,135926.45715668064,677.9613674308667,241.74565884376952,1.0,20686710.0
|
| 39 |
+
33800.0,6922240000.0,5952.230641091,,,,,,1.3732246160507202,0.0005475700880760339,0.0027378504403801694,0.04152366518974304,135680.1051331381,136025.40897977704,678.4005256656906,241.9022527175716,1.0,20976491.0
|
| 40 |
+
33900.0,6942720000.0,6104.485434366,,,,,,1.3856713771820068,0.000529890515323684,0.0026494525766184197,0.04093167185783386,134978.03395689785,135907.21458056863,674.8901697844892,240.6505393662741,1.0,21267789.0
|
| 41 |
+
34000.0,6963200000.0,6256.851039976,1.3791520595550537,1.3840686082839966,1.0,0.98828125,0.994535505771637,1.3924163579940796,0.0005124361876535793,0.0025621809382678964,0.040503207594156265,135133.234549505,133185.59169002407,675.666172747525,240.92724443617314,1.0,21560293.0
|
| 42 |
+
34100.0,6983680000.0,6407.921619974,,,,,,1.362451434135437,0.0004951987091881406,0.002475993545940703,0.04322245717048645,134792.1743367241,135765.2086988564,673.9608716836204,240.319172724384,1.0,21854919.0
|
| 43 |
+
34200.0,7004160000.0,6558.995479633,,,,,,1.3732627630233765,0.00047817019302590216,0.002390850965129511,0.04216481000185013,134105.07973302426,135566.44723378803,670.5253986651213,239.09416090483995,1.0,22150718.0
|
| 44 |
+
34300.0,7024640000.0,6709.827841293,,,,,,1.3650022745132446,0.00046134321906393075,0.0023067160953196535,0.04070575535297394,134924.7547971299,135563.55809938203,674.6237739856494,240.55554866179224,1.0,22446272.0
|
| 45 |
+
34400.0,7045120000.0,6862.351160466,,,,,,1.3680044412612915,0.000444710796210366,0.00222355398105183,0.04149752855300903,135808.57693819999,135780.57879806662,679.0428846909999,242.13130338807827,1.0,22741419.0
|
| 46 |
+
34500.0,7065600000.0,7014.739727505,1.376853585243225,1.381084680557251,1.0,0.98828125,0.9890710115432739,1.3835318088531494,0.00042826632844118154,0.0021413316422059076,0.040529515594244,135713.86736119835,132959.0645749961,678.5693368059917,241.96244694440034,1.0,23037310.0
|
| 47 |
+
34600.0,7086080000.0,7165.540725391,,,,,,1.3583420515060425,0.00041200358423370756,0.0020600179211685376,0.04073171690106392,135696.15885323077,135738.85579458735,678.4807942661538,241.9308746813525,1.0,23331816.0
|
| 48 |
+
34700.0,7106560000.0,7316.299840178,,,,,,1.3662644624710083,0.0003959166689751971,0.0019795833448759854,0.04131161794066429,135759.01709091023,135808.80754364573,678.7950854545512,242.04294379628723,1.0,23624994.0
|
| 49 |
+
34800.0,7127040000.0,7467.11911032,,,,,,1.3690600395202637,0.0003799999999999999,0.0018999999999999996,0.03987034037709236,134128.78385020932,135846.47888654153,670.6439192510467,239.13642265972376,1.0,23917595.0
|
| 50 |
+
34900.0,7147520000.0,7619.356803776,,,,,,1.3672280311584473,0.0003642482839555954,0.0018212414197779768,0.04161224886775017,135160.0469523459,135792.29933206167,675.8002347617295,240.97504791216264,1.0,24209341.0
|
| 51 |
+
35000.0,7168000000.0,7773.534411141,1.373861312866211,1.3779349327087402,1.0,0.98828125,0.994535505771637,1.370793104171753,0.0003486564962373205,0.0017432824811866026,0.04213946685194969,135789.14791423752,133206.7596683439,678.9457395711876,242.0966636399736,1.0,24501866.0
|
| 52 |
+
35100.0,7188480000.0,7924.509261056,,,,,,1.3685662746429443,0.00033321986226528895,0.0016660993113264445,0.041230279952287674,134058.51256968093,134147.42552638866,670.2925628484046,239.0111369294062,1.0,24796804.0
|
| 53 |
+
35200.0,7208960000.0,8075.308120168,,,,,,1.3699861764907837,0.00031793384040573915,0.0015896692020286958,0.04165780171751976,135666.09070523846,135652.38251046636,678.3304535261923,241.87726658068624,1.0,25092516.0
|
| 54 |
+
35300.0,7229440000.0,8226.057093652,,,,,,1.3631913661956787,0.00030279410636365785,0.0015139705318182892,0.04024869203567505,136251.2134936362,135810.65069762417,681.256067468181,242.92047420859092,1.0,25386737.0
|
| 55 |
+
35400.0,7249920000.0,8378.317600467,,,,,,1.3846614360809326,0.00028779653889467166,0.0014389826944733583,0.041119225323200226,135117.76006709694,135855.58660700882,675.5888003354847,240.89965518754693,1.0,25680694.0
|
| 56 |
+
35500.0,7270400000.0,8530.576008849,1.3714767694473267,1.3758108615875244,1.0,0.98828125,0.9890710115432739,1.3648346662521362,0.0002729372067024171,0.0013646860335120856,0.04147123172879219,134698.87659654274,133176.3333955949,673.4943829827138,240.1528334257729,1.0,25974829.0
|
| 57 |
+
35600.0,7290880000.0,8681.303056499,,,,,,1.370133638381958,0.00025821235640334213,0.0012910617820167108,0.03982421010732651,134265.05643239242,135866.28857337165,671.325282161962,239.37938123188422,1.0,26268295.0
|
| 58 |
+
35700.0,7311360000.0,8831.903997183,,,,,,1.3507838249206543,0.00024361840145454414,0.0012180920072727207,0.04088389873504639,135739.51644443825,135875.50018125755,678.6975822221913,242.0081763533641,1.0,26560093.0
|
| 59 |
+
35800.0,7331840000.0,8982.58238978,,,,,,1.358315110206604,0.00022915191195209696,0.0011457595597604848,0.04329177737236023,135065.55984393283,135989.18344880428,675.3277992196641,240.80658810476888,1.0,26849807.0
|
| 60 |
+
35900.0,7352320000.0,9134.889570094,,,,,,1.3742064237594604,0.00021480960521765772,0.0010740480260882886,0.0405954085290432,135388.45737626834,135919.41034704438,676.9422868813417,241.38227781544725,1.0,27140172.0
|
| 61 |
+
36000.0,7372800000.0,9287.028316262,1.3688410520553589,1.372727632522583,1.0,0.98828125,0.994535505771637,1.3794760704040527,0.00020058833710015988,0.0010029416855007994,0.04149976372718811,135184.57228550382,133140.75575521495,675.922861427519,241.01877380206906,1.0,27433169.0
|
| 62 |
+
36100.0,7393280000.0,9437.827952416,,,,,,1.3453419208526611,0.0001864850939273002,0.000932425469636501,0.042456209659576416,135645.37437066148,135969.1945720488,678.2268718533073,241.84033170362886,1.0,27727796.0
|
| 63 |
+
36200.0,7413760000.0,9588.758591452,,,,,,1.3606151342391968,0.0001724969850484583,0.0008624849252422915,0.04259956628084183,136044.78824918845,135810.01533635604,680.2239412459422,242.5524413890358,1.0,28021594.0
|
| 64 |
+
36300.0,7434240000.0,9739.623665975,,,,,,1.3634809255599976,0.00015862123591678083,0.0007931061795839041,0.042096395045518875,136055.71313218476,135692.23766549077,680.2785656609237,242.5719192174535,1.0,28314346.0
|
| 65 |
+
36400.0,7454720000.0,9891.787246095,,,,,,1.3753491640090942,0.00014485518166353753,0.0007242759083176876,0.041570987552404404,135644.62467367668,135751.16531528725,678.2231233683833,241.83899507885766,1.0,28607132.0
|
| 66 |
+
36500.0,7475200000.0,10043.914454086,1.366948127746582,1.3715553283691406,1.0,0.9921875,0.994535505771637,1.3601702451705933,0.00013119626112260076,0.0006559813056130039,0.039398372173309326,135103.64906882364,133264.3548057199,675.5182453441182,240.87449687662834,1.0,28899553.0
|
| 67 |
+
36600.0,7495680000.0,10194.552998845,,,,,,1.3503566980361938,0.00011764201126709671,0.0005882100563354835,0.03939974308013916,135844.7017869803,135980.52212200692,679.2235089349015,242.19570989992803,1.0,29192665.0
|
| 68 |
+
36700.0,7516160000.0,10345.105181063,,,,,,1.363079309463501,0.00010419006202400876,0.0005209503101200437,0.04138334468007088,135428.94950637428,135955.27055899167,677.1447475318714,241.45447069501753,1.0,29486113.0
|
| 69 |
+
36800.0,7536640000.0,10495.54612931,,,,,,1.365344524383545,9.083813143581147e-05,0.0004541906571790573,0.04028843715786934,135618.15497278774,136033.30716163488,678.0907748639387,241.7918026016149,1.0,29775157.0
|
| 70 |
+
36900.0,7557120000.0,10647.802647457,,,,,,1.348183035850525,7.758402114116653e-05,0.00038792010570583264,0.040822092443704605,134923.20772237837,136133.8698625002,674.6160386118919,240.55279040281872,1.0,30064042.0
|
| 71 |
+
37000.0,7577600000.0,10800.031825461,1.3648345470428467,1.3693031072616577,1.0,0.9921875,0.994535505771637,1.3725662231445312,6.442561214933782e-05,0.00032212806074668907,0.040373995900154114,135224.0484656755,133184.97301237923,676.1202423283775,241.08915535803,1.0,30355490.0
|
| 72 |
+
37100.0,7598080000.0,10950.95132637,,,,,,1.3528468608856201,5.1360860885319516e-05,0.00025680430442659755,0.042147595435380936,135819.01294085188,135887.30331806306,679.0950647042594,242.14990959823987,1.0,30654379.0
|
| 73 |
+
37200.0,7618560000.0,11101.91207407,,,,,,1.3426976203918457,3.838779548478472e-05,0.00019193897742392362,0.04045206308364868,137263.93646245293,135702.3001376945,686.3196823122646,244.72604450421537,1.0,30949757.0
|
| 74 |
+
37300.0,7639040000.0,11252.714619001,,,,,,1.3447833061218262,2.550451231982599e-05,0.00012752256159912994,0.04309967905282974,134690.7450603087,135665.08623481836,673.4537253015434,240.1383358181012,1.0,31244938.0
|
| 75 |
+
37400.0,7659520000.0,11404.926330133,,,,,,1.3553613424301147,1.2709172738163532e-05,6.354586369081767e-05,0.04080703854560852,135374.43912555958,135807.4703006168,676.8721956277979,241.35728486292643,1.0,31538482.0
|
| 76 |
+
37500.0,7680000000.0,11408.824747448,1.3643882274627686,1.3687193393707275,,,,,,,,,,,,,
|
training-curves/350m/anneal-T075000.csv
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step,tokens,wall_clock_s,train_loss,val_loss,valid_prob_mass,game_end_accuracy,game_end_top1_accuracy,batch_train_loss,lr,muon_lr,unclipped_grad_norm,tokens_per_second,avg_tokens_per_second,samples_per_second,t_flops,shard_idx,shard_sample_idx
|
| 2 |
+
60100.0,12308480000.0,337.191017922,,,,,,1.396395206451416,0.0017448656496237322,0.008724328248118661,0.0469592809677124,135021.44314029257,126775.93654916126,675.1072157014629,240.72793302130933,2.0,5605774.0
|
| 3 |
+
60200.0,12328960000.0,487.840933489,,,,,,1.3973630666732788,0.0016806068977079421,0.00840303448853971,0.049904946237802505,134842.19484578658,135904.55774561624,674.210974228933,240.40835362391547,2.0,5896640.0
|
| 4 |
+
60300.0,12349440000.0,638.79737209,,,,,,1.4043965339660645,0.001631299423149112,0.00815649711574556,0.04608941823244095,135461.58281835727,135945.0539269332,677.3079140917863,241.51265219240486,2.0,6189408.0
|
| 5 |
+
60400.0,12369920000.0,800.727560583,,,,,,1.3864264488220215,0.001589731299247464,0.00794865649623732,0.043873630464076996,135415.45655456,135669.01378164132,677.0772827728,241.43041429090079,2.0,6484016.0
|
| 6 |
+
60500.0,12390400000.0,953.156310962,1.3997756242752075,1.4041006565093994,0.99609375,0.98828125,0.994535505771637,1.3863921165466309,0.0015531090469133948,0.007765545234566974,0.04551709443330765,142045.50041406826,125358.16467781577,710.2275020703413,253.25103120196212,2.0,6780952.0
|
| 7 |
+
60600.0,12410880000.0,1104.381094589,,,,,,1.3838530778884888,0.00152,0.0076,0.04851466044783592,134162.59555838772,135642.1910001804,670.8129777919386,239.19670510399632,2.0,7076549.0
|
| 8 |
+
60700.0,12431360000.0,1255.601413433,,,,,,1.3814599514007568,0.0014895530891008354,0.007447765445504177,0.05420329049229622,135355.02746908597,135428.21864044317,676.7751373454298,241.3226760790864,2.0,7372904.0
|
| 9 |
+
60800.0,12451840000.0,1406.638902525,,,,,,1.3608042001724243,0.0014612137954158843,0.0073060689770794215,0.04400833696126938,134257.24997796226,135432.19675603142,671.2862498898113,239.36546320823192,2.0,7669330.0
|
| 10 |
+
60900.0,12472320000.0,1558.948249387,,,,,,1.400377631187439,0.0014345969488711962,0.007172984744355982,0.04899069294333458,134928.35771146568,135596.10841762062,674.6417885573284,240.5619722497849,2.0,7963971.0
|
| 11 |
+
61000.0,12492800000.0,1711.306991371,1.3954205513000488,1.3994724750518799,0.99609375,0.98828125,0.994535505771637,1.385858416557312,0.001409422109480394,0.00704711054740197,0.042557068169116974,134613.61823788646,133133.37331601273,673.0680911894324,240.00082743342998,2.0,8257510.0
|
| 12 |
+
61100.0,12513280000.0,1862.207751404,,,,,,1.3834097385406494,0.001385477567706389,0.006927387838531945,0.0456128790974617,135288.4728461053,135776.79437607795,676.4423642305264,241.20401672801944,2.0,8547517.0
|
| 13 |
+
61200.0,12533760000.0,2013.068445668,,,,,,1.3781038522720337,0.0013625988462982238,0.006812994231491119,0.04310963675379753,135142.56771575226,135718.99039823964,675.7128385787613,240.94388441399437,2.0,8839230.0
|
| 14 |
+
61300.0,12554240000.0,2164.07050299,,,,,,1.4264163970947266,0.0013406551451325696,0.006703275725662847,0.045865248888731,135373.13773053008,135755.0023744505,676.8656886526504,241.3549646230578,2.0,9132266.0
|
| 15 |
+
61400.0,12574720000.0,2316.537826199,,,,,,1.3815865516662598,0.0013195404119722602,0.006597702059861301,0.04470575228333473,135193.40188220868,135627.92678590873,675.9670094110434,241.03451597245876,2.0,9426615.0
|
| 16 |
+
61500.0,12595200000.0,2469.022812442,1.3923972845077515,1.3972084522247314,0.99609375,0.98046875,0.9836065173149109,1.396011471748352,0.0012991672445680077,0.006495836222840039,0.059014804661273956,135153.45449510595,133001.94825493326,675.7672724755298,240.9632943079351,2.0,9723778.0
|
| 17 |
+
61600.0,12615680000.0,2620.114559738,,,,,,1.3925414085388184,0.0012794625984949282,0.00639731299247464,0.04191071540117264,134739.9928441382,135657.82954935494,673.6999642206911,240.22613903610448,2.0,10019616.0
|
| 18 |
+
61700.0,12636160000.0,2771.074865185,,,,,,1.3870258331298828,0.0012603646872370686,0.006301823436185342,0.04366905614733696,135148.9890023443,135547.48354764504,675.7449450117214,240.95533284035304,2.0,10315001.0
|
| 19 |
+
61800.0,12656640000.0,2922.138643019,,,,,,1.3835108280181885,0.0012418206931238266,0.006209103465619133,0.047087978571653366,134088.41648335388,135665.54047301246,670.4420824167694,239.06445221889143,2.0,10610296.0
|
| 20 |
+
61900.0,12677120000.0,3074.586035066,,,,,,1.3916643857955933,0.001223785044038017,0.006118925220190085,0.044164471328258514,135421.75435410268,135572.49098061625,677.1087717705134,241.44164255384356,2.0,10905561.0
|
| 21 |
+
62000.0,12697600000.0,3226.911441791,1.389513611793518,1.3929870128631592,0.99609375,0.98828125,0.994535505771637,1.3798959255218506,0.0012062180938267897,0.006031090469133948,0.041915249079465866,134474.49022978247,133012.6102659515,672.3724511489124,239.75277796041817,2.0,11200125.0
|
| 22 |
+
62100.0,12718080000.0,3377.760038324,,,,,,1.359046459197998,0.001189085096512951,0.0059454254825647545,0.05040348693728447,135345.47300609312,135808.31670282746,676.7273650304655,241.30564155424423,2.0,11492991.0
|
| 23 |
+
62200.0,12738560000.0,3528.741329233,,,,,,1.396652340888977,0.001172355398105183,0.005861776990525915,0.046277597546577454,134260.56551168358,135766.0013581445,671.3028275584179,239.37137442915383,2.0,11785437.0
|
| 24 |
+
62300.0,12759040000.0,3679.724702892,,,,,,1.4003912210464478,0.0011560017921168537,0.005780008960584269,0.04485175013542175,134053.24048476142,135646.8026734505,670.2662024238072,239.00173739940664,2.0,12078566.0
|
| 25 |
+
62400.0,12779520000.0,3832.337025359,,,,,,1.3875635862350464,0.00114,0.005699999999999999,0.045494597405195236,135662.31973277952,135644.7289881608,678.3115986638976,241.8705433641037,2.0,12373383.0
|
| 26 |
+
62500.0,12800000000.0,3984.858456424,1.386419415473938,1.39154052734375,0.99609375,0.9921875,0.994535505771637,1.3684003353118896,0.0011243282481186603,0.0056216412405933015,0.042770955711603165,134720.80495588135,132872.57915763973,673.6040247794067,240.19192920563836,2.0,12667204.0
|
| 27 |
+
62600.0,12820480000.0,4135.907461139,,,,,,1.3706144094467163,0.0011089669202028697,0.005544834601014348,0.044130511581897736,139165.180639076,135629.49884420683,695.82590319538,248.1157474296368,2.0,12961090.0
|
| 28 |
+
62700.0,12840960000.0,4286.887866204,,,,,,1.3774811029434204,0.0010938982694473358,0.005469491347236679,0.048620156943798065,135733.63946058188,135585.77469625496,678.6681973029093,241.99769835710478,2.0,13255036.0
|
| 29 |
+
62800.0,12861440000.0,4437.743790494,,,,,,1.3833712339401245,0.001079106178201671,0.005395530891008355,0.0441058948636055,135222.0687874707,135647.38531309972,676.1103439373535,241.0856258161202,2.0,13549085.0
|
| 30 |
+
62900.0,12881920000.0,4590.035602933,,,,,,1.3769960403442383,0.0010645759559760484,0.005322879779880242,0.04428998380899429,135547.55541515027,135759.37519146624,677.7377770757514,241.66593159041096,2.0,13842911.0
|
| 31 |
+
63000.0,12902400000.0,4742.262078004,1.3844759464263916,1.3887443542480469,0.99609375,0.98828125,0.994535505771637,1.3734240531921387,0.00105029416855008,0.0052514708427504,0.041074372828006744,136577.6402415805,133167.42300990448,682.8882012079025,243.50245611078296,2.0,14135800.0
|
| 32 |
+
63100.0,12922880000.0,4892.992265625,,,,,,1.3782778978347778,0.0010362484925242293,0.005181242462621146,0.045493029057979584,130040.71852661381,135876.43684276796,650.2035926330691,231.84786543120484,2.0,14426312.0
|
| 33 |
+
63200.0,12943360000.0,5043.932333886,,,,,,1.3628199100494385,0.0010224275908317687,0.005112137954158844,0.04341248795390129,135366.56713444917,135872.58603864856,676.8328356722459,241.3432499947996,2.0,14718449.0
|
| 34 |
+
63300.0,12963840000.0,5194.686518749,,,,,,1.3717756271362305,0.0010088210056335483,0.005044105028167742,0.04294026643037796,135294.86538688405,135683.682061743,676.4743269344202,241.21541390385045,2.0,15011558.0
|
| 35 |
+
63400.0,12984320000.0,5347.094413013,,,,,,1.3773818016052246,0.000995419065717906,0.004977095328589529,0.04290932044386864,134654.11252310025,135851.0907111652,673.2705626155013,240.07302415531333,2.0,15306993.0
|
| 36 |
+
63500.0,13004800000.0,5499.398903291,1.3819730281829834,1.3871519565582275,0.99609375,0.98828125,0.994535505771637,1.3761048316955566,0.000982212806074669,0.004911064030373344,0.04282388463616371,135203.46690141986,133053.77173380402,676.0173345070993,241.052460761184,2.0,15600956.0
|
| 37 |
+
63600.0,13025280000.0,5650.279253964,,,,,,1.3548617362976074,0.0009691938977423924,0.004845969488711962,0.04228973761200905,133803.35573271525,135819.79420244668,669.0167786635762,238.55622120246363,2.0,15893944.0
|
| 38 |
+
63700.0,13045760000.0,5801.131262692,,,,,,1.3657362461090088,0.0009563545863690816,0.004781772931845408,0.04753309488296509,135083.67769449565,135737.53644460117,675.4183884724782,240.83889017927896,2.0,16186922.0
|
| 39 |
+
63800.0,13066240000.0,5951.980097488,,,,,,1.3678356409072876,0.0009436876381990383,0.004718438190995192,0.044866446405649185,135071.4215942952,135762.8279870971,675.357107971476,240.81703894143456,2.0,16480054.0
|
| 40 |
+
63900.0,13086720000.0,6104.320397407,,,,,,1.3629295825958252,0.0009311862924173708,0.004655931462086854,0.041916146874427795,135198.10437908262,135765.7346339128,675.9905218954132,241.0428999915166,2.0,16772414.0
|
| 41 |
+
64000.0,13107200000.0,6256.366445426,1.37983238697052,1.3846629858016968,1.0,0.9921875,0.994535505771637,1.3642750978469849,0.0009188442189607878,0.004594221094803939,0.041225384920835495,136114.5480304994,133121.0569725036,680.572740152497,242.6768151742097,2.0,17064791.0
|
| 42 |
+
64100.0,13127680000.0,6406.845665521,,,,,,1.3851478099822998,0.0009066554810473189,0.004533277405236595,0.04303967207670212,131300.13639115694,136043.7503688275,656.5006819557847,234.09326477141602,2.0,17353763.0
|
| 43 |
+
64200.0,13148160000.0,6557.3283554,,,,,,1.37603759765625,0.0008946145017954555,0.004473072508977278,0.04632684215903282,135571.51549748893,136099.2734482221,677.8575774874446,241.70864970215865,2.0,17643240.0
|
| 44 |
+
64300.0,13168640000.0,6708.107318538,,,,,,1.3852089643478394,0.000882716034400096,0.00441358017200048,0.04754570499062538,135857.85067447848,136096.15304769343,679.2892533723924,242.2191528763572,2.0,17934252.0
|
| 45 |
+
64400.0,13189120000.0,6860.517897548,,,,,,1.3601508140563965,0.0008709551354127783,0.004354775677063891,0.04290063679218292,134240.56987196728,135828.59507589322,671.2028493598364,239.33572446936674,2.0,18228394.0
|
| 46 |
+
64500.0,13209600000.0,7013.07447809,1.3778774738311768,1.3819968700408936,1.0,0.98828125,0.994535505771637,1.3632869720458984,0.0008593271407401845,0.004296635703700922,0.040976062417030334,134409.19810298516,133043.72790174672,672.0459905149257,239.636369496985,2.0,18524896.0
|
| 47 |
+
64600.0,13230080000.0,7164.125228675,,,,,,1.344492793083191,0.0008478276440303772,0.004239138220151885,0.04399972781538963,135165.42772473313,135600.95306569018,675.8271386236656,240.98464121960114,2.0,18820614.0
|
| 48 |
+
64700.0,13250560000.0,7314.930359862,,,,,,1.3666422367095947,0.0008364524771627112,0.0041822623858135555,0.04355885833501816,136911.94107545709,135584.17561645183,684.5597053772854,244.09847661593184,2.0,19115554.0
|
| 49 |
+
64800.0,13271040000.0,7466.033837813,,,,,,1.3722444772720337,0.0008251976925964478,0.004125988462982239,0.043880317360162735,134338.25460280146,135805.12482105324,671.6912730140073,239.50988527519533,2.0,19410716.0
|
| 50 |
+
64900.0,13291520000.0,7618.478565371,,,,,,1.3774136304855347,0.0008140595473661244,0.004070297736830622,0.044734034687280655,134182.211645855,135536.95556759133,670.9110582292749,239.23167836513272,2.0,19705062.0
|
| 51 |
+
65000.0,13312000000.0,7772.690043608,1.3752855062484741,1.380476713180542,1.0,0.9921875,0.994535505771637,1.3498742580413818,0.0008030344885397111,0.004015172442698556,0.04260784387588501,135041.6084128261,133020.44279460536,675.2080420641306,240.76388541718742,2.0,19998050.0
|
| 52 |
+
65100.0,13332480000.0,7923.329636393,,,,,,1.3444138765335083,0.0007921191399793929,0.003960595699896964,0.0447610579431057,135643.0182080426,134124.95732970923,678.215091040213,241.8361309326705,2.0,20289955.0
|
| 53 |
+
65200.0,13352960000.0,8074.217267286,,,,,,1.3649897575378418,0.0007813102902651393,0.003906551451325697,0.04390731826424599,135736.94252026075,135954.2925721682,678.6847126013038,242.00358733822253,2.0,20580922.0
|
| 54 |
+
65300.0,13373440000.0,8224.97829652,,,,,,1.3767075538635254,0.0007706048816586228,0.0038530244082931138,0.04312802851200104,135428.6292311127,135730.80796557624,677.1431461555634,241.45389968051842,2.0,20872303.0
|
| 55 |
+
65400.0,13393920000.0,8377.322798747,,,,,,1.3677709102630615,0.00076,0.0038,0.04451831057667732,135631.77401395424,135844.74260475123,678.1588700697712,241.8160838087587,2.0,21165739.0
|
| 56 |
+
65500.0,13414400000.0,8529.80325538,1.373164415359497,1.3784458637237549,1.0,0.9921875,0.994535505771637,1.3596231937408447,0.0007494928654429532,0.0037474643272147664,0.04466551914811134,135656.92075080282,133113.08490513088,678.284603754014,241.86091759103059,2.0,21460956.0
|
| 57 |
+
65600.0,13434880000.0,8680.819776598,,,,,,1.3547793626785278,0.0007390808239445205,0.0036954041197226027,0.051529135555028915,135484.67910548518,135656.92225046037,677.4233955274259,241.55383025517372,2.0,21756880.0
|
| 58 |
+
65700.0,13455360000.0,8831.85418146,,,,,,1.3631606101989746,0.0007287613394358945,0.0036438066971794724,0.04160383343696594,135723.66691167688,135614.93134352623,678.6183345583844,241.97991843245714,2.0,22053280.0
|
| 59 |
+
65800.0,13475840000.0,8982.945636788,,,,,,1.3583766222000122,0.00071853198660875,0.00359265993304375,0.04869122430682182,135040.37709722918,135598.98459802597,675.2018854861459,240.7616901210059,2.0,22349342.0
|
| 60 |
+
65900.0,13496320000.0,9135.297720881,,,,,,1.3468894958496094,0.0007083904442589708,0.0035419522212948537,0.04690860956907272,135838.51495587113,135547.69701146992,679.1925747793556,242.18467948112772,2.0,22644361.0
|
| 61 |
+
66000.0,13516800000.0,9287.687546585,1.3717020750045776,1.3766874074935913,1.0,0.9921875,0.994535505771637,1.343356966972351,0.0006983344891360159,0.003491672445680079,0.04273412749171257,133784.0794487244,133088.15332005871,668.920397243622,238.52185377242049,2.0,22938443.0
|
| 62 |
+
66100.0,13537280000.0,9438.503571761,,,,,,1.3608981370925903,0.000688361990251764,0.0034418099512588196,0.04740790277719498,135654.26426662598,135757.50017301706,678.2713213331299,241.8561813807656,2.0,23230445.0
|
| 63 |
+
66200.0,13557760000.0,9589.210754815,,,,,,1.3481463193893433,0.000678470903607559,0.003392354518037795,0.04203742742538452,137037.5103078039,135795.3530046367,685.1875515390195,244.32235232819568,2.0,23522153.0
|
| 64 |
+
66300.0,13578240000.0,9740.024788053,,,,,,1.3563979864120483,0.0006686592673025067,0.003343296336512533,0.04254491254687309,135681.00524121235,135893.5300667294,678.4050262060617,241.90385750827124,2.0,23813471.0
|
| 65 |
+
66400.0,13598720000.0,9892.435544341,,,,,,1.373846411705017,0.0006589251969898564,0.0032946259849492817,0.04352854564785957,135296.95374777776,135797.0983287433,676.4847687388889,241.21913721467914,2.0,24106699.0
|
| 66 |
+
66500.0,13619200000.0,10045.012632952,1.3704496622085571,1.3747870922088623,1.0,0.9921875,0.994535505771637,1.3699615001678467,0.0006492668816516717,0.0032463344082583586,0.044916070997714996,136133.07786395907,133060.38251473874,680.6653893197954,242.70985176754064,2.0,24401452.0
|
| 67 |
+
66600.0,13639680000.0,10196.087402275,,,,,,1.3572535514831543,0.0006396825796649481,0.0031984128983247404,0.045644789934158325,134036.0254130494,135565.2664478191,670.1801270652471,238.9710448772882,2.0,24697846.0
|
| 68 |
+
66700.0,13660160000.0,10347.127247034,,,,,,1.3488378524780273,0.0006301706151349834,0.0031508530756749168,0.0459810309112072,134178.98381842242,135562.7622397962,670.8949190921121,239.22592351458513,2.0,24993851.0
|
| 69 |
+
66800.0,13680640000.0,10498.057398549,,,,,,1.3608746528625488,0.0006207293744741368,0.003103646872370684,0.043004266917705536,135926.19281285178,135594.09899522096,679.6309640642589,242.340999164815,2.0,25289743.0
|
| 70 |
+
66900.0,13701120000.0,10650.552438565,,,,,,1.3601990938186646,0.0006113573032061991,0.003056786516030995,0.048480819910764694,134099.09220936103,135692.58662550763,670.4954610468052,239.08348582863098,2.0,25585560.0
|
| 71 |
+
67000.0,13721600000.0,10803.032791178,1.368754506111145,1.3730299472808838,1.0,0.9921875,0.994535505771637,1.3699471950531006,0.000602052902978451,0.0030102645148922546,0.04259324073791504,134779.08288019602,132974.47566000256,673.89541440098,240.29583214086668,2.0,25880477.0
|
| 72 |
+
67100.0,13742080000.0,10954.055832632,,,,,,1.3356000185012817,0.000592814728765148,0.0029640736438257403,0.04448634013533592,135218.85459470554,135665.74873795622,676.0942729735277,241.0798952746396,2.0,26173527.0
|
| 73 |
+
67200.0,13762560000.0,11104.623648468,,,,,,1.372572422027588,0.0005836413862476532,0.002918206931238266,0.04731246829032898,134681.32637814226,135609.11502454773,673.4066318907113,240.12154337508642,2.0,26465753.0
|
| 74 |
+
67300.0,13783040000.0,11255.448941127,,,,,,1.372288703918457,0.0005745315293577645,0.0028726576467888224,0.04464699700474739,135846.42045119384,136019.12146350797,679.2321022559692,242.19877408346852,2.0,26757726.0
|
| 75 |
+
67400.0,13803520000.0,11407.838460484,,,,,,1.3614164590835571,0.0005654838579719865,0.0028274192898599323,0.04574878141283989,135471.13231703453,135786.8629541049,677.3556615851726,241.52967786643487,2.0,27049889.0
|
| 76 |
+
67500.0,13824000000.0,11560.165587043,1.3672384023666382,1.370871663093567,1.0,0.9921875,0.994535505771637,1.3721098899841309,0.0005564971157455596,0.002782485578727798,0.04535432904958725,134845.66634281483,133066.21641755875,674.2283317140741,240.41454290974045,2.0,27343904.0
|
| 77 |
+
67600.0,13844480000.0,11711.178225842,,,,,,1.3576236963272095,0.0005475700880760339,0.0027378504403801694,0.046277981251478195,135081.34100467002,135803.10426095224,675.40670502335,240.83472412610433,2.0,27641378.0
|
| 78 |
+
67700.0,13864960000.0,11862.160052542,,,,,,1.351607084274292,0.000538701600187037,0.0026935080009351854,0.04303106293082237,136203.2737871553,135618.60418621477,681.0163689357765,242.83500314427414,2.0,27937278.0
|
| 79 |
+
67800.0,13885440000.0,12013.103280186,,,,,,1.355392575263977,0.000529890515323684,0.0026494525766184197,0.047632597386837006,135031.3552110946,135646.18790836507,675.156776055473,240.7456051203525,2.0,28233809.0
|
| 80 |
+
67900.0,13905920000.0,12165.382256895,,,,,,1.3313068151474,0.0005211357330517747,0.0026056786652588733,0.04325675219297409,134665.8918798671,135680.8682954279,673.3294593993354,240.0940254136383,2.0,28529751.0
|
| 81 |
+
68000.0,13926400000.0,12317.610993508,1.3651702404022217,1.3700299263000488,1.0,0.98828125,0.994535505771637,1.3561140298843384,0.0005124361876535793,0.0025621809382678964,0.042450420558452606,134676.89202876057,133160.23970154196,673.3844601438028,240.11363743262186,2.0,28825156.0
|
| 82 |
+
68100.0,13946880000.0,12468.272525804,,,,,,1.3709514141082764,0.0005037908466135884,0.002518954233067942,0.04665349796414375,135819.93636811245,135893.34238528047,679.0996818405623,242.15155596440636,2.0,29119395.0
|
| 83 |
+
68200.0,13967360000.0,12618.929716099,,,,,,1.3611055612564087,0.0004951987091881406,0.002475993545940703,0.04426443576812744,135705.1626017737,135934.56369809547,678.5258130088686,241.94692734473526,2.0,29409469.0
|
| 84 |
+
68300.0,13987840000.0,12769.677430308,,,,,,1.3684695959091187,0.0004866588050533114,0.002433294025266557,0.045407865196466446,134653.0571257796,135938.45630870486,673.265285628898,240.07114250148408,2.0,29701160.0
|
| 85 |
+
68400.0,14008320000.0,12921.843040075,,,,,,1.3750536441802979,0.00047817019302590216,0.002390850965129511,0.04467794671654701,135669.84045958152,135856.84894907093,678.3492022979076,241.88395196777253,2.0,29994118.0
|
| 86 |
+
68500.0,14028800000.0,13074.057355282,1.364001750946045,1.3681421279907227,1.0,0.9921875,0.994535505771637,1.369693636894226,0.0004697319598527461,0.0023486597992637306,0.04752126336097717,135151.7107913877,133263.1389407055,675.7585539569386,240.96018548179512,2.0,30288663.0
|
| 87 |
+
68600.0,14049280000.0,13225.014053642,,,,,,1.3496325016021729,0.00046134321906393075,0.0023067160953196535,0.04470781609416008,135391.12479988678,135901.53657142783,676.9556239994339,241.387033529497,2.0,30585774.0
|
| 88 |
+
68700.0,14069760000.0,13375.961043586,,,,,,1.3594911098480225,0.0004530031098858575,0.0022650155494292877,0.04432525485754013,135601.90563961412,135668.69344129093,678.0095281980706,241.76283188187674,2.0,30882227.0
|
| 89 |
+
68800.0,14090240000.0,13526.980213085,,,,,,1.3481882810592651,0.000444710796210366,0.00222355398105183,0.04720621556043625,136544.09807088267,135677.43702580157,682.7204903544133,243.4426542212953,2.0,31177328.0
|
| 90 |
+
68900.0,14110720000.0,13679.468241111,,,,,,1.3660168647766113,0.0004364654656164299,0.002182327328082149,0.04475117102265358,135254.00615497015,135612.6057837294,676.2700307748507,241.1425665233551,2.0,31472839.0
|
| 91 |
+
69000.0,14131200000.0,13831.837189057,1.3622674942016602,1.3669449090957642,1.0,0.9921875,0.994535505771637,1.3459641933441162,0.00042826632844118154,0.0021413316422059076,0.043879956007003784,135723.23801771147,132989.56459168333,678.6161900885573,241.97915376311738,2.0,31768544.0
|
| 92 |
+
69100.0,14151680000.0,13982.688712625,,,,,,1.3436717987060547,0.00042011261689726303,0.0021005630844863152,0.04583606496453285,135428.67193439338,135756.48812656573,677.1433596719669,241.45397581562895,2.0,32062030.0
|
| 93 |
+
69200.0,14172160000.0,14133.223386191,,,,,,1.349207878112793,0.00041200358423370756,0.0020600179211685376,0.04627220332622528,134886.9358102888,135763.2783740221,674.4346790514439,240.48812169375313,2.0,32354767.0
|
| 94 |
+
69300.0,14192640000.0,14283.885391698,,,,,,1.3578970432281494,0.00040393850393775584,0.002019692519688779,0.043997518718242645,134195.50187000277,136049.10843204425,670.9775093500139,239.25537332879242,2.0,32646765.0
|
| 95 |
+
69400.0,14213120000.0,14436.27231806,,,,,,1.3834260702133179,0.0003959166689751971,0.0019795833448759854,0.04437095671892166,135368.12439337993,135934.127016809,676.8406219668997,241.3460264110107,2.0,32939226.0
|
| 96 |
+
69500.0,14233600000.0,14588.661058331,1.3603839874267578,1.365101933479309,1.0,0.9921875,0.994535505771637,1.37490975856781,0.00038793739106697924,0.001939686955334896,0.04491763934493065,135805.3777441907,133077.73896634343,679.0268887209534,242.12559958767972,2.0,33233854.0
|
| 97 |
+
69600.0,14254080000.0,14739.466013389,,,,,,1.3330832719802856,0.0003799999999999999,0.0018999999999999996,0.04452868551015854,134600.13961541047,135737.7944783556,673.0006980770523,239.97679657689966,2.0,33529801.0
|
| 98 |
+
69700.0,14274560000.0,14890.304956377,,,,,,1.345335602760315,0.0003721038429701231,0.0018605192148506155,0.04468395933508873,135815.36230486273,135805.195888495,679.0768115243137,242.14340092794694,2.0,33826180.0
|
| 99 |
+
69800.0,14295040000.0,15041.206176507,,,,,,1.3483729362487793,0.0003642482839555954,0.0018212414197779768,0.047391243278980255,135114.97588674794,135774.56005004962,675.5748794337396,240.89469130947697,2.0,34120131.0
|
| 100 |
+
69900.0,14315520000.0,15193.560537339,,,,,,1.3568693399429321,0.00035643270311916755,0.0017821635155958375,0.04681705683469772,135839.52457385758,135718.62822206752,679.1976228692879,242.18647951559163,2.0,34414429.0
|
| 101 |
+
70000.0,14336000000.0,15347.595387622,1.358937382698059,1.3638306856155396,1.0,0.9921875,0.994535505771637,1.350145697593689,0.0003486564962373205,0.0017432824811866026,0.04501469060778618,135706.68478209354,133104.9539468848,678.5334239104677,241.94964121975806,2.0,34707501.0
|
| 102 |
+
70100.0,14356480000.0,15498.393899376,,,,,,1.3459059000015259,0.00034091907415511826,0.0017045953707755914,0.044511258602142334,134200.44969210215,134273.8158513038,671.0022484605107,239.26419473492788,2.0,34999989.0
|
| 103 |
+
70200.0,14376960000.0,15649.352210872,,,,,,1.350026249885559,0.00033321986226528895,0.0016660993113264445,0.04317836835980415,134730.84199104528,135811.04600312313,673.6542099552264,240.2098241019784,2.0,35290654.0
|
| 104 |
+
70300.0,14397440000.0,15800.134116767,,,,,,1.3578964471817017,0.0003255583000102332,0.001627791500051166,0.04432371258735657,135161.93974437992,135667.35681339787,675.8096987218996,240.97842254587556,2.0,35581611.0
|
| 105 |
+
70400.0,14417920000.0,15952.468587131,,,,,,1.3610154390335083,0.00031793384040573915,0.0015896692020286958,0.045038193464279175,135729.00686850888,135826.04182676057,678.6450343425444,241.98943897038572,2.0,35873056.0
|
| 106 |
+
70500.0,14438400000.0,16104.794961624,1.3572783470153809,1.361985445022583,1.0,0.9921875,0.994535505771637,1.3391468524932861,0.0003103459495852564,0.001551729747926282,0.04439925402402878,135830.24524582614,133123.40390661647,679.1512262291308,242.16993552520847,2.0,36167154.0
|
| 107 |
+
70600.0,14458880000.0,16255.634695562,,,,,,1.3439579010009766,0.00030279410636365785,0.0015139705318182892,0.04736249893903732,135823.47986832453,135793.64786845815,679.1173993416227,242.15787362374903,2.0,36462200.0
|
| 108 |
+
70700.0,14479360000.0,16406.384123952,,,,,,1.3303660154342651,0.00029527780181947576,0.0014763890090973787,0.044214580208063126,135626.14190897063,135773.97631739563,678.1307095448532,241.80604240378088,2.0,36755183.0
|
| 109 |
+
70800.0,14499840000.0,16557.10553306,,,,,,1.3427379131317139,0.00028779653889467166,0.0014389826944733583,0.044327568262815475,136990.58875462966,135855.26688903186,684.9529437731483,244.2386965158515,2.0,37048386.0
|
| 110 |
+
70900.0,14520320000.0,16709.25160611,,,,,,1.3425060510635376,0.00028034983201104,0.0014017491600551999,0.04517735168337822,135634.2154519338,135880.52924644784,678.171077259669,241.82043661602214,2.0,37341107.0
|
| 111 |
+
71000.0,14540800000.0,16861.469025519,1.3564884662628174,1.3614223003387451,1.0,0.9921875,0.994535505771637,1.3425252437591553,0.0002729372067024171,0.0013646860335120856,0.045110445469617844,135094.42750902064,133279.56915597388,675.4721375451032,240.85805588045042,2.0,37634498.0
|
| 112 |
+
71100.0,14561280000.0,17012.030111524,,,,,,1.3239836692810059,0.000265558199261901,0.0013277909963095049,0.0458066463470459,135556.56084547538,135899.02508477005,677.7828042273769,241.68198725222075,2.0,37928769.0
|
| 113 |
+
71200.0,14581760000.0,17162.611987463,,,,,,1.330338716506958,0.00025821235640334213,0.0012910617820167108,0.044098176062107086,135599.65801474274,136025.14058911032,677.9982900737137,241.7588246214231,2.0,38217339.0
|
| 114 |
+
71300.0,14602240000.0,17313.224741098,,,,,,1.3419857025146484,0.00025089923493640536,0.0012544961746820268,0.04408559575676918,138203.93992024654,136006.45406996593,691.0196996012328,246.40196415197403,2.0,38507065.0
|
| 115 |
+
71400.0,14622720000.0,17465.458610584,,,,,,1.3643288612365723,0.00024361840145454414,0.0012180920072727207,0.0431266613304615,135651.77926271196,135978.57383069317,678.2588963135598,241.85175090037777,2.0,38798259.0
|
| 116 |
+
71500.0,14643200000.0,17617.624193705,1.3547494411468506,1.3596876859664917,1.0,0.9921875,0.994535505771637,1.3450393676757812,0.00023636943203526504,0.0011818471601763253,0.046072084456682205,134204.4124059566,133194.76101786073,671.022062029783,239.27125980469125,2.0,39091569.0
|
| 117 |
+
71600.0,14663680000.0,17768.427222112,,,,,,1.3285373449325562,0.00022915191195209696,0.0011457595597604848,0.044744785875082016,135916.2994788939,135955.07409978317,679.5814973944695,242.3233604714417,2.0,39386715.0
|
| 118 |
+
71700.0,14684160000.0,17919.198571489,,,,,,1.3324823379516602,0.0002219654353977091,0.0011098271769885454,0.046221327036619186,134853.0544527907,135806.92772413,674.2652722639535,240.42771507263595,2.0,39681719.0
|
| 119 |
+
71800.0,14704640000.0,18070.081553614,,,,,,1.3169687986373901,0.00021480960521765772,0.0010740480260882886,0.04653039947152138,135590.36862235033,135835.43055847863,677.9518431117516,241.74226268742473,2.0,39976469.0
|
| 120 |
+
71900.0,14725120000.0,18222.183873861,,,,,,1.331916332244873,0.0002076840326542643,0.0010384201632713213,0.04622125253081322,135006.9490916195,135734.93599958176,675.0347454580975,240.7020917749337,2.0,40270914.0
|
| 121 |
+
72000.0,14745600000.0,18374.430332546,1.353356957435608,1.3583112955093384,1.0,0.9921875,0.994535505771637,1.3250428438186646,0.00020058833710015988,0.0010029416855007994,0.04614982753992081,135134.9139991083,133317.8597352862,675.6745699955416,240.93023870450722,2.0,40564247.0
|
| 122 |
+
72100.0,14766080000.0,18525.099923023,,,,,,1.3452563285827637,0.00019352214586105263,0.0009676107293052631,0.04595346748828888,134924.4369021616,135872.50544425423,674.622184510808,240.55498189108638,2.0,40856665.0
|
| 123 |
+
72200.0,14786560000.0,18675.662284967,,,,,,1.334555745124817,0.0001864850939273002,0.000932425469636501,0.044678945094347,135295.22764894797,135927.15318814857,676.4761382447398,241.2160597760603,2.0,41147994.0
|
| 124 |
+
72300.0,14807040000.0,18826.363449291,,,,,,1.3403743505477905,0.00017947682375389092,0.0008973841187694545,0.045135755091905594,135920.7728080433,136024.04183547382,679.6038640402164,242.33133591041505,2.0,41438000.0
|
| 125 |
+
72400.0,14827520000.0,18978.450814572,,,,,,1.3531042337417603,0.0001724969850484583,0.0008624849252422915,0.04354209452867508,137310.60650189055,135898.7135473526,686.5530325094528,244.80925189606774,2.0,41729131.0
|
| 126 |
+
72500.0,14848000000.0,19130.666334193,1.3516223430633545,1.35701584815979,1.0,0.9921875,0.994535505771637,1.3466604948043823,0.00016554523456697388,0.0008277261728348694,0.04579011723399162,135876.18172051242,133337.90822957124,679.3809086025622,242.25183505423382,2.0,42022176.0
|
| 127 |
+
72600.0,14868480000.0,19281.464593432,,,,,,1.341458797454834,0.00015862123591678083,0.0007931061795839041,0.0445244237780571,135714.76791729016,135893.1875968467,678.5738395864507,241.96405253386456,2.0,42317313.0
|
| 128 |
+
72700.0,14888960000.0,19432.438298964,,,,,,1.3336657285690308,0.00015172465936664684,0.0007586232968332341,0.046958062797784805,134137.35038457424,135811.30324280984,670.6867519228712,239.15169581977048,2.0,42612821.0
|
| 129 |
+
72800.0,14909440000.0,19583.529264737,,,,,,1.3477555513381958,0.00014485518166353753,0.0007242759083176876,0.04452737048268318,134803.21628171607,135653.3872212279,674.0160814085804,240.33885926107502,2.0,42908096.0
|
| 130 |
+
72900.0,14929920000.0,19735.87646518,,,,,,1.3437259197235107,0.00013801248585581635,0.0006900624292790816,0.045240938663482666,137108.94868558765,135548.17720058732,685.5447434279382,244.44971886066864,2.0,43202969.0
|
| 131 |
+
73000.0,14950400000.0,19887.991257055,1.3507535457611084,1.3560987710952759,1.0,0.9921875,0.994535505771637,1.3425335884094238,0.00013119626112260076,0.0006559813056130039,0.04563578963279724,135234.33095257173,133106.6229605857,676.1716547628587,241.10748786699514,2.0,43497291.0
|
| 132 |
+
73100.0,14970880000.0,20038.715642041,,,,,,1.326058030128479,0.00012440620260901645,0.0006220310130450823,0.04816606268286705,134100.70418236585,135990.4381561058,670.5035209118292,239.08635979383615,2.0,43790214.0
|
| 133 |
+
73200.0,14991360000.0,20189.264716161,,,,,,1.3339686393737793,0.00011764201126709671,0.0005882100563354835,0.045931193977594376,135733.33919040055,135877.74879239552,678.6666959520028,241.99716300939696,2.0,44081965.0
|
| 134 |
+
73300.0,15011840000.0,20339.97324429,,,,,,1.3582844734191895,0.0001109033937020989,0.0005545169685104945,0.047173455357551575,134734.11755774592,136036.00371809024,673.6705877887297,240.21566406623134,2.0,44372842.0
|
| 135 |
+
73400.0,15032320000.0,20492.077942759,,,,,,1.3627640008926392,0.00010419006202400876,0.0005209503101200437,0.043593648821115494,135110.6191935612,135892.14794367124,675.553095967806,240.88692381920836,2.0,44663775.0
|
| 136 |
+
73500.0,15052800000.0,20644.194383864,1.3496911525726318,1.3545376062393188,1.0,0.9921875,0.994535505771637,1.3427255153656006,9.750173370402385e-05,0.0004875086685201192,0.04621069133281708,134875.3930611342,133313.19960708095,674.376965305671,240.46754227998932,2.0,44955803.0
|
| 137 |
+
73600.0,15073280000.0,20795.177253366,,,,,,1.3586225509643555,9.083813143581147e-05,0.0004541906571790573,0.04392993450164795,135126.72973362842,135992.53426648502,675.6336486681421,240.9156470865653,2.0,45249268.0
|
| 138 |
+
73700.0,15093760000.0,20946.122579463,,,,,,1.3393968343734741,8.419898300134956e-05,0.0004209949150067478,0.04524848237633705,135128.7066212312,135645.2278577992,675.6435331061559,240.9191716531479,2.0,45545691.0
|
| 139 |
+
73800.0,15114240000.0,21096.895838821,,,,,,1.340729832649231,7.758402114116653e-05,0.00038792010570583264,0.045114628970623016,135943.20841392002,135678.90650776005,679.7160420696,242.37133605337877,2.0,45841323.0
|
| 140 |
+
73900.0,15134720000.0,21249.29046797,,,,,,1.320361614227295,7.099298342880416e-05,0.00035496491714402076,0.04453073441982269,134675.81515940707,135833.733866684,673.3790757970353,240.11171749659115,2.0,46135805.0
|
| 141 |
+
74000.0,15155200000.0,21401.581414002,1.3489086627960205,1.3538073301315308,1.0,0.9921875,0.994535505771637,1.3385249376296997,6.442561214933782e-05,0.00032212806074668907,0.045406147837638855,135165.08742604218,133064.96974191855,675.825437130211,240.9840345055965,2.0,46431150.0
|
| 142 |
+
74100.0,15175680000.0,21552.444811279,,,,,,1.3418372869491577,5.788165418179506e-05,0.0002894082709089753,0.04481586441397667,134159.80869508992,135832.18671145622,670.7990434754496,239.19173644253272,2.0,46726080.0
|
| 143 |
+
74200.0,15196160000.0,21703.163749351,,,,,,1.340185284614563,5.1360860885319516e-05,0.00025680430442659755,0.04558199271559715,135666.51923810114,135752.64326000187,678.3325961905057,241.87803060622076,2.0,47019722.0
|
| 144 |
+
74300.0,15216640000.0,21853.867923264,,,,,,1.332966923713684,4.4862987988937466e-05,0.0002243149399446873,0.04483726993203163,135468.69674651863,135882.76512699865,677.3434837325932,241.52533552019432,2.0,47311086.0
|
| 145 |
+
74400.0,15237120000.0,22006.127439519,,,,,,1.3529691696166992,3.838779548478472e-05,0.00019193897742392362,0.04480978101491928,135738.89440381728,135895.96975774955,678.6944720190864,242.0070673254241,2.0,47602466.0
|
| 146 |
+
74500.0,15257600000.0,22158.323944708,1.3478577136993408,1.3528459072113037,1.0,0.9921875,0.994535505771637,1.359941005706787,3.193504752466747e-05,0.00015967523762333734,0.04661470279097557,135153.64587996158,133181.62469488673,675.7682293998079,240.96363552544568,2.0,47894876.0
|
| 147 |
+
74600.0,15278080000.0,22309.037515549,,,,,,1.344080924987793,2.550451231982599e-05,0.00012752256159912994,0.04462568834424019,135862.8573742302,135917.71542776993,679.314286871151,242.22807925467504,2.0,48189176.0
|
| 148 |
+
74700.0,15298560000.0,22459.853121359,,,,,,1.331152081489563,1.90959620437835e-05,9.54798102189175e-05,0.04371168836951256,135850.20166554564,135887.67219913044,679.2510083277282,242.2055155601855,2.0,48486101.0
|
| 149 |
+
74800.0,15319040000.0,22610.851921576,,,,,,1.3171507120132446,1.2709172738163532e-05,6.354586369081767e-05,0.04547892138361931,135842.3601769791,135795.68102768727,679.2118008848955,242.19153507463795,2.0,48781753.0
|
| 150 |
+
74900.0,15339520000.0,22763.239962846,,,,,,1.3290060758590698,6.343924221366659e-06,3.1719621106833295e-05,0.043879855424165726,134128.3440332341,135630.82808744218,670.6417201661706,239.1356385158953,2.0,49076904.0
|
| 151 |
+
75000.0,15360000000.0,22767.281723399,1.3479899168014526,1.3526790142059326,,,,,,,,,,,,,
|
training-curves/350m/anneal-T150000.csv
ADDED
|
@@ -0,0 +1,301 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step,tokens,wall_clock_s,train_loss,val_loss,valid_prob_mass,game_end_accuracy,game_end_top1_accuracy,batch_train_loss,lr,muon_lr,unclipped_grad_norm,tokens_per_second,avg_tokens_per_second,samples_per_second,t_flops,shard_idx,shard_sample_idx
|
| 2 |
+
120100.0,24596480000.0,416.56988212,,,,,,1.3852627277374268,0.0017903034488539712,0.008951517244269855,0.054987583309412,135745.58700220578,86860.00559520215,678.7279350110289,242.01899946997187,3.0,89078025.0
|
| 3 |
+
120200.0,24616960000.0,568.008977214,,,,,,1.3836716413497925,0.0017448656496237322,0.008724328248118661,0.05062699317932129,134773.92313403377,135944.06941760285,673.8696156701689,240.28663289814153,3.0,89389979.0
|
| 4 |
+
120300.0,24637440000.0,719.29852012,,,,,,1.3843913078308105,0.00171,0.00855,0.04947148263454437,134939.65515507967,135236.5126162387,674.6982757753984,240.5821143115669,3.0,89706899.0
|
| 5 |
+
120400.0,24657920000.0,890.425886402,,,,,,1.3800004720687866,0.0016806068977079421,0.00840303448853971,0.05120544880628586,135158.51574364814,135370.2596029419,675.7925787182406,240.97231794056503,3.0,90022985.0
|
| 6 |
+
120500.0,24678400000.0,1042.682985965,1.3933099508285522,1.397491216659546,0.99609375,0.98828125,0.9890710115432739,1.3753846883773804,0.001654711054740197,0.008273555273700986,0.052620790898799896,142576.1666603594,118680.67046423847,712.880833301797,254.1971489860915,3.0,90337095.0
|
| 7 |
+
120600.0,24698880000.0,1193.855992657,,,,,,1.3887563943862915,0.001631299423149112,0.00815649711574556,0.049908462911844254,134076.4030913665,135791.93161260113,670.3820154568325,239.04303370228817,3.0,90649280.0
|
| 8 |
+
120700.0,24719360000.0,1354.358763833,,,,,,1.37481689453125,0.00160977020598613,0.00804885102993065,0.04718201234936714,135596.63989283523,135474.54803174146,677.9831994641761,241.75344365206362,3.0,90961180.0
|
| 9 |
+
120800.0,24739840000.0,1504.984098309,,,,,,1.391449213027954,0.001589731299247464,0.00794865649623732,0.04927299916744232,135686.491872491,127599.60520708334,678.432459362455,241.91363955011767,4.0,79484.0
|
| 10 |
+
120900.0,24760320000.0,1657.252457479,,,,,,1.389153003692627,0.0015709103465619135,0.007854551732809566,0.05166938528418541,135157.72888600704,135967.20399214907,675.7886444300352,240.97091506255458,4.0,373660.0
|
| 11 |
+
121000.0,24780800000.0,1809.528769203,1.3902698755264282,1.3940662145614624,0.99609375,0.984375,0.994535505771637,1.3831253051757812,0.0015531090469133948,0.007765545234566974,0.05360807105898857,135730.5939246271,133179.6816535162,678.6529696231354,241.99226851160554,4.0,669173.0
|
| 12 |
+
121100.0,24801280000.0,1960.32145459,,,,,,1.3678447008132935,0.0015361776990525915,0.007680888495262958,0.05260413512587547,135275.98782538334,135839.73143999116,676.3799391269167,241.18175735082556,4.0,963280.0
|
| 13 |
+
121200.0,24821760000.0,2111.20402643,,,,,,1.3781859874725342,0.00152,0.0076,0.05037140101194382,134869.73889396552,135816.25561882768,674.3486944698276,240.4574615406355,4.0,1256590.0
|
| 14 |
+
121300.0,24842240000.0,2261.907551327,,,,,,1.3595257997512817,0.0015044834601014349,0.007522417300507174,0.04673178121447563,134769.92671692153,135735.36153572923,673.8496335846077,240.27950773928865,4.0,1551123.0
|
| 15 |
+
121400.0,24862720000.0,2414.118861101,,,,,,1.3851219415664673,0.0014895530891008354,0.007447765445504177,0.05047886073589325,135549.43768647066,135896.5414251954,677.7471884323533,241.66928746688362,4.0,1845064.0
|
| 16 |
+
121500.0,24883200000.0,2566.487211421,1.3880407810211182,1.3920477628707886,0.99609375,0.98828125,0.994535505771637,1.3641119003295898,0.00147514708427504,0.0073757354213752,0.04613075405359268,135929.80638954078,133230.98848958008,679.6490319477039,242.34744176257522,4.0,2137768.0
|
| 17 |
+
121600.0,24903680000.0,2717.558708246,,,,,,1.3730251789093018,0.0014612137954158843,0.0073060689770794215,0.050146687775850296,134716.70604951621,135754.90046484745,673.583530247581,240.18462132006124,4.0,2428189.0
|
| 18 |
+
121700.0,24924160000.0,2868.318662943,,,,,,1.3822280168533325,0.0014477095328589529,0.007238547664294765,0.046255629509687424,135842.18831887448,135565.69370211754,679.2109415943725,242.1912286711117,4.0,2718177.0
|
| 19 |
+
121800.0,24944640000.0,3019.114354166,,,,,,1.3765368461608887,0.0014345969488711962,0.007172984744355982,0.0462271012365818,135731.32312501708,135845.84340483477,678.6566156250855,241.99356859327082,4.0,3008426.0
|
| 20 |
+
121900.0,24965120000.0,3171.502323961,,,,,,1.3929167985916138,0.0014218438190995192,0.007109219095497596,0.05022628605365753,135600.9851747056,135813.5480117805,678.004925873528,241.7611907972483,4.0,3300856.0
|
| 21 |
+
122000.0,24985600000.0,3323.855168275,1.3857887983322144,1.3900105953216553,0.99609375,0.9921875,0.994535505771637,1.3894636631011963,0.001409422109480394,0.00704711054740197,0.04615306854248047,134894.54027857585,133068.0359710395,674.4727013928792,240.50167959900057,4.0,3595419.0
|
| 22 |
+
122100.0,25006080000.0,3474.64233274,,,,,,1.3866643905639648,0.001397307250897728,0.006986536254488639,0.049886658787727356,134608.32349619496,135779.27623600262,673.0416174809749,239.9913875089733,4.0,3890724.0
|
| 23 |
+
122200.0,25026560000.0,3625.503936146,,,,,,1.3675552606582642,0.001385477567706389,0.006927387838531945,0.051905520260334015,135636.18579930428,135821.29597654458,678.1809289965214,241.8239495221117,4.0,4186245.0
|
| 24 |
+
122300.0,25047040000.0,3776.186742526,,,,,,1.3864983320236206,0.0013739138220151884,0.006869569110075942,0.05516001582145691,134940.24869410146,135754.1600693567,674.7012434705074,240.58317252438525,4.0,4481544.0
|
| 25 |
+
122400.0,25067520000.0,3928.314392634,,,,,,1.3806931972503662,0.0013625988462982238,0.006812994231491119,0.058093633502721786,135688.24940290395,135915.30850427705,678.4412470145198,241.91677302768755,4.0,4776137.0
|
| 26 |
+
122500.0,25088000000.0,4080.520918934,1.3850624561309814,1.3884212970733643,0.99609375,0.9921875,0.994535505771637,1.3617374897003174,0.0013515172442698556,0.006757586221349278,0.05312250554561615,135415.75541994258,133298.54869580173,677.078777099713,241.43094713401172,4.0,5070843.0
|
| 27 |
+
122600.0,25108480000.0,4231.269768108,,,,,,1.3605992794036865,0.0013406551451325696,0.006703275725662847,0.05164641886949539,135606.87208448927,135905.99323207999,678.0343604224463,241.77168649031117,4.0,5365009.0
|
| 28 |
+
122700.0,25128960000.0,4381.9837306,,,,,,1.364542007446289,0.00133,0.00665,0.04677252843976021,135085.07974719556,135855.74431790924,675.4253987359778,240.8413898803678,4.0,5657534.0
|
| 29 |
+
122800.0,25149440000.0,4532.840809859,,,,,,1.3893558979034424,0.0013195404119722602,0.006597702059861301,0.05332372337579727,134925.05150045184,135887.22700550486,674.6252575022592,240.55607765019403,4.0,5948944.0
|
| 30 |
+
122900.0,25169920000.0,4685.240560095,,,,,,1.3873627185821533,0.001309265993304375,0.006546329966521875,0.048843853175640106,134660.40303428724,135758.30025179437,673.3020151714362,240.0842394239438,4.0,6242180.0
|
| 31 |
+
123000.0,25190400000.0,4837.713964525,1.3823597431182861,1.3861945867538452,0.99609375,0.9921875,0.994535505771637,1.3828598260879517,0.0012991672445680077,0.006495836222840039,0.046369995921850204,135361.2129969815,133062.37236990692,676.8060649849076,241.33370417440455,4.0,6536896.0
|
| 32 |
+
123100.0,25210880000.0,4988.514549422,,,,,,1.3721485137939453,0.0012892354518037794,0.006446177259018897,0.04591246694326401,135355.8806117376,135665.99257159387,676.779403058688,241.3241971357595,4.0,6831743.0
|
| 33 |
+
123200.0,25231360000.0,5139.262894757,,,,,,1.3661727905273438,0.0012794625984949282,0.00639731299247464,0.048181165009737015,135238.01429408998,135809.2198011426,676.1900714704499,241.11405484754042,4.0,7126180.0
|
| 34 |
+
123300.0,25251840000.0,5289.916023549,,,,,,1.3666245937347412,0.0012698412898324738,0.006349206449162369,0.0474386103451252,134995.64037767638,135856.1725456751,674.9782018883818,240.68192961943197,4.0,7420499.0
|
| 35 |
+
123400.0,25272320000.0,5442.241893571,,,,,,1.3726307153701782,0.0012603646872370686,0.006301823436185342,0.04825389385223389,134318.65587751797,135942.10818670594,671.5932793875899,239.4749429688652,4.0,7714760.0
|
| 36 |
+
123500.0,25292800000.0,5594.479136163,1.3809150457382202,1.3848683834075928,0.99609375,0.9921875,0.994535505771637,1.376834511756897,0.0012510264514892255,0.006255132257446127,0.049049001187086105,134985.03355008626,133122.72989728957,674.9251677504313,240.66301884776274,4.0,8008264.0
|
| 37 |
+
123600.0,25313280000.0,5745.180964872,,,,,,1.3835622072219849,0.0012418206931238266,0.006209103465619133,0.051322463899850845,133797.41596126545,135882.40702005054,668.9870798063272,238.5456312630401,4.0,8301672.0
|
| 38 |
+
123700.0,25333760000.0,5895.742626984,,,,,,1.3822003602981567,0.0012327419289859933,0.006163709644929966,0.0490649975836277,135819.48539043972,135898.27946136592,679.0974269521986,242.15075192231888,4.0,8593008.0
|
| 39 |
+
123800.0,25354240000.0,6046.441683241,,,,,,1.3594838380813599,0.001223785044038017,0.006118925220190085,0.04803692176938057,135571.7080681721,136024.64538310785,677.8585403408605,241.7089930338654,4.0,8883029.0
|
| 40 |
+
123900.0,25374720000.0,6198.609109135,,,,,,1.3755061626434326,0.001214945257661842,0.00607472628830921,0.04998552426695824,135238.99371346433,135900.6945970614,676.1949685673217,241.11580104130095,4.0,9174460.0
|
| 41 |
+
124000.0,25395200000.0,6350.918442183,1.3796314001083374,1.383453130722046,0.99609375,0.9921875,0.994535505771637,1.3851786851882935,0.0012062180938267897,0.006031090469133948,0.04871462285518646,135815.2119887641,133267.91197402767,679.0760599438205,242.1431329313763,4.0,9467997.0
|
| 42 |
+
124100.0,25415680000.0,6501.679869051,,,,,,1.3592509031295776,0.0011975993545940704,0.0059879967729703516,0.048808831721544266,135584.76135637565,135809.2921611802,677.9238067818783,241.7322655675852,4.0,9761945.0
|
| 43 |
+
124200.0,25436160000.0,6652.60643178,,,,,,1.3704006671905518,0.001189085096512951,0.0059454254825647545,0.04656083509325981,135808.29780788877,135844.31337489266,679.0414890394438,242.1308057303633,4.0,10055728.0
|
| 44 |
+
124300.0,25456640000.0,6803.222142144,,,,,,1.3656156063079834,0.0011806716095319652,0.005903358047659826,0.04918498173356056,135225.17669531394,135695.83495492276,676.1258834765697,241.09116686362884,4.0,10348995.0
|
| 45 |
+
124400.0,25477120000.0,6955.389471403,,,,,,1.3693127632141113,0.001172355398105183,0.005861776990525915,0.045403432101011276,135706.14879921262,135975.88794509947,678.530743996063,241.94868562301681,4.0,10642999.0
|
| 46 |
+
124500.0,25497600000.0,7107.591133755,1.3782193660736084,1.38218092918396,1.0,0.9921875,0.994535505771637,1.3654701709747314,0.0011641331642205908,0.005820665821102954,0.045719921588897705,134522.2316828734,133255.37165607157,672.611158414367,239.83789556140593,4.0,10936878.0
|
| 47 |
+
124600.0,25518080000.0,7258.387491204,,,,,,1.3588593006134033,0.0011560017921168537,0.005780008960584269,0.05066792666912079,134234.12973272672,135919.3632474604,671.1706486636336,239.32424243087203,4.0,11230347.0
|
| 48 |
+
124700.0,25538560000.0,7409.03561076,,,,,,1.3602546453475952,0.0011479583344875986,0.005739791672437993,0.04667201265692711,135878.13761064305,135813.05090951925,679.3906880532153,242.25532218470298,4.0,11524175.0
|
| 49 |
+
124800.0,25559040000.0,7559.715647879,,,,,,1.3527207374572754,0.00114,0.005699999999999999,0.04595169425010681,135751.5079278536,135946.5677239063,678.7575396392681,242.02955580946602,4.0,11812889.0
|
| 50 |
+
124900.0,25579520000.0,7711.655240345,,,,,,1.378739595413208,0.0011321241419777978,0.005660620709888989,0.04944503307342529,135949.94269167742,135917.88726196927,679.7497134583871,242.38334250751842,4.0,12102380.0
|
| 51 |
+
125000.0,25600000000.0,7865.737627676,1.3765923976898193,1.38032865524292,1.0,0.98828125,0.994535505771637,1.3698394298553467,0.0011243282481186603,0.0056216412405933015,0.04731086269021034,134564.84221564658,133453.68500970255,672.8242110782329,239.91386531288288,4.0,12393993.0
|
| 52 |
+
125100.0,25620480000.0,8016.452354493,,,,,,1.3761340379714966,0.0011166099311326445,0.005583049655663223,0.05073792114853859,135777.98679070873,134243.39156087104,678.8899339535436,242.0767646214563,4.0,12688322.0
|
| 53 |
+
125200.0,25640960000.0,8167.300190847,,,,,,1.3580715656280518,0.0011089669202028697,0.005544834601014348,0.0507161021232605,135633.2517159158,135886.5827589578,678.166258579579,241.8187183839088,4.0,12985258.0
|
| 54 |
+
125300.0,25661440000.0,8318.134095211,,,,,,1.3754864931106567,0.0011013970531818288,0.0055069852659091435,0.0482688844203949,135215.12972802034,135766.54382224474,676.0756486401017,241.0732542594271,4.0,13280913.0
|
| 55 |
+
125400.0,25681920000.0,8470.47061886,,,,,,1.359293818473816,0.0010938982694473358,0.005469491347236679,0.047555167227983475,134826.06742955677,135779.06526150333,674.1303371477838,240.37960026827295,4.0,13576160.0
|
| 56 |
+
125500.0,25702400000.0,8622.702464356,1.3763220310211182,1.3802753686904907,1.0,0.9921875,0.994535505771637,1.3676197528839111,0.0010864686033512086,0.005432343016756043,0.04970301687717438,134958.22692133902,133113.07727286767,674.7911346066951,240.61522566632792,4.0,13871054.0
|
| 57 |
+
125600.0,25722880000.0,8773.436103431,,,,,,1.3661220073699951,0.001079106178201671,0.005395530891008355,0.04889266937971115,135166.1295961948,135887.54493923523,675.830647980974,240.985892576884,4.0,14164892.0
|
| 58 |
+
125700.0,25743360000.0,8924.146549014,,,,,,1.3595255613327026,0.001071809200727272,0.00535904600363636,0.04774349927902222,134937.704992199,135869.47366004836,674.688524960995,240.5786373921354,4.0,14457250.0
|
| 59 |
+
125800.0,25763840000.0,9074.819350763,,,,,,1.370922565460205,0.0010645759559760484,0.005322879779880242,0.04898562282323837,135070.2322124987,135890.37523840577,675.3511610624935,240.81491840846743,4.0,14749020.0
|
| 60 |
+
125900.0,25784320000.0,9226.946818221,,,,,,1.3762450218200684,0.0010574048026088289,0.005287024013044144,0.047686412930488586,134996.99817194758,135924.2447875547,674.9849908597379,240.68435041275765,4.0,15039855.0
|
| 61 |
+
126000.0,25804800000.0,9378.991692318,1.3743146657943726,1.3791143894195557,1.0,0.98828125,1.0,1.3615106344223022,0.00105029416855008,0.0052514708427504,0.045064590871334076,134569.26918930875,133290.461249831,672.8463459465438,239.92175810527533,4.0,15331489.0
|
| 62 |
+
126100.0,25825280000.0,9529.710826257,,,,,,1.3726824522018433,0.00104324254696365,0.00521621273481825,0.046226341277360916,135615.00756465958,136060.26180541117,678.0750378232979,241.78619112957426,4.0,15625036.0
|
| 63 |
+
126200.0,25845760000.0,9680.52261811,,,,,,1.3674088716506958,0.0010362484925242293,0.005181242462621146,0.04577241465449333,134114.48080516764,135882.48719629212,670.5724040258382,239.11092195117914,4.0,15921762.0
|
| 64 |
+
126300.0,25866240000.0,9831.351424073,,,,,,1.3545606136322021,0.0010293106179583905,0.005146553089791952,0.04780500382184982,134887.14762230933,135798.9858195248,674.4357381115467,240.48849933058406,4.0,16218576.0
|
| 65 |
+
126400.0,25886720000.0,9983.580820339,,,,,,1.3749688863754272,0.0010224275908317687,0.005112137954158844,0.049089375883340836,135231.92517886485,135783.8583861389,676.1596258943243,241.10319864508858,4.0,16514195.0
|
| 66 |
+
126500.0,25907200000.0,10135.617803424,1.3742924928665161,1.378990650177002,1.0,0.9921875,0.994535505771637,1.369544506072998,0.0010155981305613002,0.005077990652806502,0.05023440718650818,135896.4096338157,133214.90430926095,679.4820481690786,242.28789913150615,4.0,16810191.0
|
| 67 |
+
126600.0,25927680000.0,10286.389611319,,,,,,1.365450382232666,0.0010088210056335483,0.005044105028167742,0.04960690811276436,135891.87341425315,136053.89219650545,679.4593670712658,242.27981156605264,4.0,17105965.0
|
| 68 |
+
126700.0,25948160000.0,10437.077167633,,,,,,1.37100088596344,0.0010020950310120043,0.005010475155060022,0.046012651175260544,135642.39705153185,135835.0881665701,678.2119852576593,241.83502348099884,4.0,17400251.0
|
| 69 |
+
126800.0,25968640000.0,10587.810545044,,,,,,1.3693846464157104,0.000995419065717906,0.004977095328589529,0.045434340834617615,134090.21658466652,135910.96627895092,670.4510829233326,239.06766159555147,4.0,17693281.0
|
| 70 |
+
126900.0,25989120000.0,10739.896700099,,,,,,1.3583489656448364,0.0009887920105705833,0.004943960052852916,0.04850555583834648,134823.40106311964,135869.7345596703,674.1170053155982,240.3748464390577,4.0,17986668.0
|
| 71 |
+
127000.0,26009600000.0,10891.979523067,1.372039794921875,1.3768036365509033,1.0,0.9921875,0.994535505771637,1.3598222732543945,0.000982212806074669,0.004911064030373344,0.04912272095680237,132189.8937209784,133302.53052044808,660.949468604892,235.6796012666935,4.0,18279941.0
|
| 72 |
+
127100.0,26030080000.0,11042.662174132,,,,,,1.3880330324172974,0.0009756804304426599,0.004878402152213299,0.04680567979812622,135304.73239386926,136050.6239008394,676.5236619693462,241.2330056592147,4.0,18573684.0
|
| 73 |
+
127200.0,26050560000.0,11193.503805508,,,,,,1.369417667388916,0.0009691938977423924,0.004845969488711962,0.04962512105703354,135232.03162721897,135915.50592384886,676.1601581360949,241.10338843044164,4.0,18871050.0
|
| 74 |
+
127300.0,26071040000.0,11344.228657911,,,,,,1.3592029809951782,0.0009627522561599129,0.004813761280799565,0.045989565551280975,134956.63667275783,135772.18802356263,674.7831833637891,240.61239043330838,4.0,19168285.0
|
| 75 |
+
127400.0,26091520000.0,11496.374975958,,,,,,1.3582171201705933,0.0009563545863690816,0.004781772931845408,0.04924457147717476,135882.32899339692,135877.42703569419,679.4116449669846,242.26279494520213,4.0,19464250.0
|
| 76 |
+
127500.0,26112000000.0,11648.559353113,1.3721237182617188,1.375954031944275,1.0,0.9921875,0.994535505771637,1.358361005783081,0.00095,0.00475,0.05064438655972481,135495.68519459394,133283.0653019703,677.4784259729697,241.573452864888,4.0,19760617.0
|
| 77 |
+
127600.0,26132480000.0,11799.309343824,,,,,,1.3721688985824585,0.0009436876381990383,0.004718438190995192,0.05134537070989609,138475.57051482837,135925.05177988764,692.3778525741418,246.88625072200486,4.0,20056307.0
|
| 78 |
+
127700.0,26152960000.0,11949.969755124,,,,,,1.3710578680038452,0.000937416670273858,0.0046870833513692894,0.04782151058316231,135752.90242389523,135854.7757123296,678.7645121194761,242.0320420378894,4.0,20351978.0
|
| 79 |
+
127800.0,26173440000.0,12100.589817355,,,,,,1.3554099798202515,0.0009311862924173708,0.004655931462086854,0.046660132706165314,126717.21712120484,135935.49493568775,633.5860856060242,225.92243903144234,4.0,20645499.0
|
| 80 |
+
127900.0,26193920000.0,12252.830242185,,,,,,1.3694583177566528,0.0009249957265050922,0.004624978632525461,0.04960733652114868,135373.22306714248,135971.97317383293,676.8661153357124,241.3551167685677,4.0,20938491.0
|
| 81 |
+
128000.0,26214400000.0,12405.134012495,1.3712208271026611,1.3748925924301147,1.0,0.99609375,0.994535505771637,1.3592227697372437,0.0009188442189607878,0.004594221094803939,0.050355423241853714,134349.57951702288,133190.34161596518,671.7478975851144,239.5300763139575,4.0,21230193.0
|
| 82 |
+
128100.0,26234880000.0,12555.8478718,,,,,,1.3810867071151733,0.0009127310396857398,0.004563655198428699,0.04934205859899521,134047.52952735324,135828.86677233738,670.2376476367662,238.99155540949099,4.0,21524145.0
|
| 83 |
+
128200.0,26255360000.0,12706.449855598,,,,,,1.3477603197097778,0.0009066554810473189,0.004533277405236595,0.04679114371538162,140769.33060314137,135887.31019694576,703.8466530157068,250.97576503961318,4.0,21819010.0
|
| 84 |
+
128300.0,26275840000.0,12857.068295615,,,,,,1.355229377746582,0.0009006168569228983,0.004503084284614492,0.05108422785997391,135622.26609322798,135988.1744036382,678.11133046614,241.7991322635039,4.0,22115371.0
|
| 85 |
+
128400.0,26296320000.0,13009.32405425,,,,,,1.3515039682388306,0.0008946145017954555,0.004473072508977278,0.05003900080919266,134759.75701014927,135973.28029665968,673.7987850507463,240.26137630450478,4.0,22411212.0
|
| 86 |
+
128500.0,26316800000.0,13161.59762302,1.3702335357666016,1.374220609664917,1.0,0.98828125,0.994535505771637,1.369346261024475,0.0008886477698974836,0.0044432388494874174,0.04577358067035675,136687.7395256056,133199.6974889335,683.438697628028,243.69875065818272,4.0,22706442.0
|
| 87 |
+
128600.0,26337280000.0,13312.400190723,,,,,,1.3718122243881226,0.000882716034400096,0.00441358017200048,0.04940654709935188,136623.84468470348,135832.63111492406,683.1192234235174,243.58483339716582,4.0,23002250.0
|
| 88 |
+
128700.0,26357760000.0,13463.1809961,,,,,,1.366072654724121,0.0008768186866444443,0.0043840934332222215,0.04689597338438034,134130.73164577162,135807.34898812533,670.6536582288581,239.13989535849484,4.0,23296927.0
|
| 89 |
+
128800.0,26378240000.0,13613.864460771,,,,,,1.344313144683838,0.0008709551354127783,0.004354775677063891,0.054595980793237686,137931.8446429208,135826.8605398665,689.659223214604,245.91684910526675,4.0,23590679.0
|
| 90 |
+
128900.0,26398720000.0,13766.122835235,,,,,,1.3522413969039917,0.000865124806236681,0.004325624031183405,0.04653194546699524,135749.55568152564,135914.64528194143,678.7477784076282,242.0260751754841,4.0,23881285.0
|
| 91 |
+
129000.0,26419200000.0,13918.182934829,1.368938684463501,1.3729861974716187,1.0,0.98828125,0.994535505771637,1.385297417640686,0.0008593271407401845,0.004296635703700922,0.04929102212190628,134503.61122241538,133176.3660184107,672.5180561120769,239.8046973904065,4.0,24173331.0
|
| 92 |
+
129100.0,26439680000.0,14068.95763688,,,,,,1.3905024528503418,0.0008535615960156406,0.004267807980078203,0.048293352127075195,135225.83661194204,136047.27431391654,676.1291830597102,241.09234342019758,4.0,24466883.0
|
| 93 |
+
129200.0,26460160000.0,14219.628603521,,,,,,1.351481318473816,0.0008478276440303772,0.004239138220151885,0.04642822593450546,132477.36866789212,135832.52264498387,662.3868433394606,236.1921365215126,4.0,24760870.0
|
| 94 |
+
129300.0,26480640000.0,14370.281665886,,,,,,1.3672703504562378,0.0008421247710622958,0.004210623855311479,0.04878532513976097,135709.0217169265,135925.99321135797,678.5451085846325,241.953807709753,4.0,25057293.0
|
| 95 |
+
129400.0,26501120000.0,14522.458731045,,,,,,1.3404196500778198,0.0008364524771627112,0.0041822623858135555,0.04681025817990303,134904.0735529622,135942.16627412685,674.5203677648109,240.5186763469583,4.0,25352760.0
|
| 96 |
+
129500.0,26521600000.0,14674.537016045,1.3686460256576538,1.372369408607483,1.0,0.9921875,1.0,1.3494436740875244,0.0008308102756448382,0.004154051378224191,0.04785548523068428,135228.05057284236,133253.87689051227,676.1402528642118,241.09629066160554,4.0,25647873.0
|
| 97 |
+
129600.0,26542080000.0,14825.127224356,,,,,,1.3748202323913574,0.0008251976925964478,0.004125988462982239,0.04890698939561844,136648.36071624013,136023.3779823416,683.2418035812007,243.6285427033356,4.0,25943129.0
|
| 98 |
+
129700.0,26562560000.0,14975.789877654,,,,,,1.3518359661102295,0.000819614266415308,0.00409807133207654,0.05117543414235115,135553.82272581087,135998.95777457958,677.7691136290543,241.67710549513185,4.0,26238406.0
|
| 99 |
+
129800.0,26583040000.0,15126.394384124,,,,,,1.369215488433838,0.0008140595473661244,0.004070297736830622,0.048330873250961304,132706.7168803457,135933.4448961378,663.5335844017284,236.60103839548168,4.0,26533566.0
|
| 100 |
+
129900.0,26603520000.0,15278.653017014,,,,,,1.3572152853012085,0.0008085330971577746,0.004042665485788873,0.04914821311831474,135348.03210498675,135985.93182370174,676.7401605249338,241.3102041375846,4.0,26825903.0
|
| 101 |
+
130000.0,26624000000.0,15432.359645387,1.3673962354660034,1.3716517686843872,1.0,0.9921875,0.994535505771637,1.3651427030563354,0.0008030344885397111,0.004015172442698556,0.0471811406314373,135020.8276635419,133181.18218855603,675.1041383177094,240.72683569600622,4.0,27118415.0
|
| 102 |
+
130100.0,26644480000.0,15582.997465654,,,,,,1.3732999563217163,0.0007975633049164833,0.0039878165245824165,0.045861437916755676,135889.31520597194,134570.08589236907,679.4465760298598,242.27525057057335,4.0,27411735.0
|
| 103 |
+
130200.0,26664960000.0,15733.640519356,,,,,,1.373875379562378,0.0007921191399793929,0.003960595699896964,0.05061367526650429,136138.7305751216,135955.84724428513,680.6936528756079,242.7199299110004,4.0,27706782.0
|
| 104 |
+
130300.0,26685440000.0,15884.452787727,,,,,,1.3442704677581787,0.0007867015973543601,0.003933507986771801,0.04705391824245453,135559.66275529086,135951.10135593422,677.7983137764543,241.68751760592554,4.0,28002038.0
|
| 105 |
+
130400.0,26705920000.0,16036.471221825,,,,,,1.3607628345489502,0.0007813102902651393,0.003906551451325697,0.04937497153878212,140623.52507063153,135798.54099213087,703.1176253531577,250.7158102972565,4.0,28296120.0
|
| 106 |
+
130500.0,26726400000.0,16188.676497771,1.3660873174667358,1.3702341318130493,1.0,0.9921875,0.994535505771637,1.3727936744689941,0.000775944841211073,0.003879724206055365,0.04812304675579071,135172.74456106528,133391.01509108613,675.8637228053263,240.99768630966628,4.0,28589661.0
|
| 107 |
+
130600.0,26746880000.0,16339.397447509,,,,,,1.3441331386566162,0.0007706048816586228,0.0038530244082931138,0.05002879723906517,134904.3489786925,135909.32016809753,674.5217448934625,240.5191673998253,4.0,28884318.0
|
| 108 |
+
130700.0,26767360000.0,16489.887007887,,,,,,1.3618743419647217,0.0007652900517459686,0.003826450258729843,0.04625379294157028,135856.21766767418,135880.81383242543,679.2810883383709,242.216241410271,4.0,29179193.0
|
| 109 |
+
130800.0,26787840000.0,16640.427343339,,,,,,1.3524214029312134,0.00076,0.0038,0.05182991176843643,135127.15486586522,136089.73436946288,675.6357743293261,240.91640504916919,4.0,29472874.0
|
| 110 |
+
130900.0,26808320000.0,16792.585432499,,,,,,1.3671324253082275,0.0007547343830650754,0.003773671915325377,0.05112339183688164,135702.65429461884,136043.9520400018,678.5132714730943,241.94245531730965,4.0,29763703.0
|
| 111 |
+
131000.0,26828800000.0,16944.639310349,1.3650580644607544,1.3690959215164185,1.0,0.9921875,0.994535505771637,1.3595296144485474,0.0007494928654429532,0.0037474643272147664,0.04907596483826637,135288.4515386462,133270.83166103542,676.4422576932309,241.20397873923434,4.0,30054274.0
|
| 112 |
+
131100.0,26849280000.0,17095.283395706,,,,,,1.3596181869506836,0.0007442751192433384,0.0037213755962166918,0.04868864268064499,134805.90300555108,136044.8912408789,674.0295150277555,240.3436493852239,4.0,30347503.0
|
| 113 |
+
131200.0,26869760000.0,17245.912534298,,,,,,1.3593109846115112,0.0007390808239445205,0.0036954041197226027,0.04735444486141205,135874.6557354489,135950.1548430244,679.3732786772446,242.2491143957842,4.0,30641368.0
|
| 114 |
+
131300.0,26890240000.0,17396.403580933,,,,,,1.3519482612609863,0.0007339096661636087,0.0036695483308180434,0.055513329803943634,135710.80127174154,135963.76941575235,678.5540063587077,241.95698045433605,4.0,30935174.0
|
| 115 |
+
131400.0,26910720000.0,17548.528974467,,,,,,1.3507850170135498,0.0007287613394358945,0.0036438066971794724,0.05013418197631836,133213.63026190092,136088.5638544666,666.0681513095046,237.504807513368,4.0,31228204.0
|
| 116 |
+
131500.0,26931200000.0,17700.707554133,1.3647181987762451,1.3688862323760986,1.0,0.9921875,0.994535505771637,1.346923828125,0.0007236355440029084,0.0036181777200145417,0.04854936897754669,134914.24386430005,133295.52912994244,674.5712193215003,240.53680885961415,4.0,31521576.0
|
| 117 |
+
131600.0,26951680000.0,17851.357683361,,,,,,1.3457633256912231,0.00071853198660875,0.00359265993304375,0.04936089366674423,135784.76910090513,135936.17019310247,678.9238455045256,242.0888567119918,4.0,31815494.0
|
| 118 |
+
131700.0,26972160000.0,18001.972084218,,,,,,1.35757577419281,0.0007134503803043043,0.0035672519015215215,0.04555872082710266,136797.16682788363,135944.81554355795,683.9858341394182,243.89384713827383,4.0,32110295.0
|
| 119 |
+
131800.0,26992640000.0,18152.661183184,,,,,,1.3729356527328491,0.0007083904442589708,0.0035419522212948537,0.05124485865235329,135109.5566280865,135976.95449459687,675.5477831404324,240.88502938537266,4.0,32404305.0
|
| 120 |
+
131900.0,27013120000.0,18304.803126176,,,,,,1.3403998613357544,0.0007033519035795584,0.003516759517897792,0.04844585806131363,135730.16498688117,135909.6788469864,678.6508249344058,241.9915037642101,4.0,32694078.0
|
| 121 |
+
132000.0,27033600000.0,18456.663392533,1.3640620708465576,1.3678659200668335,1.0,0.9921875,0.994535505771637,1.3574800491333008,0.0006983344891360159,0.003491672445680079,0.0483989343047142,135661.67697429517,133288.55577530403,678.3083848714758,241.86939739856095,4.0,32983782.0
|
| 122 |
+
132100.0,27054080000.0,18607.198472494,,,,,,1.3589226007461548,0.0006933379373936821,0.0034666896869684108,0.05101192370057106,135734.39014184746,136216.34637939863,678.6719507092373,241.9990367367371,4.0,33272740.0
|
| 123 |
+
132200.0,27074560000.0,18757.902750408,,,,,,1.3699326515197754,0.000688361990251764,0.0034418099512588196,0.049699001014232635,132740.79993398453,136048.74793946146,663.7039996699226,236.66180461796245,4.0,33565508.0
|
| 124 |
+
132300.0,27095040000.0,18908.641001617,,,,,,1.3590357303619385,0.0006834063948877587,0.0034170319744387936,0.049043118953704834,134299.60879273582,135895.8758060947,671.4980439636792,239.44098417503923,4.0,33861498.0
|
| 125 |
+
132400.0,27115520000.0,19060.770763441,,,,,,1.3505220413208008,0.000678470903607559,0.003392354518037795,0.052485160529613495,132702.30909955467,135865.22289961964,663.5115454977733,236.5931798218037,4.0,34157655.0
|
| 126 |
+
132500.0,27136000000.0,19212.944682478,1.362646460533142,1.367012619972229,1.0,0.9921875,0.994535505771637,1.353424072265625,0.0006735552737009847,0.0033677763685049235,0.052241694182157516,135662.34115816723,133299.1043042025,678.3117057908362,241.87058156314217,4.0,34452614.0
|
| 127 |
+
132600.0,27156480000.0,19363.401688588,,,,,,1.3494051694869995,0.0006686592673025067,0.003343296336512533,0.05067458376288414,136445.15247504495,135932.66619847345,682.2257623752248,243.2662454360417,4.0,34747971.0
|
| 128 |
+
132700.0,27176960000.0,19513.892364149,,,,,,1.357454776763916,0.0006637826512569348,0.0033189132562846738,0.05749701336026192,135765.73313184848,136119.2190575254,678.8286656592425,242.05491773624485,4.0,35043174.0
|
| 129 |
+
132800.0,27197440000.0,19664.313538618,,,,,,1.3454859256744385,0.0006589251969898564,0.0032946259849492817,0.05318136885762215,140577.52094318252,136088.84801890154,702.8876047159126,250.63379015102134,4.0,35336889.0
|
| 130 |
+
132900.0,27217920000.0,19816.39420674,,,,,,1.3539403676986694,0.0006540866803826199,0.0032704334019130993,0.05183654651045799,135662.42685978572,136151.6386394509,678.3121342989286,241.87073435941656,4.0,35629464.0
|
| 131 |
+
133000.0,27238400000.0,19968.394536137,1.362076997756958,1.3661003112792969,1.0,0.99609375,0.994535505771637,1.3541946411132812,0.0006492668816516717,0.0032463344082583586,0.04872076213359833,135321.187710033,133338.37620117934,676.605938550165,241.2623436232831,4.0,35920429.0
|
| 132 |
+
133100.0,27258880000.0,20118.829713809,,,,,,1.3539197444915771,0.0006444655852320628,0.0032223279261603135,0.051023077219724655,136711.95212148642,136092.87107808786,683.5597606074322,243.7419189729623,4.0,36212262.0
|
| 133 |
+
133200.0,27279360000.0,20269.296599319,,,,,,1.3603768348693848,0.0006396825796649481,0.0031984128983247404,0.05585640296339989,133929.3613438565,136139.0119284294,669.6468067192825,238.7808749286692,4.0,36504914.0
|
| 134 |
+
133300.0,27299840000.0,20420.046855822,,,,,,1.3643295764923096,0.0006349176574889153,0.0031745882874445767,0.04909880459308624,135366.01250293507,136110.24978688481,676.8300625146753,241.3422611496586,4.0,36798460.0
|
| 135 |
+
133400.0,27320320000.0,20572.130588723,,,,,,1.3426504135131836,0.0006301706151349834,0.0031508530756749168,0.05029956251382828,133436.1673485581,135854.51272153953,667.1808367427906,237.9015659218521,4.0,37095758.0
|
| 136 |
+
133500.0,27340800000.0,20724.400822599,1.3616098165512085,1.3652293682098389,1.0,0.98828125,0.9890710115432739,1.34055757522583,0.0006254412528251198,0.003127206264125599,0.05015243589878082,134655.23126232324,133329.2897361324,673.2761563116162,240.0750187405768,4.0,37392127.0
|
| 137 |
+
133600.0,27361280000.0,20875.158417174,,,,,,1.3689168691635132,0.0006207293744741368,0.003103646872370684,0.049973972141742706,135764.74606820563,135856.01698244142,678.8237303410282,242.05315791361977,4.0,37688000.0
|
| 138 |
+
133700.0,27381760000.0,21025.773684008,,,,,,1.3501439094543457,0.0006160347875948249,0.0030801739379741244,0.052250105887651443,135126.55968148273,135847.81539400798,675.6327984074136,240.91534390285915,4.0,37984015.0
|
| 139 |
+
133800.0,27402240000.0,21176.34776773,,,,,,1.3613200187683105,0.0006113573032061991,0.003056786516030995,0.05417443439364433,134032.67913237287,135976.1864911737,670.1633956618643,238.96507883802926,4.0,38279518.0
|
| 140 |
+
133900.0,27422720000.0,21328.573881285,,,,,,1.3613404035568237,0.0006066967357447313,0.0030334836787236567,0.05045079067349434,135321.80592814845,136013.38435095418,676.6090296407423,241.26344583612894,4.0,38573284.0
|
| 141 |
+
134000.0,27443200000.0,21480.608213822,1.3606678247451782,1.3641968965530396,1.0,0.98828125,0.9890710115432739,1.35385262966156,0.000602052902978451,0.0030102645148922546,0.050413213670253754,135251.32283571435,133211.63381445297,676.2566141785718,241.1377824691852,4.0,38865973.0
|
| 142 |
+
134100.0,27463680000.0,21631.178941967,,,,,,1.3677058219909668,0.0005974256259238016,0.0029871281296190077,0.05304441228508949,135813.38674840197,136062.78054826483,679.0669337420098,242.13987873463964,4.0,39157471.0
|
| 143 |
+
134200.0,27484160000.0,21781.763984827,,,,,,1.3556596040725708,0.000592814728765148,0.0029640736438257403,0.05021808668971062,136605.44170886918,136016.43979096905,683.0272085443459,243.55202297660594,4.0,39449709.0
|
| 144 |
+
134300.0,27504640000.0,21932.5801317,,,,,,1.358154058456421,0.000588220038776828,0.00294110019388414,0.048974331468343735,135252.13207951502,136003.46238636013,676.2606603975751,241.13922525918144,4.0,39743873.0
|
| 145 |
+
134400.0,27525120000.0,22084.727911239,,,,,,1.3628469705581665,0.0005836413862476532,0.002918206931238266,0.05150545760989189,139238.26834903652,135795.04859722868,696.1913417451826,248.24605453448515,4.0,40044119.0
|
| 146 |
+
134500.0,27545600000.0,22237.012177664,1.359985113143921,1.3638756275177002,1.0,0.9921875,0.994535505771637,1.376406192779541,0.0005790786044077667,0.0028953930220388334,0.04988322779536247,134506.39132575926,133272.20377823274,672.5319566287964,239.8096539996383,4.0,40341576.0
|
| 147 |
+
134600.0,27566080000.0,22387.64661942,,,,,,1.3494211435317993,0.0005745315293577645,0.0028726576467888224,0.051684994250535965,135941.4227588881,135844.83047045712,679.7071137944405,242.3681524328003,4.0,40638661.0
|
| 148 |
+
134700.0,27586560000.0,22538.387722866,,,,,,1.3581981658935547,0.0005700000000000001,0.0028500000000000005,0.05255522206425667,135833.61744755777,135959.00661971403,679.1680872377889,242.17594777877136,4.0,40936318.0
|
| 149 |
+
134800.0,27607040000.0,22689.109544796,,,,,,1.335654377937317,0.0005654838579719865,0.0028274192898599323,0.05083213746547699,134674.6960781301,135862.77141919,673.3734803906506,240.10972230148423,4.0,41233322.0
|
| 150 |
+
134900.0,27627520000.0,22841.241239824,,,,,,1.3510234355926514,0.0005609829475818215,0.0028049147379091074,0.05134465917944908,135150.39241112967,135880.15288117377,675.7519620556484,240.95783495918866,4.0,41529506.0
|
| 151 |
+
135000.0,27648000000.0,22995.01815565,1.3585087060928345,1.3631188869476318,1.0,0.99609375,1.0,1.3556103706359863,0.0005564971157455596,0.002782485578727798,0.050575800240039825,136715.6075980715,133307.6154550937,683.5780379903575,243.7484362734893,4.0,41824725.0
|
| 152 |
+
135100.0,27668480000.0,23145.55009893,,,,,,1.3544262647628784,0.0005520262119264584,0.002760131059632292,0.047966666519641876,135947.40381212716,134491.25694881025,679.7370190606358,242.37881597297616,4.0,42117877.0
|
| 153 |
+
135200.0,27688960000.0,23296.201924222,,,,,,1.3524107933044434,0.0005475700880760339,0.0027378504403801694,0.04893486574292183,135776.74200989679,136051.47441404252,678.8837100494839,242.07454531832224,4.0,42410735.0
|
| 154 |
+
135300.0,27709440000.0,23446.736663635,,,,,,1.3671149015426636,0.0005431285985768586,0.0027156429928842925,0.04962502419948578,135551.9831137869,135943.16968837348,677.7599155689345,241.67382567535068,4.0,42705451.0
|
| 155 |
+
135400.0,27729920000.0,23599.001141808,,,,,,1.3730154037475586,0.000538701600187037,0.0026935080009351854,0.053583789616823196,135232.3083937239,136048.9823779353,676.1615419686195,241.10388187375784,4.0,43003177.0
|
| 156 |
+
135500.0,27750400000.0,23751.163952717,1.357814073562622,1.3614263534545898,1.0,0.99609375,0.994535505771637,1.365358591079712,0.0005342889519863043,0.002671444759931521,0.05024281516671181,134385.20556243218,133169.83847003465,671.9260278121609,239.59359351591922,4.0,43301783.0
|
| 157 |
+
135600.0,27770880000.0,23901.827888265,,,,,,1.3725183010101318,0.000529890515323684,0.0026494525766184197,0.04864996671676636,135841.88756823773,135955.73728637595,679.2094378411887,242.19069246680624,4.0,43597861.0
|
| 158 |
+
135700.0,27791360000.0,24052.607096731,,,,,,1.3502345085144043,0.0005255061537666554,0.0026275307688332764,0.04970315843820572,135556.68919754878,135932.32826367192,677.7834459877439,241.68221608942326,4.0,43894089.0
|
| 159 |
+
135800.0,27811840000.0,24203.265091711,,,,,,1.357683539390564,0.0005211357330517747,0.0026056786652588733,0.05076080188155174,134752.56936986456,135828.30426525138,673.7628468493228,240.24856155635223,4.0,44190189.0
|
| 160 |
+
135900.0,27832320000.0,24355.375200723,,,,,,1.3458598852157593,0.0005167791210367015,0.0025838956051835076,0.04966685175895691,134424.74210283838,135937.68078049092,672.1237105141919,239.66408268733852,4.0,44485879.0
|
| 161 |
+
136000.0,27852800000.0,24507.368668144,1.3567017316818237,1.361080288887024,1.0,0.9921875,0.994535505771637,1.3244465589523315,0.0005124361876535793,0.0025621809382678964,0.053507957607507706,135997.85492227323,133319.3308996695,679.9892746113661,242.4687645854456,4.0,44779437.0
|
| 162 |
+
136100.0,27873280000.0,24657.931691691,,,,,,1.3267979621887207,0.0005081068048637257,0.002540534024318629,0.05040251091122627,135149.30795632707,136092.32902173445,675.7465397816354,240.9559014991618,4.0,45069940.0
|
| 163 |
+
136200.0,27893760000.0,24808.333493643,,,,,,1.3484429121017456,0.0005037908466135884,0.002518954233067942,0.050347380340099335,136013.4455144039,136023.48632652132,680.0672275720195,242.49656084455015,4.0,45361802.0
|
| 164 |
+
136300.0,27914240000.0,24958.904169744,,,,,,1.3521082401275635,0.0004994881887919213,0.0024974409439596063,0.05026375874876976,135720.23583585027,136169.36521423055,678.6011791792513,241.97380121305426,4.0,45655329.0
|
| 165 |
+
136400.0,27934720000.0,25110.971603452,,,,,,1.3515654802322388,0.0004951987091881406,0.002475993545940703,0.050040774047374725,134848.8204798457,136016.5604004258,674.2441023992284,240.42016637865208,4.0,45950158.0
|
| 166 |
+
136500.0,27955200000.0,25263.20798621,1.3560302257537842,1.360386610031128,1.0,0.9921875,0.994535505771637,1.3508721590042114,0.000490922287451824,0.0024546114372591197,0.050407636910676956,134538.41292017142,133342.18964025594,672.6920646008572,239.86674487391429,4.0,46247828.0
|
| 167 |
+
136600.0,27975680000.0,25413.875755194,,,,,,1.3608384132385254,0.0004866588050533114,0.002433294025266557,0.051214613020420074,135026.91900806804,135887.65672156287,675.1345950403402,240.7376958730492,4.0,46544853.0
|
| 168 |
+
136700.0,27996160000.0,25564.696156992,,,,,,1.3299919366836548,0.00048240814524537186,0.0024120407262268593,0.06125953420996666,135283.82797876705,135928.9552458767,676.4191398938352,241.1957354558934,4.0,46841233.0
|
| 169 |
+
136800.0,28016640000.0,25715.558640178,,,,,,1.3383698463439941,0.00047817019302590216,0.002390850965129511,0.05010830983519554,134291.44141151226,135791.24404909904,671.4572070575614,239.42642265981308,4.0,47137751.0
|
| 170 |
+
136900.0,28037120000.0,25867.703128072,,,,,,1.3582066297531128,0.0004739448351016243,0.0023697241755081216,0.05021371319890022,134332.24623991954,135753.38278078116,671.6612311995976,239.49917304502088,4.0,47433555.0
|
| 171 |
+
137000.0,28057600000.0,26019.780941747,1.3555227518081665,1.3587039709091187,1.0,0.9921875,0.994535505771637,1.324083924293518,0.0004697319598527461,0.0023486597992637306,0.04847193509340286,134944.25521907557,133279.3886253185,674.7212760953779,240.59031570441044,4.0,47728243.0
|
| 172 |
+
137100.0,28078080000.0,26170.379763441,,,,,,1.3332405090332031,0.0004655314572985577,0.002327657286492788,0.051657285541296005,135656.5993963788,136026.58379376348,678.282996981894,241.8603446525072,4.0,48022285.0
|
| 173 |
+
137200.0,28098560000.0,26320.923107936,,,,,,1.3527717590332031,0.00046134321906393075,0.0023067160953196535,0.047657813876867294,135153.9648559254,135991.03753029124,675.7698242796271,240.9642042234441,4.0,48315242.0
|
| 174 |
+
137300.0,28119040000.0,26471.559639387,,,,,,1.3584785461425781,0.0004571671383466944,0.002285835691733472,0.05149759352207184,134045.50047649717,136041.15088953328,670.2275023824858,238.98793784173867,4.0,48607635.0
|
| 175 |
+
137400.0,28139520000.0,26623.649571706,,,,,,1.362473726272583,0.0004530031098858575,0.0022650155494292877,0.047126054763793945,135720.30016692617,135957.0014902916,678.6015008346309,241.97391590807288,4.0,48902005.0
|
| 176 |
+
137500.0,28160000000.0,26775.960007168,1.3546541929244995,1.3584650754928589,1.0,0.9921875,0.994535505771637,1.3501110076904297,0.00044885102993065057,0.002244255149653253,0.05147098749876022,135524.43768762943,133332.35988069334,677.6221884381471,241.62471530185104,4.0,49197769.0
|
| 177 |
+
137600.0,28180480000.0,26926.632891996,,,,,,1.3435126543045044,0.000444710796210366,0.00222355398105183,0.05181796848773956,134896.19261626955,135811.00735283707,674.4809630813477,240.50462552987202,4.0,49493413.0
|
| 178 |
+
137700.0,28200960000.0,27077.230665807,,,,,,1.343124508857727,0.0004405823079049644,0.002202911539524822,0.0531371533870697,135578.5125834864,135924.1703692347,677.8925629174319,241.7211247136099,4.0,49787621.0
|
| 179 |
+
137800.0,28221440000.0,27227.900950347,,,,,,1.3433256149291992,0.0004364654656164299,0.002182327328082149,0.05032052844762802,135758.43778304625,135991.97879955347,678.7921889152312,242.0419109560106,4.0,50082252.0
|
| 180 |
+
137900.0,28241920000.0,27380.068895719,,,,,,1.3486204147338867,0.0004323601713408474,0.002161800856704237,0.051167912781238556,134901.2134291647,135926.62557155208,674.5060671458235,240.51357707032537,4.0,50376480.0
|
| 181 |
+
138000.0,28262400000.0,27532.24801472,1.353435754776001,1.3572361469268799,1.0,0.9921875,0.994535505771637,1.3296117782592773,0.00042826632844118154,0.0021413316422059076,0.0532497838139534,135087.0766603767,133260.3667852755,675.4353833018836,240.8449501502875,4.0,50670793.0
|
| 182 |
+
138100.0,28282880000.0,27682.595160865,,,,,,1.3434640169143677,0.0004241838416207344,0.002120919208103672,0.051016420125961304,134899.79400534672,135933.76627285752,674.4989700267336,240.5110463985014,4.0,50962343.0
|
| 183 |
+
138200.0,28303360000.0,27832.957292125,,,,,,1.3534951210021973,0.00042011261689726303,0.0021005630844863152,0.05080180987715721,136683.17207301263,136218.68815570947,683.415860365063,243.69060740777516,4.0,51252685.0
|
| 184 |
+
138300.0,28323840000.0,27983.615349395,,,,,,1.3552577495574951,0.0004160525615777357,0.0020802628078886785,0.05043286457657814,135693.11499897402,136205.12874375668,678.46557499487,241.92544783413027,4.0,51543146.0
|
| 185 |
+
138400.0,28344320000.0,28135.841749449,,,,,,1.3403892517089844,0.00041200358423370756,0.0020600179211685376,0.051334165036678314,136988.229320361,135937.69971144875,684.9411466018049,244.23448991191225,4.0,51839627.0
|
| 186 |
+
138500.0,28364800000.0,28288.081084412,1.352538824081421,1.3563344478607178,1.0,0.9921875,0.994535505771637,1.331847906112671,0.0004079655946772987,0.0020398279733864935,0.050189465284347534,135091.34685368443,133209.79587139876,675.4567342684221,240.85256342107365,4.0,52134672.0
|
| 187 |
+
138600.0,28385280000.0,28438.593882036,,,,,,1.3343223333358765,0.00040393850393775584,0.002019692519688779,0.05052166432142258,135831.23326211234,135879.57232409422,679.1561663105616,242.1716970462886,4.0,52429028.0
|
| 188 |
+
138700.0,28405760000.0,28589.120591082,,,,,,1.3587559461593628,0.0003999222242385786,0.001999611121192893,0.04885440692305565,135930.6452830362,136068.90268691574,679.6532264151809,242.3489374146174,4.0,52722538.0
|
| 189 |
+
138800.0,28426240000.0,28739.644316196,,,,,,1.342160940170288,0.0003959166689751971,0.0019795833448759854,0.049497101455926895,135289.175996021,136056.30058289846,676.4458799801049,241.20527036464097,4.0,53016268.0
|
| 190 |
+
138900.0,28446720000.0,28891.806747341,,,,,,1.3529587984085083,0.0003919217526931833,0.0019596087634659166,0.05052971839904785,135772.27815604987,136058.98813762976,678.8613907802493,242.06658677273953,4.0,53309960.0
|
| 191 |
+
139000.0,28467200000.0,29043.745150173,1.3512693643569946,1.3554494380950928,1.0,0.9921875,0.994535505771637,1.3377671241760254,0.00038793739106697924,0.001939686955334896,0.050203289836645126,134965.30928345287,133264.0575049305,674.8265464172644,240.62785271543157,4.0,53603349.0
|
| 192 |
+
139100.0,28487680000.0,29194.105317893,,,,,,1.3313707113265991,0.000383963500879129,0.0019198175043956447,0.052332475781440735,135842.74685930443,136152.53336129402,679.2137342965221,242.19222448540668,4.0,53893261.0
|
| 193 |
+
139200.0,28508160000.0,29344.548492483,,,,,,1.345298409461975,0.0003799999999999999,0.0018999999999999996,0.05198262631893158,135968.40621021032,136206.99087814838,679.8420310510517,242.41626086884946,4.0,54182913.0
|
| 194 |
+
139300.0,28528640000.0,29495.271625341,,,,,,1.3445971012115479,0.0003760468073679779,0.0018802340368398896,0.0496252216398716,135557.50209965807,136131.79873350155,677.7875104982904,241.6836654017693,4.0,54472951.0
|
| 195 |
+
139400.0,28549120000.0,29647.322451816,,,,,,1.3578472137451172,0.0003721038429701231,0.0018605192148506155,0.05335168167948723,135770.2180148062,135878.92793518867,678.8510900740309,242.06291377434914,4.0,54765910.0
|
| 196 |
+
139500.0,28569600000.0,29799.465176837,1.3505074977874756,1.3547050952911377,1.0,0.9921875,0.994535505771637,1.3501518964767456,0.00036817102782327546,0.0018408551391163772,0.05116407945752144,134743.73385102092,133358.6998105272,673.7186692551046,240.2328088274602,4.0,55061772.0
|
| 197 |
+
139600.0,28590080000.0,29950.033339001,,,,,,1.333709716796875,0.0003642482839555954,0.0018212414197779768,0.05369193106889725,135078.57956637087,135970.07549059088,675.3928978318544,240.8298007945323,4.0,55357568.0
|
| 198 |
+
139700.0,28610560000.0,30100.567516931,,,,,,1.3351783752441406,0.0003603355343885257,0.0018016776719426285,0.05110915005207062,135589.51252121068,136018.78762171345,677.9475626060535,241.74073635610276,4.0,55653281.0
|
| 199 |
+
139800.0,28631040000.0,30251.195352729,,,,,,1.3498897552490234,0.00035643270311916755,0.0017821635155958375,0.05207052081823349,135826.293324411,136049.46440149014,679.131466622055,242.16288969714142,4.0,55948597.0
|
| 200 |
+
139900.0,28651520000.0,30403.125160407,,,,,,1.3386107683181763,0.0003525397151030552,0.0017626985755152759,0.052768636494874954,135803.01601981884,135964.94079792895,679.0150800990942,242.12138890074604,4.0,56243113.0
|
| 201 |
+
140000.0,28672000000.0,30556.899250177,1.3499743938446045,1.3538844585418701,1.0,0.9921875,0.994535505771637,1.3292713165283203,0.0003486564962373205,0.0017432824811866026,0.05315755680203438,135471.92282804445,133471.03451627478,677.3596141402222,241.53108725798796,4.0,56536602.0
|
| 202 |
+
140100.0,28692480000.0,30707.474686409,,,,,,1.3392030000686646,0.0003447829733442344,0.0017239148667211718,0.052529819309711456,135767.943348142,134505.9020613606,678.8397167407101,242.05885830144317,4.0,56828972.0
|
| 203 |
+
140200.0,28712960000.0,30857.91150933,,,,,,1.3273208141326904,0.00034091907415511826,0.0017045953707755914,0.05213116481900215,134594.97247127965,136012.17379976914,672.9748623563983,239.96758414443482,4.0,57119773.0
|
| 204 |
+
140300.0,28733440000.0,31008.352674206,,,,,,1.3363478183746338,0.0003370647272946117,0.0016853236364730586,0.051929593086242676,135941.59486817365,136137.5590013817,679.7079743408682,242.36845928415366,4.0,57410081.0
|
| 205 |
+
140400.0,28753920000.0,31160.484979612,,,,,,1.3489693403244019,0.00033321986226528895,0.0016660993113264445,0.05196307599544525,134647.08388875026,136133.58680448585,673.2354194437513,240.06049289672444,4.0,57702046.0
|
| 206 |
+
140500.0,28774400000.0,31312.698118777,1.3492249250411987,1.3534477949142456,1.0,0.99609375,0.994535505771637,1.3600462675094604,0.00032938440943261564,0.0016469220471630782,0.05212143808603287,137536.79164410397,133314.81301778436,687.6839582205198,245.21251437422526,4.0,57999572.0
|
| 207 |
+
140600.0,28794880000.0,31463.205516811,,,,,,1.336337924003601,0.0003255583000102332,0.001627791500051166,0.05125218629837036,136097.70514389867,135878.7003156184,680.4885257194934,242.64678621597017,4.0,58296591.0
|
| 208 |
+
140700.0,28815360000.0,31613.877698821,,,,,,1.3367778062820435,0.00032174146604556586,0.0016087073302278293,0.053504034876823425,135946.7368340755,136073.61800367472,679.7336841703775,242.37762682668938,4.0,58592582.0
|
| 209 |
+
140800.0,28835840000.0,31764.499796516,,,,,,1.3227726221084595,0.00031793384040573915,0.0015896692020286958,0.049863122403621674,134829.665075225,135924.80679905933,674.1483253761251,240.3860144628284,4.0,58888042.0
|
| 210 |
+
140900.0,28856320000.0,31916.632554773,,,,,,1.3463690280914307,0.00031413535676380415,0.0015706767838190206,0.05586851015686989,135866.68248363023,135970.00790933587,679.3334124181512,242.23489899128896,4.0,59183500.0
|
| 211 |
+
141000.0,28876800000.0,32068.889192234,1.3487964868545532,1.351944088935852,1.0,0.99609375,0.994535505771637,1.3345500230789185,0.0003103459495852564,0.001551729747926282,0.05229901894927025,135817.87478034178,133298.02680873396,679.0893739017089,242.14788038702224,4.0,59478343.0
|
| 212 |
+
141100.0,28897280000.0,32219.352720073,,,,,,1.355357050895691,0.0003065655541148443,0.0015328277705742215,0.052036236971616745,135812.33457330885,135856.36850428866,679.0616728665443,242.13800282567698,4.0,59772311.0
|
| 213 |
+
141200.0,28917760000.0,32369.6943836,,,,,,1.3359389305114746,0.00030279410636365785,0.0015139705318182892,0.05065249279141426,135495.9416684741,136113.27744409884,677.4797083423704,241.57391012875365,4.0,60064073.0
|
| 214 |
+
141300.0,28938240000.0,32520.115407978,,,,,,1.3468326330184937,0.000299031543096492,0.00149515771548246,0.05264350026845932,135740.35299081416,136223.75756393923,678.7017649540708,242.00966782075818,4.0,60353760.0
|
| 215 |
+
141400.0,28958720000.0,32672.077942634,,,,,,1.355655312538147,0.00029527780181947576,0.0014763890090973787,0.053140636533498764,135717.55542856184,136151.77157374215,678.5877771428093,241.96902235059224,4.0,60645871.0
|
| 216 |
+
141500.0,28979200000.0,32824.274179607,1.34710693359375,1.351461410522461,1.0,0.99609375,0.994535505771637,1.3507838249206543,0.0002915328207679627,0.0014576641038398135,0.050395820289850235,134870.37417000704,133436.67145526217,674.3518708500352,240.45859416583056,4.0,60939761.0
|
| 217 |
+
141600.0,28999680000.0,32974.999502284,,,,,,1.354130506515503,0.00028779653889467166,0.0014389826944733583,0.051765892654657364,135208.1062520295,135920.60333232261,676.0405312601475,241.06073219760805,4.0,61237225.0
|
| 218 |
+
141700.0,29020160000.0,33125.589392794,,,,,,1.3162178993225098,0.0002840688958580773,0.0014203444792903863,0.050582405179739,135817.03727818688,135877.0111400114,679.0851863909344,242.1463872155825,4.0,61534453.0
|
| 219 |
+
141800.0,29040640000.0,33276.211530444,,,,,,1.3490036725997925,0.00028034983201104,0.0014017491600551999,0.050439611077308655,134873.00004113736,135999.20474532357,674.3650002056868,240.46327579650256,4.0,61830171.0
|
| 220 |
+
141900.0,29061120000.0,33428.410660874,,,,,,1.336944580078125,0.0002766392883896691,0.0013831964419483455,0.05037175118923187,135666.79778591363,135970.00188298518,678.3339889295681,241.8785272254065,4.0,62126262.0
|
| 221 |
+
142000.0,29081600000.0,33580.471388951,1.3464720249176025,1.3509763479232788,1.0,0.99609375,0.994535505771637,1.3277671337127686,0.0002729372067024171,0.0013646860335120856,0.05250025540590286,135163.4497625574,133234.1123846609,675.8172488127869,240.98111473717668,4.0,62420385.0
|
| 222 |
+
142100.0,29102080000.0,33730.924077714,,,,,,1.365436315536499,0.0002692435293193939,0.0013462176465969694,0.05104875937104225,135109.42912135262,136039.79700199136,675.5471456067631,240.88480205531476,4.0,62715303.0
|
| 223 |
+
142200.0,29122560000.0,33881.424553431,,,,,,1.3385553359985352,0.000265558199261901,0.0013277909963095049,0.053029995411634445,135613.23052119766,136123.16906050142,678.0661526059883,241.78302286244926,4.0,63009074.0
|
| 224 |
+
142300.0,29143040000.0,34031.903636407,,,,,,1.3358261585235596,0.00026188116019217555,0.0013094058009608777,0.05346914008259773,135147.75572777542,136079.94181766696,675.7387786388771,240.95313405154658,4.0,63299921.0
|
| 225 |
+
142400.0,29163520000.0,34183.949334466,,,,,,1.3383853435516357,0.00025821235640334213,0.0012910617820167108,0.05070393905043602,135963.24108444725,136099.42202175574,679.8162054222363,242.4070520349056,4.0,63591314.0
|
| 226 |
+
142500.0,29184000000.0,34336.007546703,1.345630168914795,1.3493683338165283,1.0,0.99609375,0.994535505771637,1.344093680381775,0.00025455173280956666,0.0012727586640478333,0.05451756715774536,136610.2429517961,133381.21934654194,683.0512147589804,243.5605830486867,4.0,63885665.0
|
| 227 |
+
142600.0,29204480000.0,34486.648513164,,,,,,1.3398514986038208,0.00025089923493640536,0.0012544961746820268,0.05330229550600052,135933.80735928135,136028.10199194908,679.6690367964067,242.3545750382485,4.0,64182444.0
|
| 228 |
+
142700.0,29224960000.0,34637.131987259,,,,,,1.3338302373886108,0.0002472548089113474,0.0012362740445567369,0.053288910537958145,135843.54171321992,135952.98581437542,679.2177085660996,242.1936416198683,4.0,64479818.0
|
| 229 |
+
142800.0,29245440000.0,34787.691109738,,,,,,1.3349099159240723,0.00024361840145454414,0.0012180920072727207,0.05401905998587608,135683.83423005394,136095.35868483744,678.4191711502697,241.90890127480594,4.0,64775159.0
|
| 230 |
+
142900.0,29265920000.0,34939.826383599,,,,,,1.3430876731872559,0.0002399899598697201,0.0011999497993486004,0.05504322052001953,135152.77402000906,136026.90970376934,675.7638701000453,240.96208109794608,4.0,65071673.0
|
| 231 |
+
143000.0,29286400000.0,35092.007840525,1.3452041149139404,1.3492701053619385,1.0,0.99609375,0.994535505771637,1.3378058671951294,0.00023636943203526504,0.0011818471601763253,0.05231232941150665,134857.75447412455,133286.49586412657,674.2887723706227,240.43609467808628,4.0,65368262.0
|
| 232 |
+
143100.0,29306880000.0,35242.634407018,,,,,,1.325775384902954,0.00023275676639549674,0.0011637838319774837,0.05248628556728363,135597.00377275093,135933.99343161625,677.9850188637547,241.75409240871994,4.0,65662829.0
|
| 233 |
+
143200.0,29327360000.0,35393.016942961,,,,,,1.3292512893676758,0.00022915191195209696,0.0011457595597604848,0.05316426232457161,135733.48932532515,135966.07539862226,678.6674466266257,241.9974306829548,4.0,65955683.0
|
| 234 |
+
143300.0,29347840000.0,35543.475848933,,,,,,1.3372523784637451,0.0002255548182557106,0.0011277740912785529,0.05356575548648834,135794.278353832,136186.7246015429,678.9713917691599,242.10581063240934,4.0,66245740.0
|
| 235 |
+
143400.0,29368320000.0,35695.48366081,,,,,,1.3393831253051758,0.0002219654353977091,0.0011098271769885454,0.05491708964109421,136356.1763468648,136117.6086644731,681.7808817343241,243.1076110819207,4.0,66537190.0
|
| 236 |
+
143500.0,29388800000.0,35847.551418628,1.3438431024551392,1.348345160484314,1.0,0.99609375,1.0,1.3496891260147095,0.00021838371400211115,0.0010919185700105558,0.0530308336019516,135188.04015823573,133400.4230030726,675.9402007911787,241.02495662618443,4.0,66829296.0
|
| 237 |
+
143600.0,29409280000.0,35998.260893486,,,,,,1.3532235622406006,0.00021480960521765772,0.0010740480260882886,0.055329445749521255,134821.09452961205,136033.2393020821,674.1054726480603,240.37073415118095,4.0,67123576.0
|
| 238 |
+
143700.0,29429760000.0,36149.0089857,,,,,,1.3088921308517456,0.00021124306071003805,0.0010562153035501903,0.05064358189702034,135689.79263788022,135891.2022514664,678.4489631894011,241.9195244407769,4.0,67419969.0
|
| 239 |
+
143800.0,29450240000.0,36299.554115096,,,,,,1.3299686908721924,0.0002076840326542643,0.0010384201632713213,0.05384572222828865,135068.55437022433,135856.34938110958,675.3427718511216,240.8119270058187,4.0,67716564.0
|
| 240 |
+
143900.0,29470720000.0,36451.671738422,,,,,,1.3311147689819336,0.00020413247372718806,0.0010206623686359402,0.05355304852128029,135888.94975550877,136039.61581062045,679.4447487775439,242.2745990138089,4.0,68012887.0
|
| 241 |
+
144000.0,29491200000.0,36603.807469507,1.3441593647003174,1.3477777242660522,1.0,0.99609375,0.994535505771637,1.3348225355148315,0.00020058833710015988,0.0010029416855007994,0.05249963700771332,136106.0074543562,133313.95334102435,680.530037271781,242.66158829473082,4.0,68309548.0
|
| 242 |
+
144100.0,29511680000.0,36754.406071876,,,,,,1.329884648323059,0.00019705157643182473,0.0009852578821591235,0.05332240089774132,135566.97954627487,135962.58750879532,677.8348977313743,241.70056261514011,4.0,68605410.0
|
| 243 |
+
144200.0,29532160000.0,36905.147385995,,,,,,1.3448964357376099,0.00019352214586105263,0.0009676107293052631,0.05258726701140404,135183.10434389583,135991.13527356536,675.9155217194792,241.01615662852345,4.0,68900265.0
|
| 244 |
+
144300.0,29552640000.0,37055.67798326,,,,,,1.3239588737487793,0.00018999999999999996,0.0009499999999999998,0.054484039545059204,135251.47190621318,135862.55803627273,676.2573595310658,241.1380482449925,4.0,69193006.0
|
| 245 |
+
144400.0,29573120000.0,37207.653916424,,,,,,1.337772011756897,0.0001864850939273002,0.000932425469636501,0.053965769708156586,135031.94955708712,136052.65247966486,675.1597477854356,240.74666477190823,4.0,69485079.0
|
| 246 |
+
144500.0,29593600000.0,37359.803961608,1.3426942825317383,1.346855878829956,1.0,0.99609375,0.994535505771637,1.3404866456985474,0.0001829773831813786,0.0009148869159068929,0.05323810502886772,135116.37858922326,133427.47438720134,675.5818929461163,240.8971921690418,4.0,69777447.0
|
| 247 |
+
144600.0,29614080000.0,37510.392405026,,,,,,1.350038766860962,0.00017947682375389092,0.0008973841187694545,0.05238144099712372,135604.96681047112,135959.63971750665,678.0248340523556,241.76828960263495,4.0,70071470.0
|
| 248 |
+
144700.0,29634560000.0,37661.030404144,,,,,,1.3499680757522583,0.0001759833720832814,0.0008799168604164069,0.05223213881254196,135458.42131232927,136000.4680351629,677.2921065616464,241.50701558540638,4.0,70366281.0
|
| 249 |
+
144800.0,29655040000.0,37811.606986245,,,,,,1.3076589107513428,0.0001724969850484583,0.0008624849252422915,0.05513312667608261,135408.09207442048,135955.86983839807,677.0404603721024,241.4172842573259,4.0,70661503.0
|
| 250 |
+
144900.0,29675520000.0,37963.657146947,,,,,,1.327340841293335,0.00016901761996258315,0.0008450880998129158,0.053257815539836884,134700.86210776307,136011.3115024776,673.5043105388154,240.15637336728847,4.0,70956583.0
|
| 251 |
+
145000.0,29696000000.0,38117.559416082,1.3423032760620117,1.3464146852493286,1.0,0.9921875,0.994535505771637,1.3413560390472412,0.00016554523456697388,0.0008277261728348694,0.05156472325325012,134820.41739714568,133360.03564164913,674.1020869857284,240.3695269007234,4.0,71251308.0
|
| 252 |
+
145100.0,29716480000.0,38268.23808047,,,,,,1.3351837396621704,0.00016207978702511587,0.0008103989351255793,0.05287288501858711,135663.58384223358,134399.17528658535,678.3179192111679,241.8727971280164,4.0,71546044.0
|
| 253 |
+
145200.0,29736960000.0,38418.7172991,,,,,,1.3426604270935059,0.00015862123591678083,0.0007931061795839041,0.0548090860247612,134030.65053106344,135918.94666489004,670.1532526553171,238.9614620717676,4.0,71840121.0
|
| 254 |
+
145300.0,29757440000.0,38569.180790027,,,,,,1.347265601158142,0.0001551695402322512,0.0007758477011612559,0.05546094477176666,135309.65578001097,136099.2333398927,676.5482789000548,241.24178349880668,4.0,72131936.0
|
| 255 |
+
145400.0,29777920000.0,38721.085479425,,,,,,1.3279473781585693,0.00015172465936664684,0.0007586232968332341,0.055224690586328506,135871.6898343634,136113.47781169097,679.358449171817,242.24382653023295,4.0,72422176.0
|
| 256 |
+
145500.0,29798400000.0,38873.106602161,1.3414407968521118,1.3451250791549683,1.0,0.99609375,0.994535505771637,1.3248649835586548,0.00014828655311435138,0.0007414327655717568,0.054340168833732605,135024.41448629656,133488.53021762,675.1220724314828,240.7332305945332,4.0,72712619.0
|
| 257 |
+
145600.0,29818880000.0,39023.664045081,,,,,,1.346311330795288,0.00014485518166353753,0.0007242759083176876,0.05342618376016617,135587.35091394305,136077.18833404646,677.9367545697153,241.7368824552894,4.0,73006414.0
|
| 258 |
+
145700.0,29839360000.0,39174.118535865,,,,,,1.3243776559829712,0.00014143050559078937,0.0007071525279539468,0.05594785884022713,135728.96397561536,136028.53238403593,678.6448198780769,241.98936249721706,4.0,73300869.0
|
| 259 |
+
145800.0,29859840000.0,39324.727787357,,,,,,1.3501462936401367,0.00013801248585581635,0.0006900624292790816,0.05490172654390335,135785.67059821077,136121.6157363288,678.9283529910539,242.09046397953367,4.0,73594984.0
|
| 260 |
+
145900.0,29880320000.0,39476.729589091,,,,,,1.321572184562683,0.00013460108379626193,0.0006730054189813096,0.05480736494064331,135981.1915842357,135981.61608267168,679.9059579211785,242.4390557419485,4.0,73888973.0
|
| 261 |
+
146000.0,29900800000.0,39628.786633647,1.340636134147644,1.3447198867797852,1.0,0.9921875,0.994535505771637,1.3487673997879028,0.00013119626112260076,0.0006559813056130039,0.05455007776618004,134889.77414663119,133402.68884779848,674.4488707331559,240.49318212582253,4.0,74182463.0
|
| 262 |
+
146100.0,29921280000.0,39779.432332158,,,,,,1.338017225265503,0.00012779797991312525,0.0006389898995656262,0.05409705638885498,135249.91733002348,136046.04549105564,676.2495866501174,241.13527661180473,4.0,74476955.0
|
| 263 |
+
146200.0,29941760000.0,39929.901404827,,,,,,1.3330495357513428,0.00012440620260901645,0.0006220310130450823,0.05231456458568573,135708.33563596904,135948.775655945,678.5416781798451,241.9525845051498,4.0,74770250.0
|
| 264 |
+
146300.0,29962240000.0,40080.445235517,,,,,,1.3073102235794067,0.00012102089200950239,0.0006051044600475119,0.053519245237112045,134939.31599226868,136108.396766654,674.6965799613433,240.58150962270744,4.0,75061985.0
|
| 265 |
+
146400.0,29982720000.0,40232.261846059,,,,,,1.3398020267486572,0.00011764201126709671,0.0005882100563354835,0.05452731251716614,134604.63218965012,136040.8402083101,673.0231609482506,239.98480632768815,4.0,75351766.0
|
| 266 |
+
146500.0,30003200000.0,40384.435208518,1.3399012088775635,1.343932867050171,1.0,0.99609375,0.994535505771637,1.3306061029434204,0.00011426952388291998,0.0005713476194145998,0.053550876677036285,135998.86691024213,133574.66159379308,679.9943345512106,242.47056884531966,4.0,75641604.0
|
| 267 |
+
146600.0,30023680000.0,40535.148862461,,,,,,1.3299477100372314,0.0001109033937020989,0.0005545169685104945,0.0520106703042984,135867.64953977845,135929.64506505564,679.3382476988922,242.23662314281825,4.0,75932877.0
|
| 268 |
+
146700.0,30044160000.0,40685.918710473,,,,,,1.3268814086914062,0.00010754358490924532,0.0005377179245462265,0.05486457422375679,135939.40050742656,135887.50796512116,679.6970025371328,242.36454698759792,4.0,76227363.0
|
| 269 |
+
146800.0,30064640000.0,40836.560521988,,,,,,1.343368411064148,0.00010419006202400876,0.0005209503101200437,0.05329090356826782,135715.32541038402,135836.95372934957,678.57662705192,241.965046480878,4.0,76524065.0
|
| 270 |
+
146900.0,30085120000.0,40988.703255177,,,,,,1.3199243545532227,0.00010084278989670652,0.0005042139494835326,0.05415557697415352,135716.78349089925,135952.12103985154,678.5839174544963,241.96764607321273,4.0,76819464.0
|
| 271 |
+
147000.0,30105600000.0,41140.754384619,1.3398020267486572,1.3436496257781982,1.0,0.99609375,0.994535505771637,1.3357287645339966,9.750173370402385e-05,0.0004875086685201192,0.05355449020862579,135093.8751053119,133282.33631992203,675.4693755265595,240.85707100723394,4.0,77114840.0
|
| 272 |
+
147100.0,30126080000.0,41291.147053535,,,,,,1.3385307788848877,9.416685894478808e-05,0.0004708342947239404,0.05480346083641052,135754.6187660459,136049.56783121836,678.7730938302295,242.03510208145497,4.0,77409522.0
|
| 273 |
+
147200.0,30146560000.0,41441.476815627,,,,,,1.3247504234313965,9.083813143581147e-05,0.0004541906571790573,0.05623173341155052,136616.34818698865,136177.4409561747,683.0817409349432,243.57146799121386,4.0,77703602.0
|
| 274 |
+
147300.0,30167040000.0,41591.957404356,,,,,,1.321532130241394,8.751551730780325e-05,0.0004375775865390162,0.055453117936849594,135034.17840115802,136234.42902961903,675.17089200579,240.75063854832283,4.0,77996318.0
|
| 275 |
+
147400.0,30187520000.0,41743.867879045,,,,,,1.3198034763336182,8.419898300134956e-05,0.0004209949150067478,0.05331610515713692,134726.15081162538,136097.94837640977,673.6307540581269,240.20146026065865,4.0,78288157.0
|
| 276 |
+
147500.0,30208000000.0,41896.000242297,1.338671088218689,1.3428070545196533,1.0,0.99609375,0.994535505771637,1.350115180015564,8.08884952629576e-05,0.000404442476314788,0.05739738792181015,134874.60949656373,133481.99879058174,674.3730474828187,240.46614527315066,4.0,78578818.0
|
| 277 |
+
147600.0,30228480000.0,42046.449751614,,,,,,1.3354007005691528,7.758402114116653e-05,0.00038792010570583264,0.05252396687865257,134785.89265814552,135978.04150978668,673.9294632907277,240.3079732032935,4.0,78869074.0
|
| 278 |
+
147700.0,30248960000.0,42197.100911604,,,,,,1.3350790739059448,7.428552798272048e-05,0.0003714276399136024,0.055131420493125916,135751.18612514331,136126.02493119115,678.7559306257166,242.02898207169898,4.0,79161359.0
|
| 279 |
+
147800.0,30269440000.0,42347.822847512,,,,,,1.3428324460983276,7.099298342880416e-05,0.00035496491714402076,0.05509261041879654,135019.68161833714,135943.7596099241,675.0984080916858,240.72479242727152,4.0,79458045.0
|
| 280 |
+
147900.0,30289920000.0,42499.929461153,,,,,,1.3348338603973389,6.770635541133844e-05,0.0003385317770566922,0.05376144498586655,134635.3922308361,135879.95835853412,673.1769611541805,240.0396479955161,4.0,79754750.0
|
| 281 |
+
148000.0,30310400000.0,42651.912765355,1.338258147239685,1.3424464464187622,1.0,0.99609375,0.994535505771637,1.3343431949615479,6.442561214933782e-05,0.00032212806074668907,0.054593559354543686,134391.89149188026,133306.82931291385,671.9594574594013,239.60551377050194,4.0,80050898.0
|
| 282 |
+
148100.0,30330880000.0,42802.487393058,,,,,,1.3220082521438599,6.115072214532315e-05,0.00030575361072661573,0.0548776350915432,135806.36539874098,136117.7458462165,679.0318269937048,242.12736046382577,4.0,80347315.0
|
| 283 |
+
148200.0,30351360000.0,42953.080963457,,,,,,1.3260817527770996,5.788165418179506e-05,0.0002894082709089753,0.05495264753699303,134908.5440634449,136013.05850575643,674.5427203172244,240.52664676056833,4.0,80643780.0
|
| 284 |
+
148300.0,30371840000.0,43103.77106593,,,,,,1.3300262689590454,5.461837731776107e-05,0.00027309188658880535,0.0560532808303833,135338.71318530515,135995.77048983332,676.6935659265258,241.2935895597756,4.0,80938682.0
|
| 285 |
+
148400.0,30392320000.0,43255.700570986,,,,,,1.336801290512085,5.1360860885319516e-05,0.00025680430442659755,0.05592304840683937,135457.20374463964,135908.68173296071,677.2860187231981,241.5048448001857,4.0,81232636.0
|
| 286 |
+
148500.0,30412800000.0,43407.764329405,1.3374621868133545,1.3418585062026978,1.0,0.99609375,0.994535505771637,1.3393479585647583,4.810907448629696e-05,0.00024054537243148482,0.05474770441651344,135642.268537102,133472.9085030263,678.21134268551,241.83479435433316,4.0,81524266.0
|
| 287 |
+
148600.0,30433280000.0,43558.092709962,,,,,,1.306864857673645,4.4862987988937466e-05,0.0002243149399446873,0.053348030894994736,135407.25961836302,136032.27613458686,677.0362980918151,241.41580008250608,4.0,81816160.0
|
| 288 |
+
148700.0,30453760000.0,43708.66279756,,,,,,1.3337675333023071,4.1622571524646845e-05,0.00020811285762323422,0.053175847977399826,135701.6895857876,136235.70533598211,678.5084479289379,241.9407353507805,4.0,82108815.0
|
| 289 |
+
148800.0,30474240000.0,43859.28599721,,,,,,1.336747646331787,3.838779548478472e-05,0.00019193897742392362,0.05388976261019707,135742.86269180937,136017.07751589615,678.7143134590468,242.0141423332432,4.0,82403423.0
|
| 290 |
+
148900.0,30494720000.0,44011.411721578,,,,,,1.3184096813201904,3.515863051750881e-05,0.00017579315258754402,0.05203952267765999,135767.96480690534,135969.06866598205,678.8398240345267,242.05889655998658,4.0,82701034.0
|
| 291 |
+
149000.0,30515200000.0,44163.528287146,1.3371350765228271,1.3415195941925049,1.0,0.99609375,0.994535505771637,1.3123903274536133,3.193504752466747e-05,0.00015967523762333734,0.05408240854740143,135328.88386219917,133299.3974174254,676.6444193109959,241.27606499049776,4.0,82997668.0
|
| 292 |
+
149100.0,30535680000.0,44314.145291108,,,,,,1.3258581161499023,2.8717017658740084e-05,0.00014358508829370042,0.0544726699590683,135604.62429497688,135987.69991861907,678.0231214748844,241.76767893632123,4.0,83293442.0
|
| 293 |
+
149200.0,30556160000.0,44464.669064037,,,,,,1.3237080574035645,2.550451231982599e-05,0.00012752256159912994,0.054722435772418976,135906.192559815,135974.6866709379,679.530962799075,242.3053409800003,4.0,83590067.0
|
| 294 |
+
149300.0,30576640000.0,44615.288489114,,,,,,1.3396674394607544,2.2297503152678234e-05,0.00011148751576339117,0.05343548581004143,135597.3462497498,136058.83340262697,677.986731248749,241.75470300640077,4.0,83886103.0
|
| 295 |
+
149400.0,30597120000.0,44767.313052848,,,,,,1.3350940942764282,1.90959620437835e-05,9.54798102189175e-05,0.05506402999162674,136020.01444451712,135972.45228427157,680.1000722225856,242.50827250257674,4.0,84181555.0
|
| 296 |
+
149500.0,30617600000.0,44919.249866092,1.3366494178771973,1.3406145572662354,1.0,0.99609375,0.994535505771637,1.3293936252593994,1.5899861118488014e-05,7.949930559244006e-05,0.05286592245101929,136515.60560071058,133398.62935886814,682.578028003553,243.39185537563296,4.0,84475075.0
|
| 297 |
+
149600.0,30638080000.0,45069.793127133,,,,,,1.3358840942382812,1.2709172738163532e-05,6.354586369081767e-05,0.05413902550935745,134237.75879056953,136138.49431691552,671.1887939528476,239.3307126297752,4.0,84767080.0
|
| 298 |
+
149700.0,30658560000.0,45220.263733845,,,,,,1.3498507738113403,9.523869497422066e-06,4.761934748711033e-05,0.05365990102291107,135918.88020977553,136041.23642407203,679.5944010488777,242.32796162216542,4.0,85059590.0
|
| 299 |
+
149800.0,30679040000.0,45371.035036264,,,,,,1.3287646770477295,6.343924221366659e-06,3.1719621106833295e-05,0.05331932380795479,134990.20947371333,136106.98050832425,674.9510473685666,240.67224693307452,4.0,85354174.0
|
| 300 |
+
149900.0,30699520000.0,45523.340193893,,,,,,1.3258198499679565,3.1693099628879563e-06,1.584654981443978e-05,0.05561791732907295,135665.2979265794,135835.62581285552,678.326489632897,241.87585314617172,4.0,85653661.0
|
| 301 |
+
150000.0,30720000000.0,,1.3363549709320068,1.3407398462295532,,,,,,,,,,,,,
|
training-curves/350m/anneal-T300000.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
training-curves/350m/trunk.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
training-curves/700m/anneal-T018750.csv
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step,tokens,wall_clock_s,train_loss,val_loss,valid_prob_mass,game_end_accuracy,game_end_top1_accuracy,batch_train_loss,lr,muon_lr,unclipped_grad_norm,tokens_per_second,avg_tokens_per_second,samples_per_second,t_flops,shard_idx,shard_sample_idx
|
| 2 |
+
15100.0,3092480000.0,807.186523379,,,,,,1.4277454614639282,0.001589731299247464,0.00794865649623732,0.039126720279455185,61416.9080962973,46256.159549954966,307.0845404814865,254.92600957939467,0.0,44434972.0
|
| 3 |
+
15200.0,3112960000.0,1140.386772623,,,,,,1.396044135093689,0.0014612137954158843,0.0073060689770794215,0.04330891743302345,61262.488956264664,61507.14630051568,306.31244478132334,254.2850548913228,0.0,44730448.0
|
| 4 |
+
15300.0,3133440000.0,1473.393984392,,,,,,1.3745834827423096,0.0013625988462982238,0.006812994231491119,0.03909790515899658,61344.32792028005,61464.70668416137,306.7216396014002,254.62474767578925,0.0,45026841.0
|
| 5 |
+
15400.0,3153920000.0,1821.971603829,,,,,,1.4019145965576172,0.0012794625984949282,0.00639731299247464,0.036147598177194595,61409.64586310306,61500.36414148874,307.0482293155153,254.89586589117872,0.0,45320863.0
|
| 6 |
+
15500.0,3174400000.0,2157.739150253,1.4107354879379272,1.4101969003677368,0.99609375,0.97265625,0.9756097197532654,1.400273323059082,0.0012062180938267897,0.006031090469133948,0.03701164573431015,63605.13536519844,58215.32294051649,318.0256768259922,264.0087860167747,0.0,45613530.0
|
| 7 |
+
15600.0,3194880000.0,2490.591760847,,,,,,1.4128060340881348,0.00114,0.005699999999999999,0.03676585108041763,58770.44446735681,61585.466280228575,293.85222233678405,243.94121022471214,0.0,45904449.0
|
| 8 |
+
15700.0,3215360000.0,2823.675797899,,,,,,1.403760552406311,0.001079106178201671,0.005395530891008355,0.037733014672994614,61431.631022938134,61528.86991298942,307.15815511469066,254.98712071400263,0.0,46195245.0
|
| 9 |
+
15800.0,3235840000.0,3156.729648954,,,,,,1.3980402946472168,0.0010224275908317687,0.005112137954158844,0.03566249832510948,61387.536048479225,61486.13995113186,306.93768024239614,254.8040936579403,0.0,46487897.0
|
| 10 |
+
15900.0,3256320000.0,3489.7543581,,,,,,1.4156150817871094,0.0009691938977423924,0.004845969488711962,0.036281198263168335,61353.61674110819,61491.70071478755,306.76808370554096,254.66330321531112,0.0,46783266.0
|
| 11 |
+
16000.0,3276800000.0,3826.2918633,1.401801586151123,1.4013347625732422,0.99609375,0.9765625,0.9756097197532654,1.3946808576583862,0.0009188442189607878,0.004594221094803939,0.03465510532259941,61352.98571328782,60886.64087934055,306.7649285664391,254.66068397886357,0.0,47079669.0
|
| 12 |
+
16100.0,3297280000.0,4159.410948688,,,,,,1.3813318014144897,0.0008709551354127783,0.004354775677063891,0.03532780706882477,61253.677598261376,61464.98200434375,306.2683879913069,254.24848117889766,0.0,47375099.0
|
| 13 |
+
16200.0,3317760000.0,4492.562422926,,,,,,1.3839428424835205,0.0008251976925964478,0.004125988462982239,0.037537284195423126,61308.22464303924,61479.70185415583,306.5411232151962,254.47489212810675,0.0,47670635.0
|
| 14 |
+
16300.0,3338240000.0,4825.817847384,,,,,,1.3720543384552002,0.0007813102902651393,0.003906551451325697,0.03812693804502487,61398.22032436663,61473.692323413,306.99110162183314,254.8484413775121,0.0,47965758.0
|
| 15 |
+
16400.0,3358720000.0,5158.627749042,,,,,,1.3743551969528198,0.0007390808239445205,0.0036954041197226027,0.03605586662888527,61357.92034638418,61454.547247270646,306.78960173192087,254.68116638937533,0.0,48260582.0
|
| 16 |
+
16500.0,3379200000.0,5494.926038139,1.3936554193496704,1.3946125507354736,0.99609375,0.984375,0.9878048300743103,1.3725050687789917,0.0006983344891360159,0.003491672445680079,0.035034097731113434,61155.935666598365,60923.596139881345,305.7796783329918,253.84277920887394,0.0,48554518.0
|
| 17 |
+
16600.0,3399680000.0,5827.913603335,,,,,,1.3857557773590088,0.0006589251969898564,0.0032946259849492817,0.03526737168431282,61268.108230402366,61511.147239172045,306.34054115201184,254.30837907316553,0.0,48846615.0
|
| 18 |
+
16700.0,3420160000.0,6160.917802082,,,,,,1.3751436471939087,0.0006207293744741368,0.003103646872370684,0.034980833530426025,61464.24247177149,61503.95870380547,307.32121235885745,255.12248256752764,0.0,49138019.0
|
| 19 |
+
16800.0,3440640000.0,6494.120531484,,,,,,1.3905826807022095,0.0005836413862476532,0.002918206931238266,0.03555093705654144,61309.88307852185,61500.895168454466,306.54941539260926,254.4817758731996,0.0,49431501.0
|
| 20 |
+
16900.0,3461120000.0,6826.985149014,,,,,,1.3629599809646606,0.0005475700880760339,0.0027378504403801694,0.03588498756289482,61384.34684378079,61464.23723815212,306.92173421890396,254.7908560780506,0.0,49727626.0
|
| 21 |
+
17000.0,3481600000.0,7163.415842509,1.386915922164917,1.3878791332244873,1.0,0.984375,0.9878048300743103,1.3727822303771973,0.0005124361876535793,0.0025621809382678964,0.03449195623397827,61398.30370705624,60916.07871022067,306.9915185352812,254.84878747791004,0.0,50024423.0
|
| 22 |
+
17100.0,3502080000.0,7496.723475201,,,,,,1.3823777437210083,0.00047817019302590216,0.002390850965129511,0.03478723764419556,61337.60842343866,61484.22397710652,306.6880421171933,254.59685674853074,0.0,50320849.0
|
| 23 |
+
17200.0,3522560000.0,7830.172963435,,,,,,1.3599541187286377,0.000444710796210366,0.00222355398105183,0.035375915467739105,61412.231793976476,61444.87754050314,307.0611589698824,254.90659943441693,0.0,50617300.0
|
| 24 |
+
17300.0,3543040000.0,8163.31840354,,,,,,1.3854405879974365,0.00041200358423370756,0.0020600179211685376,0.03587137162685394,61429.983566817915,61418.73595566611,307.1499178340896,254.9802825414586,0.0,50913883.0
|
| 25 |
+
17400.0,3563520000.0,8496.179853517,,,,,,1.3665094375610352,0.0003799999999999999,0.0018999999999999996,0.03556301072239876,61319.629840771915,61474.787561680176,306.5981492038596,254.52223221142543,0.0,51209119.0
|
| 26 |
+
17500.0,3584000000.0,8832.554813632,1.3816181421279907,1.3821696043014526,1.0,0.98828125,0.9878048300743103,1.3596665859222412,0.0003486564962373205,0.0017432824811866026,0.03609372675418854,61364.85909942419,60916.316867418536,306.82429549712094,254.70996739350883,0.0,51501133.0
|
| 27 |
+
17600.0,3604480000.0,9165.412505988,,,,,,1.3780807256698608,0.00031793384040573915,0.0015896692020286958,0.03565620630979538,61362.99604573556,61494.86529320831,306.8149802286778,254.70223433013598,0.0,51792266.0
|
| 28 |
+
17700.0,3624960000.0,9498.706442985,,,,,,1.392371416091919,0.00028779653889467166,0.0014389826944733583,0.0348159484565258,61274.70760542611,61527.94034914881,306.37353802713056,254.33577140522306,0.0,52084123.0
|
| 29 |
+
17800.0,3645440000.0,9832.060465256,,,,,,1.374119758605957,0.00025821235640334213,0.0012910617820167108,0.03545328974723816,61425.863116820656,61447.440021927476,307.12931558410327,254.96317959850634,0.0,52378213.0
|
| 30 |
+
17900.0,3665920000.0,10165.057253167,,,,,,1.377322793006897,0.00022915191195209696,0.0011457595597604848,0.03378031402826309,61382.987036085964,61436.34907926455,306.91493518042984,254.78521186116993,0.0,52674682.0
|
| 31 |
+
18000.0,3686400000.0,10501.849215881,1.3770164251327515,1.3773833513259888,1.0,0.984375,0.9878048300743103,1.3561598062515259,0.00020058833710015988,0.0010029416855007994,0.03529530391097069,61280.827501503845,60890.96753253152,306.40413750751924,254.36117354177628,0.0,52971497.0
|
| 32 |
+
18100.0,3706880000.0,10835.191328313,,,,,,1.3877462148666382,0.0001724969850484583,0.0008624849252422915,0.033808328211307526,61356.75016176806,61418.80042280595,306.7837508088403,254.67630924980412,0.0,53267574.0
|
| 33 |
+
18200.0,3727360000.0,11168.459020748,,,,,,1.3543846607208252,0.00014485518166353753,0.0007242759083176876,0.03376667574048042,61331.932603189794,61438.54370151132,306.659663015949,254.57329785812124,0.0,53564311.0
|
| 34 |
+
18300.0,3747840000.0,11501.930481473,,,,,,1.378430724143982,0.00011764201126709671,0.0005882100563354835,0.03444080427289009,61360.99284128205,61452.233353273776,306.80496420641026,254.6939195364817,0.0,53861334.0
|
| 35 |
+
18400.0,3768320000.0,11834.923914005,,,,,,1.3649595975875854,9.083813143581147e-05,0.0004541906571790573,0.03459416329860687,61286.62504471674,61414.69420649501,306.4331252235837,254.38523767333936,0.0,54156873.0
|
| 36 |
+
18500.0,3788800000.0,12171.183846365,1.374078631401062,1.3742892742156982,1.0,0.984375,0.9878048300743103,1.3728270530700684,6.442561214933782e-05,0.00032212806074668907,0.0341050960123539,61554.75004926567,60894.28313885618,307.77375024632835,255.4981565680995,0.0,54450079.0
|
| 37 |
+
18600.0,3809280000.0,12504.284839009,,,,,,1.3850562572479248,3.838779548478472e-05,0.00019193897742392362,0.03353361412882805,61380.84217157498,61514.21007799361,306.9042108578749,254.7763090725434,0.0,54741420.0
|
| 38 |
+
18700.0,3829760000.0,12670.64664232,,,,,,1.3740841150283813,1.2709172738163532e-05,6.354586369081767e-05,0.034201186150312424,61430.8665923102,61482.98665626083,307.154332961551,254.98394775633315,0.0,55033860.0
|
| 39 |
+
18750.0,3840000000.0,12676.293267948,1.3728559017181396,1.372852087020874,,,,,,,,,,,,,
|
training-curves/700m/anneal-T037500.csv
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step,tokens,wall_clock_s,train_loss,val_loss,valid_prob_mass,game_end_accuracy,game_end_top1_accuracy,batch_train_loss,lr,muon_lr,unclipped_grad_norm,tokens_per_second,avg_tokens_per_second,samples_per_second,t_flops,shard_idx,shard_sample_idx
|
| 2 |
+
30100.0,6164480000.0,702.755292876,,,,,,1.4025155305862427,0.0016806068977079421,0.00840303448853971,0.04242944344878197,61224.42652268054,59632.13758005023,306.1221326134027,254.12706738252035,1.0,10181815.0
|
| 3 |
+
30200.0,6184960000.0,1035.664747589,,,,,,1.3894751071929932,0.001589731299247464,0.00794865649623732,0.04000049829483032,61519.25787300309,61513.163651581366,307.5962893650154,255.3508375455964,1.0,10475972.0
|
| 4 |
+
30300.0,6205440000.0,1368.606040215,,,,,,1.416879653930664,0.00152,0.0076,0.039543405175209045,61401.279300749185,61518.361202088876,307.0063965037459,254.86113841268977,1.0,10770934.0
|
| 5 |
+
30400.0,6225920000.0,1711.493527714,,,,,,1.3801218271255493,0.0014612137954158843,0.0073060689770794215,0.046589236706495285,61486.002680065714,61512.493261385745,307.43001340032856,255.21280367355538,1.0,11065259.0
|
| 6 |
+
30500.0,6246400000.0,2047.288254497,1.3984103202819824,1.3971478939056396,0.99609375,0.9765625,0.9756097197532654,1.3770010471343994,0.001409422109480394,0.00704711054740197,0.0375700443983078,63364.56287339457,59170.283105791794,316.82281436697286,263.0102306148327,1.0,11357553.0
|
| 7 |
+
30600.0,6266880000.0,2379.85200995,,,,,,1.36976957321167,0.0013625988462982238,0.006812994231491119,0.03569117188453674,61480.26856274499,61582.67006822963,307.40134281372497,255.1890028067853,1.0,11649846.0
|
| 8 |
+
30700.0,6287360000.0,2712.836106061,,,,,,1.3819890022277832,0.0013195404119722602,0.006597702059861301,0.0367201529443264,61401.18713201449,61582.33183969042,307.00593566007245,254.86075584364696,1.0,11940414.0
|
| 9 |
+
30800.0,6307840000.0,3045.643626712,,,,,,1.4164159297943115,0.0012794625984949282,0.00639731299247464,0.03826550021767616,61377.42999668602,61504.58914186637,306.8871499834301,254.76214599994026,1.0,12231223.0
|
| 10 |
+
30900.0,6328320000.0,3378.389538613,,,,,,1.3994386196136475,0.0012418206931238266,0.006209103465619133,0.0411987230181694,61339.618861697956,61537.25642844585,306.6980943084898,254.60520156787828,1.0,12524049.0
|
| 11 |
+
31000.0,6348800000.0,3714.85754751,1.39126718044281,1.391666054725647,0.99609375,0.9765625,0.9756097197532654,1.3621110916137695,0.0012062180938267897,0.006031090469133948,0.03496171906590462,61295.655831762335,60936.578795871865,306.4782791588117,254.42272218006974,1.0,12819337.0
|
| 12 |
+
31100.0,6369280000.0,4047.998606617,,,,,,1.3797117471694946,0.001172355398105183,0.005861776990525915,0.0425906702876091,61348.564500507826,61478.37262270698,306.7428225025391,254.6423326458766,1.0,13115389.0
|
| 13 |
+
31200.0,6389760000.0,4381.010847908,,,,,,1.3820725679397583,0.00114,0.005699999999999999,0.038165125995874405,61325.820008846975,61475.596422063274,306.62910004423486,254.54792602921785,1.0,13410539.0
|
| 14 |
+
31300.0,6410240000.0,4713.982563035,,,,,,1.3970783948898315,0.0011089669202028697,0.005544834601014348,0.0398416630923748,61378.76762929171,61499.38418744345,306.89383814645856,254.7676981736498,1.0,13705171.0
|
| 15 |
+
31400.0,6430720000.0,5046.803359091,,,,,,1.3556931018829346,0.001079106178201671,0.005395530891008355,0.039437923580408096,61408.96539117344,61506.86056111963,307.0448269558672,254.8930414247732,1.0,14000540.0
|
| 16 |
+
31500.0,6451200000.0,5383.170960604,1.3857698440551758,1.3868566751480103,0.99609375,0.97265625,0.9756097197532654,1.3757123947143555,0.00105029416855008,0.0052514708427504,0.038550518453121185,61461.92921091655,60923.77463965575,307.30964605458274,255.11288080838435,1.0,14293940.0
|
| 17 |
+
31600.0,6471680000.0,5715.957877531,,,,,,1.3532612323760986,0.0010224275908317687,0.005112137954158844,0.035827212035655975,61336.0273216595,61496.172564694345,306.6801366082975,254.59029399602835,1.0,14587123.0
|
| 18 |
+
31700.0,6492160000.0,6048.805045851,,,,,,1.3669768571853638,0.000995419065717906,0.004977095328589529,0.03789806738495827,61361.4574678641,61541.06323248393,306.8072873393205,254.69584808358994,1.0,14877959.0
|
| 19 |
+
31800.0,6512640000.0,6381.506114516,,,,,,1.3677146434783936,0.0009691938977423924,0.004845969488711962,0.035793039947748184,61425.9948923789,61529.89016499327,307.1299744618945,254.96372656542906,1.0,15169134.0
|
| 20 |
+
31900.0,6533120000.0,6714.163981119,,,,,,1.3825596570968628,0.0009436876381990383,0.004718438190995192,0.036553289741277695,61410.30000840019,61556.92437731157,307.05150004200095,254.89858108240946,1.0,15461291.0
|
| 21 |
+
32000.0,6553600000.0,7050.471417977,1.3814871311187744,1.3816736936569214,0.99609375,0.98046875,0.9878048300743103,1.367976427078247,0.0009188442189607878,0.004594221094803939,0.036234237253665924,61386.02256064274,60953.44212275352,306.9301128032137,254.7978115537664,1.0,15755301.0
|
| 22 |
+
32100.0,6574080000.0,7383.490933466,,,,,,1.3540806770324707,0.0008946145017954555,0.004473072508977278,0.038933273404836655,61456.5996984955,61507.13766839886,307.2829984924775,255.090759353941,1.0,16052854.0
|
| 23 |
+
32200.0,6594560000.0,7716.473641422,,,,,,1.3490463495254517,0.0008709551354127783,0.004354775677063891,0.03643297776579857,61432.31639071022,61498.05982847006,307.1615819535511,254.98996550180857,1.0,16348514.0
|
| 24 |
+
32300.0,6615040000.0,8049.533218487,,,,,,1.3686023950576782,0.0008478276440303772,0.004239138220151885,0.03744066134095192,61221.90001724774,61504.84927399467,306.1095000862387,254.1165804992153,1.0,16644032.0
|
| 25 |
+
32400.0,6635520000.0,8382.299349966,,,,,,1.366722822189331,0.0008251976925964478,0.004125988462982239,0.03637596592307091,61305.236185038164,61490.6646059134,306.52618092519083,254.46248779684646,1.0,16940024.0
|
| 26 |
+
32500.0,6656000000.0,8718.48001648,1.37772798538208,1.3791913986206055,1.0,0.984375,0.9878048300743103,1.353551983833313,0.0008030344885397111,0.004015172442698556,0.03682013973593712,61324.72547517029,60933.19668634809,306.62362737585147,254.5433828975104,1.0,17235770.0
|
| 27 |
+
32600.0,6676480000.0,9051.462792359,,,,,,1.3591476678848267,0.0007813102902651393,0.003906551451325697,0.037867579609155655,61304.19488744814,61531.164987650685,306.5209744372407,254.45816563463347,1.0,17529809.0
|
| 28 |
+
32700.0,6696960000.0,9384.153879673,,,,,,1.3609411716461182,0.00076,0.0038,0.038854364305734634,61360.87887734595,61504.837207549666,306.80439438672977,254.6934465010853,1.0,17822603.0
|
| 29 |
+
32800.0,6717440000.0,9716.837450548,,,,,,1.3569337129592896,0.0007390808239445205,0.0036954041197226027,0.03674813359975815,61485.65059292589,61558.75727184213,307.42825296462945,255.21134224913072,1.0,18113695.0
|
| 30 |
+
32900.0,6737920000.0,10049.44479015,,,,,,1.3792839050292969,0.00071853198660875,0.00359265993304375,0.03798640891909599,61408.464924668966,61560.162598726776,307.0423246233448,254.8909641152363,1.0,18405699.0
|
| 31 |
+
33000.0,6758400000.0,10385.562225279,1.3742811679840088,1.3749135732650757,1.0,0.9765625,0.9878048300743103,1.3867859840393066,0.0006983344891360159,0.003491672445680079,0.03780315816402435,61554.494214550075,60964.26194098277,307.77247107275036,255.49709466307723,1.0,18700052.0
|
| 32 |
+
33100.0,6778880000.0,10718.643167602,,,,,,1.3164215087890625,0.000678470903607559,0.003392354518037795,0.037000950425863266,61378.97376146792,61540.563035459585,306.8948688073396,254.7685537760361,1.0,18997266.0
|
| 33 |
+
33200.0,6799360000.0,11051.664524884,,,,,,1.3432360887527466,0.0006589251969898564,0.0032946259849492817,0.036223892122507095,61351.5703300404,61486.688601404574,306.757851650202,254.65480908195855,1.0,19293233.0
|
| 34 |
+
33300.0,6819840000.0,11384.649009172,,,,,,1.3604891300201416,0.0006396825796649481,0.0031984128983247404,0.03746788948774338,61363.16700359516,61497.68994804757,306.8158350179758,254.7029439328546,1.0,19588123.0
|
| 35 |
+
33400.0,6840320000.0,11717.363409886,,,,,,1.3568568229675293,0.0006207293744741368,0.003103646872370684,0.036184292286634445,61323.57406791206,61504.50067014067,306.6178703395603,254.5386036979896,1.0,19883437.0
|
| 36 |
+
33500.0,6860800000.0,12053.625168226,1.371609091758728,1.3719209432601929,1.0,0.9765625,0.9756097197532654,1.3767015933990479,0.000602052902978451,0.0030102645148922546,0.037519171833992004,61212.075246246866,60941.45769516756,306.06037623123433,254.07580036644862,1.0,20178399.0
|
| 37 |
+
33600.0,6881280000.0,12386.351768035,,,,,,1.346009373664856,0.0005836413862476532,0.002918206931238266,0.03639346733689308,61433.23023819539,61517.32798340773,307.16615119097696,254.99375865095888,1.0,20472143.0
|
| 38 |
+
33700.0,6901760000.0,12719.187733115,,,,,,1.355098009109497,0.0005654838579719865,0.0028274192898599323,0.03690721467137337,61326.108972256545,61552.180815423686,306.6305448612827,254.54912544304705,1.0,20764175.0
|
| 39 |
+
33800.0,6922240000.0,13051.915615069,,,,,,1.3673046827316284,0.0005475700880760339,0.0027378504403801694,0.037903495132923126,61332.27855290992,61531.94284758744,306.6613927645496,254.57473380767323,1.0,21054442.0
|
| 40 |
+
33900.0,6942720000.0,13384.520027728,,,,,,1.354465126991272,0.000529890515323684,0.0026494525766184197,0.035928696393966675,61525.131467099774,61551.95446459792,307.6256573354989,255.37521734509087,1.0,21345994.0
|
| 41 |
+
34000.0,6963200000.0,13720.728525738,1.367455005645752,1.3679821491241455,1.0,0.9765625,0.9756097197532654,1.3599762916564941,0.0005124361876535793,0.0025621809382678964,0.035640716552734375,61372.145821614606,60963.00072240783,306.86072910807303,254.7402127293373,1.0,21639276.0
|
| 42 |
+
34100.0,6983680000.0,14053.711669275,,,,,,1.3548929691314697,0.0004951987091881406,0.002475993545940703,0.036287397146224976,61417.88296450864,61525.554030175765,307.0894148225432,254.9300560101038,1.0,21934979.0
|
| 43 |
+
34200.0,7004160000.0,14386.792490114,,,,,,1.3413567543029785,0.00047817019302590216,0.002390850965129511,0.03763232380151749,61297.90847660194,61504.78854547462,306.4895423830097,254.43207233750616,1.0,22230856.0
|
| 44 |
+
34300.0,7024640000.0,14719.849627203,,,,,,1.3373688459396362,0.00046134321906393075,0.0023067160953196535,0.034564826637506485,61171.24812657175,61486.73983156246,305.85624063285877,253.90633734683394,1.0,22526440.0
|
| 45 |
+
34400.0,7045120000.0,15052.587158476,,,,,,1.3587638139724731,0.000444710796210366,0.00222355398105183,0.03518578037619591,61296.7755723853,61491.100649517335,306.4838778619265,254.42736993941847,1.0,22822159.0
|
| 46 |
+
34500.0,7065600000.0,15388.803449136,1.3655763864517212,1.3656084537506104,1.0,0.9765625,0.9756097197532654,1.3794246912002563,0.00042826632844118154,0.0021413316422059076,0.035868506878614426,61415.25703874968,60939.27271805328,307.0762851937484,254.91915645823883,1.0,23118082.0
|
| 47 |
+
34600.0,7086080000.0,15721.441748619,,,,,,1.3613108396530151,0.00041200358423370756,0.0020600179211685376,0.035793885588645935,61349.93592846729,61523.706235364734,306.74967964233645,254.6480250955288,1.0,23412148.0
|
| 48 |
+
34700.0,7106560000.0,16054.306592279,,,,,,1.345017433166504,0.0003959166689751971,0.0019795833448759854,0.03767748177051544,61404.9487189715,61568.53487668711,307.0247435948575,254.8763692371303,1.0,23705462.0
|
| 49 |
+
34800.0,7127040000.0,16387.100911971,,,,,,1.351244568824768,0.0003799999999999999,0.0018999999999999996,0.03728344663977623,61270.76529123807,61526.63146228783,306.35382645619035,254.31940785883793,1.0,23998158.0
|
| 50 |
+
34900.0,7147520000.0,16719.449128803,,,,,,1.3728221654891968,0.0003642482839555954,0.0018212414197779768,0.038662396371364594,61332.173453848045,61539.660761433945,306.6608672692402,254.57429756812152,1.0,24289845.0
|
| 51 |
+
35000.0,7168000000.0,17059.825755194,1.3620622158050537,1.3623052835464478,1.0,0.984375,0.9878048300743103,1.3674379587173462,0.0003486564962373205,0.0017432824811866026,0.03764722868800163,61494.14141784378,61010.74282782858,307.4707070892189,255.24658551000866,1.0,24583073.0
|
| 52 |
+
35100.0,7188480000.0,17392.837026123,,,,,,1.3390110731124878,0.00033321986226528895,0.0016660993113264445,0.03651900216937065,61412.69719685007,60763.49340678679,307.06348598425035,254.9085312037145,1.0,24879333.0
|
| 53 |
+
35200.0,7208960000.0,17725.757641971,,,,,,1.353613018989563,0.00031793384040573915,0.0015896692020286958,0.03629389777779579,61294.8641648372,61499.60420765625,306.474320824186,254.41943617143798,1.0,25174753.0
|
| 54 |
+
35300.0,7229440000.0,18058.644186452,,,,,,1.361343264579773,0.00030279410636365785,0.0015139705318182892,0.035461798310279846,61407.038200901625,61516.30955770044,307.03519100450814,254.8850421467092,1.0,25468992.0
|
| 55 |
+
35400.0,7249920000.0,18391.282100107,,,,,,1.3441901206970215,0.00028779653889467166,0.0014389826944733583,0.03606446832418442,61364.91608873191,61522.62881757318,306.82458044365956,254.71020394167215,1.0,25763284.0
|
| 56 |
+
35500.0,7270400000.0,18727.483277752,1.3599036931991577,1.3607345819473267,1.0,0.984375,0.9878048300743103,1.3682501316070557,0.0002729372067024171,0.0013646860335120856,0.03553318232297897,61321.18820950903,60956.407410733664,306.6059410475452,254.52870060483568,1.0,26057523.0
|
| 57 |
+
35600.0,7290880000.0,19060.271241776,,,,,,1.3466365337371826,0.00025821235640334213,0.0012910617820167108,0.03604838624596596,61380.97814013076,61527.41590631274,306.9048907006538,254.77687344353552,1.0,26350987.0
|
| 58 |
+
35700.0,7311360000.0,19392.901735117,,,,,,1.342312216758728,0.00024361840145454414,0.0012180920072727207,0.03679582104086876,61352.70526064528,61540.82091477873,306.7635263032264,254.65951989106992,1.0,26642525.0
|
| 59 |
+
35800.0,7331840000.0,19725.450289757,,,,,,1.334228277206421,0.00022915191195209696,0.0011457595597604848,0.03721906989812851,61517.213614242595,61569.97052700479,307.586068071213,255.3423523459256,1.0,26932003.0
|
| 60 |
+
35900.0,7352320000.0,20058.149890351,,,,,,1.3558623790740967,0.00021480960521765772,0.0010740480260882886,0.03631192818284035,61500.60464361023,61585.17945945383,307.50302321805117,255.273412721028,1.0,27223192.0
|
| 61 |
+
36000.0,7372800000.0,20394.43811803,1.3571432828903198,1.3579200506210327,1.0,0.984375,0.9878048300743103,1.3605258464813232,0.00020058833710015988,0.0010029416855007994,0.036526743322610855,61523.10003725076,60947.21545966684,307.6155001862538,255.36678539497808,1.0,27517290.0
|
| 62 |
+
36100.0,7393280000.0,20727.354531212,,,,,,1.3381776809692383,0.0001864850939273002,0.000932425469636501,0.03647176921367645,61286.74310563482,61509.28273585222,306.4337155281741,254.3857277142689,1.0,27811968.0
|
| 63 |
+
36200.0,7413760000.0,21060.267323747,,,,,,1.3524694442749023,0.0001724969850484583,0.0008624849252422915,0.036541882902383804,61264.8047064281,61517.08453091143,306.3240235321405,254.2946669829543,1.0,28105755.0
|
| 64 |
+
36300.0,7434240000.0,21392.943149464,,,,,,1.3492428064346313,0.00015862123591678083,0.0007931061795839041,0.03494220972061157,61368.870528415006,61517.78502375432,306.844352642075,254.7266178179121,1.0,28398783.0
|
| 65 |
+
36400.0,7454720000.0,21725.577623757,,,,,,1.3389739990234375,0.00014485518166353753,0.0007242759083176876,0.036916784942150116,61236.28512059577,61561.59662327413,306.18142560297883,254.1762894150101,1.0,28691394.0
|
| 66 |
+
36500.0,7475200000.0,22061.747218287,1.3553553819656372,1.3563029766082764,1.0,0.984375,0.9878048300743103,1.3317385911941528,0.00013119626112260076,0.0006559813056130039,0.0363399013876915,61458.12985994237,60958.39605194598,307.29064929971184,255.09711066604308,1.0,28984162.0
|
| 67 |
+
36600.0,7495680000.0,22394.634691128,,,,,,1.360632061958313,0.00011764201126709671,0.0005882100563354835,0.03695056214928627,61447.433516446654,61531.87298572286,307.23716758223327,255.05271285688966,1.0,29278314.0
|
| 68 |
+
36700.0,7516160000.0,22727.326126477,,,,,,1.3466838598251343,0.00010419006202400876,0.0005209503101200437,0.03718385845422745,61313.147701785136,61522.41559458344,306.5657385089257,254.49532649642512,1.0,29570590.0
|
| 69 |
+
36800.0,7536640000.0,23059.943539981,,,,,,1.3224684000015259,9.083813143581147e-05,0.0004541906571790573,0.0358460359275341,61356.4915876681,61558.686157963435,306.7824579383405,254.6752359742921,1.0,29859585.0
|
| 70 |
+
36900.0,7557120000.0,23392.430640759,,,,,,1.328975796699524,7.758402114116653e-05,0.00038792010570583264,0.03593365103006363,61406.783592554384,61572.393570450746,307.0339179627719,254.88398533203093,1.0,30148933.0
|
| 71 |
+
37000.0,7577600000.0,23728.822855484,1.3538533449172974,1.3544840812683105,1.0,0.984375,0.9878048300743103,1.3662797212600708,6.442561214933782e-05,0.00032212806074668907,0.035586047917604446,61580.366337865154,60986.33396605066,307.9018316893258,255.6044832855347,1.0,30441161.0
|
| 72 |
+
37100.0,7598080000.0,24061.953685139,,,,,,1.3297147750854492,5.1360860885319516e-05,0.00025680430442659755,0.035374436527490616,61406.96357409836,61489.552339772556,307.0348178704918,254.8847323897749,1.0,30741022.0
|
| 73 |
+
37200.0,7618560000.0,24394.971034117,,,,,,1.3306397199630737,3.838779548478472e-05,0.00019193897742392362,0.03550119698047638,61389.453240212184,61477.49399482872,306.9472662010609,254.81205143460525,1.0,31037085.0
|
| 74 |
+
37300.0,7639040000.0,24727.876037513,,,,,,1.356460690498352,2.550451231982599e-05,0.00012752256159912994,0.03621616214513779,61295.227191883,61498.434644583205,306.476135959415,254.42094300463788,1.0,31331846.0
|
| 75 |
+
37400.0,7659520000.0,25060.635757302,,,,,,1.3410778045654297,1.2709172738163532e-05,6.354586369081767e-05,0.0356302484869957,61342.124428912255,61519.21284497829,306.7106221445613,254.6156015419485,1.0,31625912.0
|
| 76 |
+
37500.0,7680000000.0,25067.556832442,1.3527809381484985,1.353476881980896,,,,,,,,,,,,,
|
training-curves/700m/anneal-T075000.csv
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step,tokens,wall_clock_s,train_loss,val_loss,valid_prob_mass,game_end_accuracy,game_end_top1_accuracy,batch_train_loss,lr,muon_lr,unclipped_grad_norm,tokens_per_second,avg_tokens_per_second,samples_per_second,t_flops,shard_idx,shard_sample_idx
|
| 2 |
+
60100.0,12308480000.0,701.938201104,,,,,,1.3992133140563965,0.0017448656496237322,0.008724328248118661,0.04271775856614113,61478.759299091005,59563.67481423853,307.39379649545504,255.18273823612162,2.0,5744549.0
|
| 3 |
+
60200.0,12328960000.0,1034.834266588,,,,,,1.4041748046875,0.0016806068977079421,0.00840303448853971,0.05274907499551773,61440.38379145988,61539.57492222938,307.20191895729937,255.0234512363487,2.0,6036207.0
|
| 4 |
+
60300.0,12349440000.0,1367.969643092,,,,,,1.3876873254776,0.001631299423149112,0.00815649711574556,0.04634180665016174,61387.81243257741,61520.88218631702,306.93906216288707,254.8052408582382,2.0,6330246.0
|
| 5 |
+
60400.0,12369920000.0,1709.831057865,,,,,,1.3688617944717407,0.001589731299247464,0.00794865649623732,0.04650827497243881,61356.425848837614,61476.66858533781,306.78212924418807,254.67496310907876,2.0,6626557.0
|
| 6 |
+
60500.0,12390400000.0,2045.961784357,1.3885021209716797,1.388358235359192,0.99609375,0.9765625,0.9756097197532654,1.3766093254089355,0.0015531090469133948,0.007765545234566974,0.04350001737475395,62481.9669560256,59338.38431447402,312.409834780128,259.3467987967875,2.0,6922999.0
|
| 7 |
+
60600.0,12410880000.0,2379.101107006,,,,,,1.3700248003005981,0.00152,0.0076,0.046765416860580444,61250.62457573458,61528.96978151328,306.2531228786729,254.2358088566653,2.0,7219296.0
|
| 8 |
+
60700.0,12431360000.0,2712.173308133,,,,,,1.370972752571106,0.0014895530891008354,0.007447765445504177,0.04399079829454422,61311.038347812675,61475.95582951718,306.5551917390634,254.48657110303824,2.0,7515849.0
|
| 9 |
+
60800.0,12451840000.0,3045.109418213,,,,,,1.3878823518753052,0.0014612137954158843,0.0073060689770794215,0.0455080084502697,61386.24628892661,61488.330561640425,306.93123144463306,254.79874019313306,2.0,7811766.0
|
| 10 |
+
60900.0,12472320000.0,3377.659843279,,,,,,1.3765064477920532,0.0014345969488711962,0.007172984744355982,0.044829338788986206,61410.30878896877,61513.48116588163,307.05154394484384,254.89861752832277,2.0,8106448.0
|
| 11 |
+
61000.0,12492800000.0,3713.913604861,1.384168267250061,1.3838541507720947,0.99609375,0.984375,0.9999999403953552,1.332573652267456,0.001409422109480394,0.00704711054740197,0.045737605541944504,61674.54184046419,60975.794364625,308.37270920232095,255.99538191299516,2.0,8397960.0
|
| 12 |
+
61100.0,12513280000.0,4046.691475532,,,,,,1.3649475574493408,0.001385477567706389,0.006927387838531945,0.043570589274168015,61388.16340009829,61514.171665079084,306.94081700049145,254.80669763540854,2.0,8689041.0
|
| 13 |
+
61200.0,12533760000.0,4379.5761041,,,,,,1.3895646333694458,0.0013625988462982238,0.006812994231491119,0.04371463507413864,61535.608019060564,61542.729923844,307.67804009530283,255.41870285532409,2.0,8981699.0
|
| 14 |
+
61300.0,12554240000.0,4712.464658,,,,,,1.3700940608978271,0.0013406551451325696,0.006703275725662847,0.042923279106616974,61381.763260669824,61522.95533053354,306.9088163033491,254.7801322797789,2.0,9275489.0
|
| 15 |
+
61400.0,12574720000.0,5045.183725158,,,,,,1.3657485246658325,0.0013195404119722602,0.006597702059861301,0.0453815832734108,61366.67404167779,61522.22035077381,306.83337020838894,254.71750075851642,2.0,9572094.0
|
| 16 |
+
61500.0,12595200000.0,5381.525307265,1.381035566329956,1.3800245523452759,0.99609375,0.984375,0.9878048300743103,1.3778598308563232,0.0012991672445680077,0.006495836222840039,0.041615959256887436,61406.559714545256,60942.547799615524,307.0327985727263,254.8830560711927,2.0,9868625.0
|
| 17 |
+
61600.0,12615680000.0,5714.53403018,,,,,,1.3691372871398926,0.0012794625984949282,0.00639731299247464,0.04606008902192116,61185.79683781701,61500.610676001794,305.92898418908504,253.9667253575176,2.0,10164760.0
|
| 18 |
+
61700.0,12636160000.0,6047.462439564,,,,,,1.3679815530776978,0.0012603646872370686,0.006301823436185342,0.049566514790058136,60281.43568876241,61500.02791721593,301.40717844381203,250.2129515826208,2.0,10460126.0
|
| 19 |
+
61800.0,12656640000.0,6380.542405696,,,,,,1.368027925491333,0.0012418206931238266,0.006209103465619133,0.0443323478102684,61443.60519200271,61514.8789637739,307.21802596001356,255.03682245302335,2.0,10755783.0
|
| 20 |
+
61900.0,12677120000.0,6713.282705667,,,,,,1.3720104694366455,0.001223785044038017,0.006118925220190085,0.039737846702337265,61344.67400984908,61486.87860234161,306.7233700492454,254.6261842058186,2.0,11050772.0
|
| 21 |
+
62000.0,12697600000.0,7049.413100069,1.378481388092041,1.377845048904419,0.99609375,0.98828125,0.9878048300743103,1.3602503538131714,0.0012062180938267897,0.006031090469133948,0.040556296706199646,61391.39687717668,60938.559053624325,306.9569843858834,254.82011897871953,2.0,11344615.0
|
| 22 |
+
62100.0,12718080000.0,7382.142421915,,,,,,1.3643226623535156,0.001189085096512951,0.0059454254825647545,0.04028163477778435,61321.275760664445,61539.787867383144,306.60637880332223,254.52906400747796,2.0,11637606.0
|
| 23 |
+
62200.0,12738560000.0,7714.729779742,,,,,,1.3977298736572266,0.001172355398105183,0.005861776990525915,0.04145697131752968,61382.07029651124,61551.68718575855,306.9103514825562,254.78140670768937,2.0,11930006.0
|
| 24 |
+
62300.0,12759040000.0,8047.5278871,,,,,,1.3752437829971313,0.0011560017921168537,0.005780008960584269,0.04285939782857895,61402.21417069531,61577.95745475268,307.01107085347655,254.86501882074398,2.0,12224459.0
|
| 25 |
+
62400.0,12779520000.0,8380.141027093,,,,,,1.3781038522720337,0.00114,0.005699999999999999,0.049487631767988205,61360.93147603309,61538.97154154298,306.80465738016545,254.69366482489608,2.0,12519373.0
|
| 26 |
+
62500.0,12800000000.0,8716.332211388,1.3757832050323486,1.3755085468292236,0.99609375,0.99609375,0.9999999403953552,1.3736374378204346,0.0011243282481186603,0.0056216412405933015,0.046369001269340515,61250.60710580906,60960.231070528906,306.2530355290453,254.235736343435,2.0,12813324.0
|
| 27 |
+
62600.0,12820480000.0,9048.899633293,,,,,,1.3676586151123047,0.0011089669202028697,0.005544834601014348,0.04314978048205376,61389.4356910034,61529.97099680717,306.94717845501697,254.81197859229022,2.0,13107591.0
|
| 28 |
+
62700.0,12840960000.0,9381.777988975,,,,,,1.3641889095306396,0.0010938982694473358,0.005469491347236679,0.03901254013180733,61536.46322537912,61581.63782278479,307.6823161268956,255.42225259986375,2.0,13401546.0
|
| 29 |
+
62800.0,12861440000.0,9714.714770031,,,,,,1.3713945150375366,0.001079106178201671,0.005395530891008355,0.04308624938130379,61422.226334547464,61524.1403240901,307.1111316727373,254.94808423761387,2.0,13695944.0
|
| 30 |
+
62900.0,12881920000.0,10046.972510077,,,,,,1.3501503467559814,0.0010645759559760484,0.005322879779880242,0.040190909057855606,61529.42831706134,61513.32187971861,307.6471415853067,255.39305247955815,2.0,13989754.0
|
| 31 |
+
63000.0,12902400000.0,10382.865127861,1.3725416660308838,1.3727703094482422,1.0,0.9765625,0.9756097197532654,1.3498634099960327,0.00105029416855008,0.0052514708427504,0.04180944710969925,61350.00165339156,61025.759292754396,306.7500082669578,254.648297903021,2.0,14281533.0
|
| 32 |
+
63100.0,12922880000.0,10715.543634109,,,,,,1.3651182651519775,0.0010362484925242293,0.005181242462621146,0.04012247920036316,61565.15726720578,61584.19843426955,307.8257863360289,255.54135429039667,2.0,14573228.0
|
| 33 |
+
63200.0,12943360000.0,11048.265562657,,,,,,1.3931108713150024,0.0010224275908317687,0.005112137954158844,0.04290196672081947,61385.53562825036,61561.06300339385,306.9276781412518,254.79579042089642,2.0,14865708.0
|
| 34 |
+
63300.0,12963840000.0,11381.036299933,,,,,,1.3609108924865723,0.0010088210056335483,0.005044105028167742,0.0403648242354393,61337.84493874666,61553.04129013749,306.6892246937333,254.59783846359167,2.0,15159837.0
|
| 35 |
+
63400.0,12984320000.0,11713.584580632,,,,,,1.3617393970489502,0.000995419065717906,0.004977095328589529,0.04503634572029114,61446.82693036784,61544.005278610064,307.2341346518392,255.05019507191267,2.0,15455345.0
|
| 36 |
+
63500.0,13004800000.0,12049.630695949,1.3701813220977783,1.3701084852218628,1.0,0.984375,0.9878048300743103,1.3385393619537354,0.000982212806074669,0.004911064030373344,0.03989875316619873,61282.62873231173,60972.30355532806,306.41314366155865,254.36864999405006,2.0,15749345.0
|
| 37 |
+
63600.0,13025280000.0,12382.284244868,,,,,,1.3533746004104614,0.0009691938977423924,0.004845969488711962,0.03829147666692734,61434.0254833711,61556.45930027799,307.1701274168555,254.9970595120013,2.0,16042364.0
|
| 38 |
+
63700.0,13045760000.0,12714.867564097,,,,,,1.3769612312316895,0.0009563545863690816,0.004781772931845408,0.0443032942712307,61314.54380632737,61565.71884526948,306.57271903163684,254.50112137231417,2.0,16335491.0
|
| 39 |
+
63800.0,13066240000.0,13047.513810412,,,,,,1.3349322080612183,0.0009436876381990383,0.004718438190995192,0.04770800471305847,61321.07439338075,61578.7084226499,306.60537196690376,254.52822818295203,2.0,16628737.0
|
| 40 |
+
63900.0,13086720000.0,13379.78955794,,,,,,1.3631460666656494,0.0009311862924173708,0.004655931462086854,0.043097373098134995,61361.57581726884,61567.05335681576,306.8078790863442,254.69633932195444,2.0,16921540.0
|
| 41 |
+
64000.0,13107200000.0,13715.630352676,1.3678486347198486,1.3683661222457886,1.0,0.98828125,0.9878048300743103,1.3837292194366455,0.0009188442189607878,0.004594221094803939,0.045257702469825745,61393.37135224826,61022.9209903316,306.9668567612413,254.82831452399546,2.0,17211716.0
|
| 42 |
+
64100.0,13127680000.0,14048.060600424,,,,,,1.3543086051940918,0.0009066554810473189,0.004533277405236595,0.04475584998726845,61358.1526355313,61593.36178834468,306.7907631776565,254.6821305627143,2.0,17501722.0
|
| 43 |
+
64200.0,13148160000.0,14380.680146478,,,,,,1.374718427658081,0.0008946145017954555,0.004473072508977278,0.04047083109617233,61481.63708451714,61607.04660654178,307.4081854225857,255.19468319359098,2.0,17791793.0
|
| 44 |
+
64300.0,13168640000.0,14713.522067845,,,,,,1.3616139888763428,0.000882716034400096,0.00441358017200048,0.04462685436010361,61445.912678326844,61572.00174323921,307.2295633916342,255.0464002435537,2.0,18084215.0
|
| 45 |
+
64400.0,13189120000.0,15046.076885911,,,,,,1.3788257837295532,0.0008709551354127783,0.004354775677063891,0.0409511961042881,61373.4086786376,61530.88074398888,306.867043393188,254.74545452856682,2.0,18380621.0
|
| 46 |
+
64500.0,13209600000.0,15382.21433727,1.3659484386444092,1.3660361766815186,1.0,0.984375,0.9878048300743103,1.3365387916564941,0.0008593271407401845,0.004296635703700922,0.04311279579997063,61437.67684565837,60972.6515622564,307.18838422829185,255.01221539083457,2.0,18676918.0
|
| 47 |
+
64600.0,13230080000.0,15714.972615923,,,,,,1.3564422130584717,0.0008478276440303772,0.004239138220151885,0.041628941893577576,61376.70638367622,61538.02994566643,306.8835319183811,254.7591424658519,2.0,18972173.0
|
| 48 |
+
64700.0,13250560000.0,16047.867315495,,,,,,1.3530352115631104,0.0008364524771627112,0.0041822623858135555,0.040850088000297546,61356.21986808098,61546.31409444338,306.7810993404049,254.67410813519672,2.0,19267609.0
|
| 49 |
+
64800.0,13271040000.0,16380.675030399,,,,,,1.3492354154586792,0.0008251976925964478,0.004125988462982239,0.04181836545467377,61561.058370934355,61521.12126272887,307.8052918546718,255.52434081149417,2.0,19562819.0
|
| 50 |
+
64900.0,13291520000.0,16712.937879956,,,,,,1.3251144886016846,0.0008140595473661244,0.004070297736830622,0.04176659137010574,61437.03529931436,61537.18443846147,307.1851764965718,255.009552494663,2.0,19856338.0
|
| 51 |
+
65000.0,13312000000.0,17052.916186263,1.365078330039978,1.3643341064453125,1.0,0.98828125,0.9878048300743103,1.3086183071136475,0.0008030344885397111,0.004015172442698556,0.03913366422057152,61361.75991725029,61024.92958113518,306.80879958625144,254.69710347428787,2.0,20149400.0
|
| 52 |
+
65100.0,13332480000.0,17385.751712019,,,,,,1.3473567962646484,0.0007921191399793929,0.003960595699896964,0.045820143073797226,61503.18062647946,60836.66134478043,307.5159031323973,255.2841049726237,2.0,20440875.0
|
| 53 |
+
65200.0,13352960000.0,17718.58172754,,,,,,1.3632892370224,0.0007813102902651393,0.003906551451325697,0.039490263909101486,61301.28556696984,61532.022891407716,306.5064278348492,254.4460897831602,2.0,20732063.0
|
| 54 |
+
65300.0,13373440000.0,18051.354612774,,,,,,1.3623576164245605,0.0007706048816586228,0.0038530244082931138,0.04227060452103615,61285.89482618253,61533.05911624714,306.42947413091264,254.3822067213944,2.0,21025011.0
|
| 55 |
+
65400.0,13393920000.0,18384.021232899,,,,,,1.3782172203063965,0.00076,0.0038,0.03913552686572075,61354.27407555761,61543.60614032671,306.77137037778806,254.6660316439042,2.0,21319151.0
|
| 56 |
+
65500.0,13414400000.0,18720.272511217,1.3626881837844849,1.3625682592391968,1.0,0.98828125,0.9878048300743103,1.3331036567687988,0.0007494928654429532,0.0037474643272147664,0.04251065477728844,61398.63285146357,60951.9797198007,306.99316425731786,254.85015367287062,2.0,21615177.0
|
| 57 |
+
65600.0,13434880000.0,19053.160566164,,,,,,1.3517796993255615,0.0007390808239445205,0.0036954041197226027,0.0427527129650116,61433.1028251361,61517.35763311048,307.1655141256805,254.99322979166294,2.0,21911941.0
|
| 58 |
+
65700.0,13455360000.0,19386.35495924,,,,,,1.3482093811035156,0.0007287613394358945,0.0036438066971794724,0.04183289036154747,61407.5869329665,61522.316408282,307.0379346648325,254.88731979434667,2.0,22208240.0
|
| 59 |
+
65800.0,13475840000.0,19719.152975647,,,,,,1.3634381294250488,0.00071853198660875,0.00359265993304375,0.04072628170251846,61313.63786290866,61465.758191835994,306.5681893145433,254.49736103093923,2.0,22503841.0
|
| 60 |
+
65900.0,13496320000.0,20051.586120128,,,,,,1.3526548147201538,0.0007083904442589708,0.0035419522212948537,0.0432678684592247,61392.195427354396,61538.99477540416,306.960977136772,254.82343355798713,2.0,22798821.0
|
| 61 |
+
66000.0,13516800000.0,20387.580412443,1.3608840703964233,1.360931158065796,1.0,0.98828125,0.9878048300743103,1.345349907875061,0.0006983344891360159,0.003491672445680079,0.042608536779880524,61442.17244009325,60994.788133185444,307.21086220046624,255.03087546320705,2.0,23092208.0
|
| 62 |
+
66100.0,13537280000.0,20720.191247583,,,,,,1.327505111694336,0.000688361990251764,0.0034418099512588196,0.04234081879258156,61360.742997821566,61564.45379780222,306.80371498910785,254.69288249963998,2.0,23384166.0
|
| 63 |
+
66200.0,13557760000.0,21052.817105161,,,,,,1.381811499595642,0.000678470903607559,0.003392354518037795,0.03932283818721771,60806.46832847267,61573.60946701612,304.03234164236335,252.3922289166477,2.0,23675853.0
|
| 64 |
+
66300.0,13578240000.0,21385.574943937,,,,,,1.3518610000610352,0.0006686592673025067,0.003343296336512533,0.042961154133081436,61370.637477168915,61570.82637979093,306.8531873858446,254.73395197407413,2.0,23968143.0
|
| 65 |
+
66400.0,13598720000.0,21718.290248372,,,,,,1.3336862325668335,0.0006589251969898564,0.0032946259849492817,0.041419047862291336,61287.74008263705,61546.43787645234,306.43870041318524,254.38986591296202,2.0,24261879.0
|
| 66 |
+
66500.0,13619200000.0,22054.655771867,1.3597110509872437,1.3593471050262451,1.0,0.98828125,0.9878048300743103,1.3579063415527344,0.0006492668816516717,0.0032463344082583586,0.04277714341878891,61415.331685712124,60943.325938321155,307.0766584285606,254.91946629884873,2.0,24558412.0
|
| 67 |
+
66600.0,13639680000.0,22387.58950801,,,,,,1.344276785850525,0.0006396825796649481,0.0031984128983247404,0.04381794109940529,61232.317194657444,61496.116123792686,306.16158597328723,254.15981956074492,2.0,24854847.0
|
| 68 |
+
66700.0,13660160000.0,22720.480874012,,,,,,1.3301384449005127,0.0006301706151349834,0.0031508530756749168,0.04330151155591011,61436.6442262668,61513.89308478142,307.183221131334,255.00792924962255,2.0,25150814.0
|
| 69 |
+
66800.0,13680640000.0,23053.449779513,,,,,,1.3346014022827148,0.0006207293744741368,0.003103646872370684,0.04194628819823265,61272.91995220534,61521.72041594357,306.3645997610267,254.32835131006996,2.0,25447063.0
|
| 70 |
+
66900.0,13701120000.0,23385.91952,,,,,,1.3483188152313232,0.0006113573032061991,0.003056786516030995,0.040366824716329575,60663.504127233035,61507.37571312053,303.31752063616517,251.7988207744211,2.0,25742608.0
|
| 71 |
+
67000.0,13721600000.0,23721.939979051,1.3571065664291382,1.3574483394622803,1.0,0.98828125,0.9878048300743103,1.3373225927352905,0.000602052902978451,0.0030102645148922546,0.04325442761182785,61394.35424940792,60987.65508234209,306.9717712470396,254.83239428083292,2.0,26037281.0
|
| 72 |
+
67100.0,13742080000.0,24054.694023824,,,,,,1.3140299320220947,0.000592814728765148,0.0029640736438257403,0.04519478231668472,61415.80591771177,61560.08067287123,307.07902958855885,254.9214347156094,2.0,26329654.0
|
| 73 |
+
67200.0,13762560000.0,24387.336295447,,,,,,1.3295822143554688,0.0005836413862476532,0.002918206931238266,0.041693951934576035,61424.83528687011,61547.08307673772,307.12417643435055,254.95891333704935,2.0,26622020.0
|
| 74 |
+
67300.0,13783040000.0,24719.957108713,,,,,,1.3484516143798828,0.0005745315293577645,0.0028726576467888224,0.04272621124982834,61395.96907735237,61567.789672943705,306.97984538676184,254.83909702209417,2.0,26913659.0
|
| 75 |
+
67400.0,13803520000.0,25052.479630542,,,,,,1.3609983921051025,0.0005654838579719865,0.0028274192898599323,0.04377412050962448,61406.489478643496,61571.74205784639,307.03244739321747,254.882764539777,2.0,27207469.0
|
| 76 |
+
67500.0,13824000000.0,25388.683423485,1.356101393699646,1.3552137613296509,1.0,0.98828125,0.9878048300743103,1.3489192724227905,0.0005564971157455596,0.002782485578727798,0.04162129759788513,61333.88135823522,60977.46273988844,306.66940679117613,254.5813866460915,2.0,27504115.0
|
| 77 |
+
67600.0,13844480000.0,25721.691797371,,,,,,1.340340256690979,0.0005475700880760339,0.0027378504403801694,0.0397038608789444,61288.94261998454,61526.81214705984,306.4447130999227,254.39485734051624,2.0,27800449.0
|
| 78 |
+
67700.0,13864960000.0,26054.576867027,,,,,,1.3492900133132935,0.000538701600187037,0.0026935080009351854,0.04364433139562607,61251.17488348996,61500.10541226971,306.25587441744983,254.23809304459448,2.0,28096891.0
|
| 79 |
+
67800.0,13885440000.0,26387.420564794,,,,,,1.3508272171020508,0.000529890515323684,0.0026494525766184197,0.042962025851011276,61339.56629954288,61522.88407902916,306.6978314977144,254.60498339570285,2.0,28393549.0
|
| 80 |
+
67900.0,13905920000.0,26719.952254438,,,,,,1.3322957754135132,0.0005211357330517747,0.0026056786652588733,0.04077994450926781,61432.45258740943,61530.53845622323,307.16226293704716,254.9905308197662,2.0,28689569.0
|
| 81 |
+
68000.0,13926400000.0,27055.962845306,1.35332190990448,1.3545427322387695,1.0,0.98828125,0.9878048300743103,1.327460765838623,0.0005124361876535793,0.0025621809382678964,0.04312632232904434,61347.21065892691,60975.95481798116,306.73605329463453,254.63671319282167,2.0,28984658.0
|
| 82 |
+
68100.0,13946880000.0,27388.540366884,,,,,,1.3065800666809082,0.0005037908466135884,0.002518954233067942,0.044822558760643005,61376.285380321875,61562.43340375723,306.88142690160936,254.75739498769858,2.0,29276900.0
|
| 83 |
+
68200.0,13967360000.0,27721.110214235,,,,,,1.3623512983322144,0.0004951987091881406,0.002475993545940703,0.04360919073224068,61271.42522200718,61579.804757426835,306.3571261100359,254.3221470640956,2.0,29568115.0
|
| 84 |
+
68300.0,13987840000.0,28053.921422868,,,,,,1.346598744392395,0.0004866588050533114,0.002433294025266557,0.04378444701433182,61269.83004946418,61581.201156424904,306.3491502473209,254.31552590742095,2.0,29860064.0
|
| 85 |
+
68400.0,14008320000.0,28386.525485248,,,,,,1.353567361831665,0.00047817019302590216,0.002390850965129511,0.04151426628232002,61295.231565729046,61536.55178908245,306.4761578286452,254.42096115936357,2.0,30154312.0
|
| 86 |
+
68500.0,14028800000.0,28722.76116795,1.3521158695220947,1.352813482284546,1.0,0.98828125,0.9878048300743103,1.3477025032043457,0.0004697319598527461,0.0023486597992637306,0.04087242856621742,61378.78078662329,60963.13670651817,306.89390393311646,254.76775278639633,2.0,30451210.0
|
| 87 |
+
68600.0,14049280000.0,29055.498348053,,,,,,1.3430002927780151,0.00046134321906393075,0.0023067160953196535,0.039589181542396545,61413.25481146845,61520.438934929596,307.06627405734224,254.91084572057883,2.0,30747792.0
|
| 88 |
+
68700.0,14069760000.0,29388.270582711,,,,,,1.342822790145874,0.0004530031098858575,0.0022650155494292877,0.04166153073310852,61440.915540986374,61550.213312558546,307.20457770493186,255.02565839377633,2.0,31043733.0
|
| 89 |
+
68800.0,14090240000.0,29721.205895004,,,,,,1.3239104747772217,0.000444710796210366,0.00222355398105183,0.04466896131634712,61362.78125387762,61543.72378240241,306.8139062693881,254.70134278360698,2.0,31338996.0
|
| 90 |
+
68900.0,14110720000.0,30053.778033352,,,,,,1.3457608222961426,0.0004364654656164299,0.002182327328082149,0.041151631623506546,61272.00212677524,61513.57631508939,306.3600106338762,254.32454164947913,2.0,31635159.0
|
| 91 |
+
69000.0,14131200000.0,30389.774907041,1.3504202365875244,1.3510748147964478,1.0,0.98828125,0.9878048300743103,1.3322829008102417,0.00042826632844118154,0.0021413316422059076,0.040727049112319946,61299.52698384335,60968.159587614304,306.49763491921675,254.438790350596,2.0,31929903.0
|
| 92 |
+
69100.0,14151680000.0,30722.354623894,,,,,,1.332219123840332,0.00042011261689726303,0.0021005630844863152,0.04172879830002785,61430.60299995309,61565.41680880753,307.15301499976545,254.98285365130837,2.0,32223406.0
|
| 93 |
+
69200.0,14172160000.0,31055.057601487,,,,,,1.3397223949432373,0.00041200358423370756,0.0020600179211685376,0.04063473641872406,61427.44446083634,61579.37301714746,307.1372223041817,254.96974335647116,2.0,32515798.0
|
| 94 |
+
69300.0,14192640000.0,31387.834219386,,,,,,1.3381434679031372,0.00040393850393775584,0.002019692519688779,0.04672282934188843,61484.44912591925,61556.57677093593,307.42224562959626,255.20635526428995,2.0,32807973.0
|
| 95 |
+
69400.0,14213120000.0,31720.335603653,,,,,,1.3429710865020752,0.0003959166689751971,0.0019795833448759854,0.04040537029504776,61324.405878706544,61542.9261356126,306.6220293935327,254.54205633364217,2.0,33101770.0
|
| 96 |
+
69500.0,14233600000.0,32056.65414399,1.3490982055664062,1.3490266799926758,1.0,0.98828125,0.9878048300743103,1.3669720888137817,0.00038793739106697924,0.001939686955334896,0.04053347930312157,61296.40815298387,60980.96396705866,306.48204076491936,254.4258448746643,2.0,33397750.0
|
| 97 |
+
69600.0,14254080000.0,32389.611099437,,,,,,1.3559821844100952,0.0003799999999999999,0.0018999999999999996,0.0406019389629364,61326.6037189621,61505.94399329201,306.6330185948105,254.5511790111492,2.0,33694673.0
|
| 98 |
+
69700.0,14274560000.0,32722.206058131,,,,,,1.317966103553772,0.0003721038429701231,0.0018605192148506155,0.040000319480895996,61484.88041636532,61509.586115713915,307.4244020818266,255.20814544155212,2.0,33989314.0
|
| 99 |
+
69800.0,14295040000.0,33054.989883401,,,,,,1.3883137702941895,0.0003642482839555954,0.0018212414197779768,0.041762422770261765,61394.88959056373,61576.55987862928,306.97444795281865,254.83461634620292,2.0,34283263.0
|
| 100 |
+
69900.0,14315520000.0,33387.531037534,,,,,,1.342352032661438,0.00035643270311916755,0.0017821635155958375,0.04369610548019409,61443.750228895806,61541.59928341591,307.21875114447903,255.0374244643838,2.0,34578262.0
|
| 101 |
+
70000.0,14336000000.0,33727.869371468,1.3468537330627441,1.3484218120574951,1.0,0.9921875,0.9878048300743103,1.3519407510757446,0.0003486564962373205,0.0017432824811866026,0.03954672813415527,61357.27169921079,60974.34067059653,306.78635849605394,254.67847401946187,2.0,34870371.0
|
| 102 |
+
70100.0,14356480000.0,34060.301386574,,,,,,1.3227334022521973,0.00034091907415511826,0.0017045953707755914,0.04685215279459953,61466.91217363255,60771.68851214205,307.3345608681627,255.13356382289038,2.0,35162231.0
|
| 103 |
+
70200.0,14376960000.0,34392.715810609,,,,,,1.337990164756775,0.00033321986226528895,0.0016660993113264445,0.039630524814128876,61494.8678025669,61606.73585782136,307.4743390128345,255.24960054877607,2.0,35453124.0
|
| 104 |
+
70300.0,14397440000.0,34725.330878299,,,,,,1.3755667209625244,0.0003255583000102332,0.001627791500051166,0.04159927740693092,61548.240158332796,61609.991253172266,307.74120079166397,255.4711356618091,2.0,35744485.0
|
| 105 |
+
70400.0,14417920000.0,35057.811620144,,,,,,1.3206844329833984,0.00031793384040573915,0.0015896692020286958,0.04238738864660263,61421.33038184552,61572.8240212087,307.1066519092276,254.94436536517046,2.0,36037575.0
|
| 106 |
+
70500.0,14438400000.0,35393.884345811,1.346011996269226,1.3468923568725586,1.0,0.9921875,0.9878048300743103,1.3324306011199951,0.0003103459495852564,0.001551729747926282,0.04526717960834503,61383.5879759283,60985.56464384963,306.9179398796415,254.78770621005123,2.0,36333023.0
|
| 107 |
+
70600.0,14458880000.0,35726.606314236,,,,,,1.3319510221481323,0.00030279410636365785,0.0015139705318182892,0.04374752566218376,59864.25131970667,61550.54025068899,299.32125659853335,248.48132506870505,2.0,36627035.0
|
| 108 |
+
70700.0,14479360000.0,36059.218834624,,,,,,1.3257445096969604,0.00029527780181947576,0.0014763890090973787,0.0414954237639904,61471.09971847597,61553.03837906453,307.35549859237983,255.1509452595331,2.0,36920422.0
|
| 109 |
+
70800.0,14499840000.0,36391.903993058,,,,,,1.3233760595321655,0.00028779653889467166,0.0014389826944733583,0.04067711532115936,61518.41636210403,61573.28378439698,307.59208181052014,255.34734464726978,2.0,37213232.0
|
| 110 |
+
70900.0,14520320000.0,36724.390794831,,,,,,1.334358811378479,0.00028034983201104,0.0014017491600551999,0.04148421064019203,61415.11213634059,61559.83260253396,307.07556068170294,254.91855500508734,2.0,37506219.0
|
| 111 |
+
71000.0,14540800000.0,37060.358415701,1.3451697826385498,1.3459184169769287,1.0,0.98828125,0.9878048300743103,1.3519446849822998,0.0002729372067024171,0.0013646860335120856,0.04137113690376282,61483.062876179545,60985.44540237776,307.4153143808977,255.2006012931869,2.0,37801254.0
|
| 112 |
+
71100.0,14561280000.0,37392.888855418,,,,,,1.316324234008789,0.000265558199261901,0.0013277909963095049,0.04356009513139725,61360.23893387523,61568.989765650076,306.8011946693762,254.69079025803427,2.0,38092408.0
|
| 113 |
+
71200.0,14581760000.0,37725.387156283,,,,,,1.3210232257843018,0.00025821235640334213,0.0012910617820167108,0.04103107377886772,61514.47346324898,61588.48918748051,307.5723673162449,255.33097867408017,2.0,38381865.0
|
| 114 |
+
71300.0,14602240000.0,38057.912876091,,,,,,1.3245759010314941,0.00025089923493640536,0.0012544961746820268,0.04254820942878723,59862.23213537804,61594.43338170598,299.3111606768902,248.4729439466418,2.0,38672069.0
|
| 115 |
+
71400.0,14622720000.0,38390.27168386,,,,,,1.3414206504821777,0.00024361840145454414,0.0012180920072727207,0.04297129064798355,61409.80391035444,61589.37651080823,307.04901955177223,254.89652190523688,2.0,38964489.0
|
| 116 |
+
71500.0,14643200000.0,38726.452895277,1.3434162139892578,1.3442442417144775,1.0,0.98828125,0.9878048300743103,1.3176262378692627,0.00023636943203526504,0.0011818471601763253,0.04215852543711662,61498.25342198504,61008.84462395591,307.4912671099252,255.2636533963546,2.0,39259410.0
|
| 117 |
+
71600.0,14663680000.0,39059.223894947,,,,,,1.3140684366226196,0.00022915191195209696,0.0011457595597604848,0.04326355829834938,61387.439533983605,61529.34118420374,306.937197669918,254.803693050746,2.0,39555179.0
|
| 118 |
+
71700.0,14684160000.0,39392.046513323,,,,,,1.3407926559448242,0.0002219654353977091,0.0011098271769885454,0.04050147160887718,61391.03271009168,61543.97785201795,306.9551635504584,254.81860741350604,2.0,39850085.0
|
| 119 |
+
71800.0,14704640000.0,39724.726053225,,,,,,1.3352184295654297,0.00021480960521765772,0.0010740480260882886,0.042659398168325424,61332.37927318221,61534.431047172126,306.66189636591105,254.57515187197987,2.0,40145129.0
|
| 120 |
+
71900.0,14725120000.0,40057.063627838,,,,,,1.3133504390716553,0.0002076840326542643,0.0010384201632713213,0.04320494085550308,61471.70678388029,61560.90783843966,307.35853391940145,255.15346503406874,2.0,40439007.0
|
| 121 |
+
72000.0,14745600000.0,40392.964835868,1.3425461053848267,1.3429765701293945,1.0,0.98828125,0.9878048300743103,1.344530701637268,0.00020058833710015988,0.0010029416855007994,0.04323400929570198,60926.31393490452,61007.03150453729,304.6315696745226,252.88967763492886,2.0,40732318.0
|
| 122 |
+
72100.0,14766080000.0,40725.353706951,,,,,,1.3154218196868896,0.00019352214586105263,0.0009676107293052631,0.04135126620531082,61426.12227595599,61586.90073326747,307.13061137977996,254.96425530235186,2.0,41024317.0
|
| 123 |
+
72200.0,14786560000.0,41057.827670101,,,,,,1.324266791343689,0.0001864850939273002,0.000932425469636501,0.04069017618894577,61487.64874093596,61614.709257411574,307.4382437046798,255.21963605477066,2.0,41314913.0
|
| 124 |
+
72300.0,14807040000.0,41390.409878385,,,,,,1.311498999595642,0.00017947682375389092,0.0008973841187694545,0.042637284845113754,61410.9585580111,61598.95632014723,307.0547927900555,254.90131455482972,2.0,41605586.0
|
| 125 |
+
72400.0,14827520000.0,41722.904769494,,,,,,1.3491517305374146,0.0001724969850484583,0.0008624849252422915,0.04083210229873657,61479.705330323886,61578.92790720368,307.3985266516194,255.1866649718465,2.0,41898268.0
|
| 126 |
+
72500.0,14848000000.0,42058.898222221,1.3412383794784546,1.3418205976486206,1.0,0.98828125,0.9878048300743103,1.3360235691070557,0.00016554523456697388,0.0008277261728348694,0.04240581765770912,61414.24273624484,60983.281947735326,307.0712136812242,254.91494634577828,2.0,42192092.0
|
| 127 |
+
72600.0,14868480000.0,42391.52498437,,,,,,1.2997963428497314,0.00015862123591678083,0.0007931061795839041,0.0410785935819149,61374.85138098754,61564.914318481606,306.8742569049377,254.751442820138,2.0,42488378.0
|
| 128 |
+
72700.0,14888960000.0,42724.249491844,,,,,,1.3187564611434937,0.00015172465936664684,0.0007586232968332341,0.04247516393661499,59775.1947892891,61570.64936419904,298.87597394644547,248.11167399654846,2.0,42783804.0
|
| 129 |
+
72800.0,14909440000.0,43056.952230461,,,,,,1.3411163091659546,0.00014485518166353753,0.0007242759083176876,0.04131421446800232,61426.06956544622,61552.574463410594,307.1303478272311,254.96403651439368,2.0,43078971.0
|
| 130 |
+
72900.0,14929920000.0,43389.341165452,,,,,,1.3276678323745728,0.00013801248585581635,0.0006900624292790816,0.041151002049446106,61342.74209143923,61556.61373701116,306.71371045719616,254.61816530245272,2.0,43374056.0
|
| 131 |
+
73000.0,14950400000.0,43725.256408743,1.339860200881958,1.341096043586731,1.0,0.98828125,0.9878048300743103,1.349399447441101,0.00013119626112260076,0.0006559813056130039,0.041585084050893784,61507.88400312397,61003.4515546995,307.53942001561984,255.30362749625277,2.0,43668197.0
|
| 132 |
+
73100.0,14970880000.0,44057.777634533,,,,,,1.319214940071106,0.00012440620260901645,0.0006220310130450823,0.040507618337869644,61455.285051671475,61578.445369913155,307.2764252583574,255.0853025883818,2.0,43960126.0
|
| 133 |
+
73200.0,14991360000.0,44390.298138196,,,,,,1.3003805875778198,0.00011764201126709671,0.0005882100563354835,0.04358009994029999,61402.20100331531,61590.18604894944,307.0110050165766,254.864964166289,2.0,44251451.0
|
| 134 |
+
73300.0,15011840000.0,44722.760404965,,,,,,1.3278816938400269,0.0001109033937020989,0.0005545169685104945,0.042178381234407425,61509.89681009681,61590.31967866409,307.54948405048407,255.3119821475295,2.0,44542836.0
|
| 135 |
+
73400.0,15032320000.0,45054.993739112,,,,,,1.3170613050460815,0.00010419006202400876,0.0005209503101200437,0.040543049573898315,61509.21851907014,61601.12833874643,307.54609259535073,255.30916673349907,2.0,44834556.0
|
| 136 |
+
73500.0,15052800000.0,45391.163330841,1.3389241695404053,1.3395416736602783,1.0,0.98828125,0.9878048300743103,1.3149529695510864,9.750173370402385e-05,0.0004875086685201192,0.04257722944021225,61449.88635619001,61031.179896337126,307.24943178095003,255.06289397260016,2.0,45127380.0
|
| 137 |
+
73600.0,15073280000.0,45724.023916499,,,,,,1.3380577564239502,9.083813143581147e-05,0.0004541906571790573,0.041885413229465485,61442.59874272751,61532.005965824836,307.21299371363756,255.03264493732738,2.0,45423304.0
|
| 138 |
+
73700.0,15093760000.0,46056.752738496,,,,,,1.3252533674240112,8.419898300134956e-05,0.0004209949150067478,0.042077742516994476,61313.8085458538,61527.415862242284,306.569042729269,254.49806949255762,2.0,45719911.0
|
| 139 |
+
73800.0,15114240000.0,46389.46795254,,,,,,1.3209103345870972,7.758402114116653e-05,0.00038792010570583264,0.041527554392814636,61373.20258383865,61551.77442602223,306.8660129191932,254.74459908132403,2.0,46014660.0
|
| 140 |
+
73900.0,15134720000.0,46721.815251583,,,,,,1.3107129335403442,7.099298342880416e-05,0.00035496491714402076,0.04185768961906433,61460.574758772564,61554.29956104363,307.30287379386283,255.10725882103696,2.0,46309904.0
|
| 141 |
+
74000.0,15155200000.0,47057.790950149,1.3383510112762451,1.3390538692474365,1.0,0.98828125,0.9878048300743103,1.3059390783309937,6.442561214933782e-05,0.00032212806074668907,0.04204953834414482,61325.14139336494,61009.22979301447,306.6257069668247,254.54510926845543,2.0,46605464.0
|
| 142 |
+
74100.0,15175680000.0,47390.413578559,,,,,,1.3162883520126343,5.788165418179506e-05,0.0002894082709089753,0.04220479726791382,60220.204263721076,61569.058123138624,301.1010213186054,249.95879546616226,2.0,46899893.0
|
| 143 |
+
74200.0,15196160000.0,47722.85248953,,,,,,1.3285703659057617,5.1360860885319516e-05,0.00025680430442659755,0.041450731456279755,61357.80639386069,61571.4248244824,306.78903196930344,254.68069340134983,2.0,47192059.0
|
| 144 |
+
74300.0,15216640000.0,48055.433208047,,,,,,1.3270063400268555,4.4862987988937466e-05,0.0002243149399446873,0.04340270906686783,61386.39105515578,61605.427416083694,306.9319552757789,254.79934108103618,2.0,47483960.0
|
| 145 |
+
74400.0,15237120000.0,48387.856422187,,,,,,1.334648609161377,3.838779548478472e-05,0.00019193897742392362,0.040720779448747635,61394.077806400775,61579.17749994707,306.9703890320039,254.83124683601892,2.0,47775096.0
|
| 146 |
+
74500.0,15257600000.0,48724.024476403,1.3372653722763062,1.3381280899047852,1.0,0.98828125,0.9878048300743103,1.3211802244186401,3.193504752466747e-05,0.00015967523762333734,0.04237833619117737,61373.404293627456,60995.91739499874,306.8670214681373,254.74543632750184,2.0,48069697.0
|
| 147 |
+
74600.0,15278080000.0,49056.751285298,,,,,,1.3424696922302246,2.550451231982599e-05,0.00012752256159912994,0.04197322577238083,61338.37491485576,61533.0145088016,306.6918745742788,254.60003826001343,2.0,48365786.0
|
| 148 |
+
74700.0,15298560000.0,49389.39301997,,,,,,1.3116881847381592,1.90959620437835e-05,9.54798102189175e-05,0.039753422141075134,61303.687377075,61552.13212251003,306.518436885375,254.4560590877842,2.0,48662397.0
|
| 149 |
+
74800.0,15319040000.0,49722.144548607,,,,,,1.3262391090393066,1.2709172738163532e-05,6.354586369081767e-05,0.04039362072944641,61290.836165350665,61567.88053326232,306.4541808267533,254.4027169671094,2.0,48957874.0
|
| 150 |
+
74900.0,15339520000.0,50054.739075174,,,,,,1.330440878868103,6.343924221366659e-06,3.1719621106833295e-05,0.04005530849099159,61408.67564641344,61547.546336328145,307.0433782320672,254.89183876775652,2.0,49253421.0
|
| 151 |
+
75000.0,15360000000.0,50061.649689509,1.3369555473327637,1.337888479232788,,,,,,,,,,,,,
|
training-curves/700m/anneal-T150000.csv
ADDED
|
@@ -0,0 +1,301 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step,tokens,wall_clock_s,train_loss,val_loss,valid_prob_mass,game_end_accuracy,game_end_top1_accuracy,batch_train_loss,lr,muon_lr,unclipped_grad_norm,tokens_per_second,avg_tokens_per_second,samples_per_second,t_flops,shard_idx,shard_sample_idx
|
| 2 |
+
120100.0,24596480000.0,766.796271025,,,,,,1.3744531869888306,0.0017903034488539712,0.008951517244269855,0.054072264581918716,64157.17770799688,48751.92355754595,320.7858885399844,266.30017377839584,3.0,89376587.0
|
| 3 |
+
120200.0,24616960000.0,1085.164978597,,,,,,1.3487005233764648,0.0017448656496237322,0.008724328248118661,0.04892824962735176,64283.71524686631,64302.79506788177,321.41857623433157,266.8253990110859,3.0,89693672.0
|
| 4 |
+
120300.0,24637440000.0,1403.079050386,,,,,,1.3770619630813599,0.00171,0.00855,0.04679083451628685,64328.5103957237,64328.08848630046,321.6425519786185,267.01133231350525,3.0,90010131.0
|
| 5 |
+
120400.0,24657920000.0,1742.961482649,,,,,,1.3717026710510254,0.0016806068977079421,0.00840303448853971,0.06533883512020111,64438.46358929026,64420.11814601639,322.1923179464513,267.4677201347952,3.0,90324562.0
|
| 6 |
+
120500.0,24678400000.0,2063.892445151,1.3831921815872192,1.38237726688385,0.99609375,0.98046875,0.9878048300743103,1.3608237504959106,0.001654711054740197,0.008273555273700986,0.04551355540752411,66491.87652728321,59714.988588987064,332.459382636416,275.99091647480765,3.0,90637042.0
|
| 7 |
+
120600.0,24698880000.0,2389.089883148,,,,,,1.3520373106002808,0.001631299423149112,0.00815649711574556,0.05490109696984291,64190.32068353423,64433.05086241321,320.95160341767115,266.43774186446876,3.0,90949327.0
|
| 8 |
+
120700.0,24719360000.0,2706.896533915,,,,,,1.4027146100997925,0.00160977020598613,0.00804885102993065,0.050681404769420624,64252.263578106395,62977.297488673015,321.261317890532,266.6948511105142,4.0,68092.0
|
| 9 |
+
120800.0,24739840000.0,3024.682130288,,,,,,1.352562427520752,0.001589731299247464,0.00794865649623732,0.058995213359594345,64412.08595892067,64441.86352107297,322.06042979460335,267.35823328075594,4.0,362564.0
|
| 10 |
+
120900.0,24760320000.0,3342.27865449,,,,,,1.3883627653121948,0.0015709103465619135,0.007854551732809566,0.04431917890906334,64156.31040000383,64446.14494532724,320.78155200001913,266.2965738028745,4.0,658313.0
|
| 11 |
+
121000.0,24780800000.0,3663.063415988,1.3793766498565674,1.378218173980713,0.99609375,0.98828125,0.9878048300743103,1.370253324508667,0.0015531090469133948,0.007765545234566974,0.045165739953517914,64280.16030501506,63843.85052921169,321.4008015250753,266.81064334902936,4.0,952694.0
|
| 12 |
+
121100.0,24801280000.0,3980.554416456,,,,,,1.3942828178405762,0.0015361776990525915,0.007680888495262958,0.04915669187903404,64296.84644396435,64484.25187465517,321.48423221982176,266.8799032800399,4.0,1246277.0
|
| 13 |
+
121200.0,24821760000.0,4297.922500475,,,,,,1.376083493232727,0.00152,0.0076,0.046780116856098175,64189.9417406457,64505.90712198457,320.9497087032285,266.4361689686421,4.0,1541078.0
|
| 14 |
+
121300.0,24842240000.0,4615.775998598,,,,,,1.3639079332351685,0.0015044834601014349,0.007522417300507174,0.050026409327983856,64520.570891972515,64530.90685379694,322.60285445986256,267.80852672501453,4.0,1835276.0
|
| 15 |
+
121400.0,24862720000.0,4933.626622497,,,,,,1.3709886074066162,0.0014895530891008354,0.007447765445504177,0.04553910344839096,64330.235088733345,64432.35287085541,321.6511754436667,267.01849107678925,4.0,2128346.0
|
| 16 |
+
121500.0,24883200000.0,5254.463100793,1.3761810064315796,1.3770503997802734,0.99609375,0.98046875,0.9878048300743103,1.325250267982483,0.00147514708427504,0.0073757354213752,0.04816705361008644,64452.310944325836,63795.020117166394,322.2615547216292,267.5251969937232,4.0,2418890.0
|
| 17 |
+
121600.0,24903680000.0,5572.263985885,,,,,,1.3634642362594604,0.0014612137954158843,0.0073060689770794215,0.04470785707235336,64402.94894276768,64471.987659382175,322.0147447138384,267.3203078439415,4.0,2709129.0
|
| 18 |
+
121700.0,24924160000.0,5889.915031942,,,,,,1.3597995042800903,0.0014477095328589529,0.007238547664294765,0.04753316193819046,64447.6203566599,64443.03734489171,322.2381017832995,267.50572755390084,4.0,2999654.0
|
| 19 |
+
121800.0,24944640000.0,6207.762075661,,,,,,1.3745404481887817,0.0014345969488711962,0.007172984744355982,0.05324642360210419,64342.1177496686,64473.427524849496,321.710588748343,267.0678129887725,4.0,3292281.0
|
| 20 |
+
121900.0,24965120000.0,6525.418928835,,,,,,1.3459802865982056,0.0014218438190995192,0.007109219095497596,0.049396954476833344,64285.54338087357,64433.71841979556,321.42771690436786,266.8329871317174,4.0,3586957.0
|
| 21 |
+
122000.0,24985600000.0,6846.090131949,1.3742854595184326,1.3754637241363525,0.99609375,0.9921875,0.9878048300743103,1.3729686737060547,0.001409422109480394,0.00704711054740197,0.04804714396595955,64418.563606579104,63833.217653137486,322.09281803289554,267.38512035339136,4.0,3882436.0
|
| 22 |
+
122100.0,25006080000.0,7163.75334602,,,,,,1.3817214965820312,0.001397307250897728,0.006986536254488639,0.059431083500385284,64388.987645240806,64505.91274108953,321.94493822620404,267.26235803862903,4.0,4178293.0
|
| 23 |
+
122200.0,25026560000.0,7481.573182839,,,,,,1.3606623411178589,0.001385477567706389,0.006927387838531945,0.045250266790390015,64424.83961730304,64470.952960622824,322.1241980865152,267.41117048224874,4.0,4473781.0
|
| 24 |
+
122300.0,25047040000.0,7798.849011133,,,,,,1.3485171794891357,0.0013739138220151884,0.006869569110075942,0.0567343533039093,64482.037089389305,64439.17186472692,322.4101854469465,267.6485826830407,4.0,4768707.0
|
| 25 |
+
122400.0,25067520000.0,8116.236458977,,,,,,1.3352230787277222,0.0013625988462982238,0.006812994231491119,0.05372365936636925,64494.67803733767,64549.65000680316,322.47339018668833,267.7010520521064,4.0,5063562.0
|
| 26 |
+
122500.0,25088000000.0,8436.678979684,1.3729822635650635,1.3745646476745605,0.99609375,0.98828125,0.9878048300743103,1.3639140129089355,0.0013515172442698556,0.006757586221349278,0.046967681497335434,64424.76230719205,63886.89049157237,322.1238115359603,267.4108495875846,4.0,5358012.0
|
| 27 |
+
122600.0,25108480000.0,8753.740840911,,,,,,1.3504055738449097,0.0013406551451325696,0.006703275725662847,0.04617931693792343,64501.51134424276,64552.36501721899,322.5075567212138,267.72941537607596,4.0,5650803.0
|
| 28 |
+
122700.0,25128960000.0,9071.105476379,,,,,,1.36735200881958,0.00133,0.00665,0.05550473928451538,64444.35185593644,64593.23946412382,322.2217592796822,267.4921608363215,4.0,5942460.0
|
| 29 |
+
122800.0,25149440000.0,9388.592090336,,,,,,1.3693007230758667,0.0013195404119722602,0.006597702059861301,0.046958934515714645,64377.26618321145,64531.62264103045,321.88633091605726,267.21370522242256,4.0,6235835.0
|
| 30 |
+
122900.0,25169920000.0,9706.094698854,,,,,,1.3865303993225098,0.001309265993304375,0.006546329966521875,0.05024003982543945,64493.63210254671,64506.83404533788,322.46816051273356,267.6967106420484,4.0,6530763.0
|
| 31 |
+
123000.0,25190400000.0,10027.081539309,1.3709965944290161,1.372782826423645,0.99609375,0.98828125,0.9878048300743103,1.337256908416748,0.0012991672445680077,0.006495836222840039,0.05185495689511299,64190.5461326919,63861.689188739605,320.95273066345953,266.43867764674616,4.0,6825926.0
|
| 32 |
+
123100.0,25210880000.0,10344.523991403,,,,,,1.344862937927246,0.0012892354518037794,0.006446177259018897,0.04403337463736534,64428.652202336605,64444.11944721616,322.143261011683,267.4269955558142,4.0,7120548.0
|
| 33 |
+
123200.0,25231360000.0,10661.897187798,,,,,,1.342104434967041,0.0012794625984949282,0.00639731299247464,0.04824628680944443,64461.62160709975,64515.82733554886,322.3081080354987,267.56384319362263,4.0,7415083.0
|
| 34 |
+
123300.0,25251840000.0,10979.246000301,,,,,,1.3448615074157715,0.0012698412898324738,0.006349206449162369,0.04302041977643967,64309.39080725071,64529.85911341744,321.54695403625357,266.9319717506684,4.0,7709547.0
|
| 35 |
+
123400.0,25272320000.0,11296.135236299,,,,,,1.3636218309402466,0.0012603646872370686,0.006301823436185342,0.04589744657278061,64442.81925602112,64534.81932294727,322.2140962801056,267.48579940275533,4.0,8003380.0
|
| 36 |
+
123500.0,25292800000.0,11616.58695117,1.3692741394042969,1.370074987411499,0.99609375,0.98828125,0.9878048300743103,1.3606194257736206,0.0012510264514892255,0.006255132257446127,0.04855126515030861,62684.68198738663,63968.7296187485,313.4234099369332,260.1882174814533,4.0,8297007.0
|
| 37 |
+
123600.0,25313280000.0,11933.845828322,,,,,,1.3550773859024048,0.0012418206931238266,0.006209103465619133,0.0445387177169323,64342.382822565276,64568.433414322804,321.7119141128264,267.0689132391415,4.0,8588595.0
|
| 38 |
+
123700.0,25333760000.0,12251.060065536,,,,,,1.3710471391677856,0.0012327419289859933,0.006163709644929966,0.04827248677611351,64476.22904713015,64553.12843371573,322.38114523565076,267.6244749725993,4.0,8878909.0
|
| 39 |
+
123800.0,25354240000.0,12568.171499194,,,,,,1.3649929761886597,0.001223785044038017,0.006118925220190085,0.051384489983320236,59744.778600439735,64562.235181864715,298.7238930021987,247.98542411047762,4.0,9170542.0
|
| 40 |
+
123900.0,25374720000.0,12885.349512661,,,,,,1.3709194660186768,0.001214945257661842,0.00607472628830921,0.05146072432398796,64396.66754078874,64583.14072994188,321.9833377039437,267.2942353373519,4.0,9464261.0
|
| 41 |
+
124000.0,25395200000.0,13205.622563032,1.3684651851654053,1.3693325519561768,1.0,0.98828125,0.9878048300743103,1.3566465377807617,0.0012062180938267897,0.006031090469133948,0.04532315954566002,64553.0814261034,63929.9577394755,322.765407130517,267.94346970720255,4.0,9758472.0
|
| 42 |
+
124100.0,25415680000.0,13522.866073833,,,,,,1.3682632446289062,0.0011975993545940704,0.0059879967729703516,0.045280713587999344,64370.38681876278,64585.53971040154,321.8519340938139,267.18515072527015,4.0,10052525.0
|
| 43 |
+
124200.0,25436160000.0,13840.299429878,,,,,,1.3503897190093994,0.001189085096512951,0.0059454254825647545,0.04873527213931084,64391.994702275086,64556.227594342134,321.95997351137544,267.27483956975925,4.0,10346006.0
|
| 44 |
+
124300.0,25456640000.0,14157.341817522,,,,,,1.3647314310073853,0.0011806716095319652,0.005903358047659826,0.044956278055906296,64399.009042394435,64517.651928889616,321.9950452119722,267.30395431668944,4.0,10640236.0
|
| 45 |
+
124400.0,25477120000.0,14474.424761238,,,,,,1.3609579801559448,0.001172355398105183,0.005861776990525915,0.04586300253868103,64527.87987716923,64597.18553318966,322.63939938584616,267.83886446893604,4.0,10934357.0
|
| 46 |
+
124500.0,25497600000.0,14794.998359837,1.3681516647338867,1.3679916858673096,1.0,0.98828125,0.9878048300743103,1.3591699600219727,0.0011641331642205908,0.005820665821102954,0.04571499675512314,64317.090251716094,63946.60834727311,321.58545125858046,266.96393019198985,4.0,11228034.0
|
| 47 |
+
124600.0,25518080000.0,15112.077755417,,,,,,1.3256813287734985,0.0011560017921168537,0.005780008960584269,0.04593951627612114,64416.061273563966,64526.75390444239,322.08030636781984,267.3747338036616,4.0,11522161.0
|
| 48 |
+
124700.0,25538560000.0,15429.177558888,,,,,,1.3651303052902222,0.0011479583344875986,0.005739791672437993,0.04390840604901314,64511.388539731175,64589.66754514096,322.55694269865586,267.77041310959504,4.0,11811103.0
|
| 49 |
+
124800.0,25559040000.0,15746.353052963,,,,,,1.3722617626190186,0.00114,0.005699999999999999,0.05391504243016243,64576.44328134126,64585.49042180636,322.8822164067063,268.0404388435,4.0,12100820.0
|
| 50 |
+
124900.0,25579520000.0,16063.364252554,,,,,,1.3633770942687988,0.0011321241419777978,0.005660620709888989,0.0488259494304657,64428.62320759181,64570.09838505797,322.14311603795903,267.4268752059819,4.0,12392663.0
|
| 51 |
+
125000.0,25600000000.0,16387.873090676,1.366543173789978,1.366879940032959,1.0,0.98828125,0.9878048300743103,1.3790186643600464,0.0011243282481186603,0.0056216412405933015,0.04660974070429802,64406.67201218622,63961.81583655359,322.0333600609311,267.33576136089107,4.0,12687181.0
|
| 52 |
+
125100.0,25620480000.0,16705.172500888,,,,,,1.3427308797836304,0.0011166099311326445,0.005583049655663223,0.04632759839296341,64488.601436537705,63735.58681350113,322.4430071826885,267.6758296232711,4.0,12984387.0
|
| 53 |
+
125200.0,25640960000.0,17022.418533124,,,,,,1.3683955669403076,0.0011089669202028697,0.005544834601014348,0.04917601868510246,64400.21606849356,64544.859494561686,322.0010803424678,267.30896437591326,4.0,13280283.0
|
| 54 |
+
125300.0,25661440000.0,17339.792783444,,,,,,1.3415459394454956,0.0011013970531818288,0.0055069852659091435,0.044748030602931976,64479.55402328082,64555.74850080495,322.3977701164041,267.63827610535424,4.0,13575790.0
|
| 55 |
+
125400.0,25681920000.0,17656.868705267,,,,,,1.3625304698944092,0.0010938982694473358,0.005469491347236679,0.04807136207818985,64418.69887336162,64529.68222302323,322.0934943668081,267.3856818115006,4.0,13870927.0
|
| 56 |
+
125500.0,25702400000.0,17976.925610117,1.3645960092544556,1.3654273748397827,1.0,0.98828125,0.9878048300743103,1.327978491783142,0.0010864686033512086,0.005432343016756043,0.04497338458895683,64529.78494440292,63950.07264418776,322.6489247220146,267.8467719198794,4.0,14165027.0
|
| 57 |
+
125600.0,25722880000.0,18294.110655561,,,,,,1.353899598121643,0.001079106178201671,0.005395530891008355,0.04329157620668411,64583.400751699366,64629.8675804285,322.91700375849683,268.069317538474,4.0,14457599.0
|
| 58 |
+
125700.0,25743360000.0,18611.015268563,,,,,,1.363873839378357,0.001071809200727272,0.00535904600363636,0.048854317516088486,64564.25554290985,64568.15875870364,322.82127771454924,267.98985063220084,4.0,14749597.0
|
| 59 |
+
125800.0,25763840000.0,18928.087781015,,,,,,1.3476823568344116,0.0010645759559760484,0.005322879779880242,0.047349318861961365,64544.389347945675,64625.27742887386,322.72194673972837,267.90739109516585,4.0,15040659.0
|
| 60 |
+
125900.0,25784320000.0,19245.289035351,,,,,,1.3514131307601929,0.0010574048026088289,0.005287024013044144,0.047046709805727005,64425.53058465977,64591.07337981837,322.12765292329885,267.41403851251044,4.0,15332531.0
|
| 61 |
+
126000.0,25804800000.0,19565.674455718,1.3640488386154175,1.3641059398651123,1.0,0.98828125,0.9878048300743103,1.3405818939208984,0.00105029416855008,0.0052514708427504,0.04722810909152031,64444.87402019038,63924.2602332841,322.2243701009519,267.49432820771364,4.0,15626344.0
|
| 62 |
+
126100.0,25825280000.0,19883.061918336,,,,,,1.356976866722107,0.00104324254696365,0.00521621273481825,0.04761293902993202,64387.491461471516,64563.75856914636,321.9374573073576,267.25614775924953,4.0,15923254.0
|
| 63 |
+
126200.0,25845760000.0,20200.760655397,,,,,,1.3641226291656494,0.0010362484925242293,0.005181242462621146,0.04706868156790733,64343.944387232754,64526.93591682943,321.71972193616375,267.07539489804816,4.0,16220296.0
|
| 64 |
+
126300.0,25866240000.0,20518.224660858,,,,,,1.3443114757537842,0.0010293106179583905,0.005146553089791952,0.04748645797371864,64398.3379554549,64463.751539242316,321.99168977727453,267.30116880499764,4.0,16516192.0
|
| 65 |
+
126400.0,25886720000.0,20835.247220275,,,,,,1.3328176736831665,0.0010224275908317687,0.005112137954158844,0.04804151505231857,64432.53290115952,64511.408936677624,322.1626645057976,267.44310335244495,4.0,16812432.0
|
| 66 |
+
126500.0,25907200000.0,21155.68264288,1.363612174987793,1.3638226985931396,1.0,0.984375,0.9878048300743103,1.3463565111160278,0.0010155981305613002,0.005077990652806502,0.04770205169916153,64463.08737463935,63960.13417726129,322.31543687319675,267.56992722294655,4.0,17108484.0
|
| 67 |
+
126600.0,25927680000.0,21473.063984979,,,,,,1.3527463674545288,0.0010088210056335483,0.005044105028167742,0.04735973849892616,64414.897126976226,64553.3722534515,322.0744856348811,267.36990172641487,4.0,17402953.0
|
| 68 |
+
126700.0,25948160000.0,21790.217900065,,,,,,1.3647536039352417,0.0010020950310120043,0.005010475155060022,0.04375681281089783,64362.89162570214,64528.199804265474,321.8144581285107,267.15404007972967,4.0,17696232.0
|
| 69 |
+
126800.0,25968640000.0,22107.313640408,,,,,,1.3439592123031616,0.000995419065717906,0.004977095328589529,0.05063045397400856,64529.94976466672,64574.4617690032,322.6497488233336,267.84745604699435,4.0,17989880.0
|
| 70 |
+
126900.0,25989120000.0,22424.040594565,,,,,,1.3760679960250854,0.0009887920105705833,0.004943960052852916,0.047360051423311234,64393.99312665728,64586.340478511935,321.9699656332864,267.28313452254974,4.0,18283418.0
|
| 71 |
+
127000.0,26009600000.0,22744.431516648,1.3625080585479736,1.3623216152191162,1.0,0.98828125,0.9878048300743103,1.3667842149734497,0.000982212806074669,0.004911064030373344,0.05079801753163338,64590.558848688204,64020.47411518343,322.952794243441,268.0990289837113,4.0,18577371.0
|
| 72 |
+
127100.0,26030080000.0,23061.575744004,,,,,,1.3493095636367798,0.0009756804304426599,0.004878402152213299,0.05036007985472679,64482.09517509612,64561.16250180363,322.4104758754806,267.6488237820786,4.0,18875006.0
|
| 73 |
+
127200.0,26050560000.0,23378.870275863,,,,,,1.3545082807540894,0.0009691938977423924,0.004845969488711962,0.0467158667743206,64422.06140166674,64576.438717965735,322.1103070083337,267.39963881372506,4.0,19172431.0
|
| 74 |
+
127300.0,26071040000.0,23696.199515582,,,,,,1.3236736059188843,0.0009627522561599129,0.004813761280799565,0.0438447929918766,64503.01767538816,64545.883714296404,322.5150883769408,267.7356677746402,4.0,19468613.0
|
| 75 |
+
127400.0,26091520000.0,24013.080984057,,,,,,1.3399831056594849,0.0009563545863690816,0.004781772931845408,0.046290136873722076,64395.895124001654,64538.80383767239,321.97947562000826,267.29102923116113,4.0,19765233.0
|
| 76 |
+
127500.0,26112000000.0,24333.133963908,1.361332893371582,1.3611185550689697,1.0,0.98828125,0.9878048300743103,1.3600564002990723,0.00095,0.00475,0.04419124126434326,64594.50765037155,63989.58151692141,322.97253825185777,268.1154194580442,4.0,20061153.0
|
| 77 |
+
127600.0,26132480000.0,24650.232333375,,,,,,1.3293061256408691,0.0009436876381990383,0.004718438190995192,0.04971214011311531,64545.94133307845,64629.99595572652,322.72970666539226,267.9138329918534,4.0,20357061.0
|
| 78 |
+
127700.0,26152960000.0,24967.242428478,,,,,,1.3365939855575562,0.000937416670273858,0.0046870833513692894,0.04605095461010933,64426.87390627236,64585.81762179002,322.1343695313618,267.4196142998448,4.0,20650824.0
|
| 79 |
+
127800.0,26173440000.0,25284.012444589,,,,,,1.3531705141067505,0.0009311862924173708,0.004655931462086854,0.045071445405483246,61621.97586954005,64603.78233567927,308.10987934770026,255.77719389893318,4.0,20943924.0
|
| 80 |
+
127900.0,26193920000.0,25600.811415955,,,,,,1.3380047082901,0.0009249957265050922,0.004624978632525461,0.054829809814691544,64532.02948091963,64652.75011820536,322.66014740459815,267.8560884217238,4.0,21235909.0
|
| 81 |
+
128000.0,26214400000.0,25920.894937298,1.359441876411438,1.3608582019805908,1.0,0.98828125,0.9878048300743103,1.3704116344451904,0.0009188442189607878,0.004594221094803939,0.04672662913799286,64557.60786012522,64005.72451291699,322.7880393006261,267.9622577868792,4.0,21530076.0
|
| 82 |
+
128100.0,26234880000.0,26237.955138357,,,,,,1.33411705493927,0.0009127310396857398,0.004563655198428699,0.046334557235240936,62587.280171433624,64624.104638437726,312.9364008571681,259.78392724548513,4.0,21825260.0
|
| 83 |
+
128200.0,26255360000.0,26555.056197729,,,,,,1.3323835134506226,0.0009066554810473189,0.004533277405236595,0.049454811960458755,64380.8560005888,64593.559213922315,321.904280002944,267.2286056439431,4.0,22121855.0
|
| 84 |
+
128300.0,26275840000.0,26872.490681695,,,,,,1.3448808193206787,0.0009006168569228983,0.004503084284614492,0.047344814985990524,64392.94080077242,64585.233296808015,321.9647040038621,267.2787665846819,4.0,22417959.0
|
| 85 |
+
128400.0,26296320000.0,27190.31306255,,,,,,1.3611537218093872,0.0008946145017954555,0.004473072508977278,0.04699759930372238,64139.888683964906,64517.42742284502,320.69944341982455,266.2284114243047,4.0,22713413.0
|
| 86 |
+
128500.0,26316800000.0,27511.339335382,1.3588299751281738,1.359728455543518,1.0,0.9921875,0.9878048300743103,1.3807792663574219,0.0008886477698974836,0.0044432388494874174,0.04854421690106392,64208.96156126288,63798.24601585387,321.0448078063144,266.5151154204116,4.0,23009482.0
|
| 87 |
+
128600.0,26337280000.0,27829.058642855,,,,,,1.350855827331543,0.000882716034400096,0.00441358017200048,0.0471109077334404,64270.680779089285,64435.90025735774,321.35340389544643,266.77129624101195,4.0,23304405.0
|
| 88 |
+
128700.0,26357760000.0,28146.80459154,,,,,,1.313148021697998,0.0008768186866444443,0.0043840934332222215,0.047918833792209625,64238.21860604247,64459.568580363666,321.19109303021236,266.63655399341906,4.0,23598189.0
|
| 89 |
+
128800.0,26378240000.0,28464.709370274,,,,,,1.340014100074768,0.0008709551354127783,0.004354775677063891,0.046864841133356094,64374.16401567744,64454.120339652305,321.87082007838717,267.2008289117288,4.0,23889136.0
|
| 90 |
+
128900.0,26398720000.0,28782.212372265,,,,,,1.3660178184509277,0.000865124806236681,0.004325624031183405,0.04406803101301193,64410.936445417545,64421.9772858663,322.0546822270877,267.35346194173235,4.0,24181410.0
|
| 91 |
+
129000.0,26419200000.0,29103.054099268,1.358388066291809,1.358291506767273,1.0,0.9921875,0.9878048300743103,1.3660736083984375,0.0008593271407401845,0.004296635703700922,0.04677528515458107,64362.63120635821,63863.28552855674,321.81315603179104,267.15295914507794,4.0,24475251.0
|
| 92 |
+
129100.0,26439680000.0,29420.460159712,,,,,,1.3508120775222778,0.0008535615960156406,0.004267807980078203,0.049293503165245056,64303.700470333875,64471.78795601569,321.5185023516694,266.9083526052517,4.0,24769546.0
|
| 93 |
+
129200.0,26460160000.0,29738.100541136,,,,,,1.361952543258667,0.0008478276440303772,0.004239138220151885,0.044923022389411926,64434.055345299406,64523.16616760985,322.17027672649704,267.44942263196293,4.0,25066254.0
|
| 94 |
+
129300.0,26480640000.0,30055.945249936,,,,,,1.3181748390197754,0.0008421247710622958,0.004210623855311479,0.043331313878297806,64356.54088825439,64475.5738204446,321.78270444127196,267.1276797791932,4.0,25361899.0
|
| 95 |
+
129400.0,26501120000.0,30373.428119178,,,,,,1.3459656238555908,0.0008364524771627112,0.0041822623858135555,0.04772749915719032,64392.62704053656,64434.14041096722,321.9631352026828,267.27746424551543,4.0,25657308.0
|
| 96 |
+
129500.0,26521600000.0,30694.279333139,1.3580191135406494,1.3578202724456787,1.0,0.98828125,0.9878048300743103,1.3481571674346924,0.0008308102756448382,0.004154051378224191,0.05040452256798744,64329.753321601114,63866.96806880743,321.6487666080056,267.01649138360426,4.0,25952874.0
|
| 97 |
+
129600.0,26542080000.0,31012.117154909,,,,,,1.349218726158142,0.0008251976925964478,0.004125988462982239,0.050211288034915924,64280.208407152,64470.22221223514,321.40104203576,266.81084300880065,4.0,26248382.0
|
| 98 |
+
129700.0,26562560000.0,31329.720909086,,,,,,1.3298933506011963,0.000819614266415308,0.00409807133207654,0.04529222846031189,64437.33730292358,64435.536728340194,322.1866865146179,267.46304520572437,4.0,26543688.0
|
| 99 |
+
129800.0,26583040000.0,31646.810998738,,,,,,1.3617466688156128,0.0008140595473661244,0.004070297736830622,0.048268288373947144,64487.70577947124,64483.0150730248,322.4385288973562,267.6721119779356,4.0,26836233.0
|
| 100 |
+
129900.0,26603520000.0,31964.291791367,,,,,,1.3425865173339844,0.0008085330971577746,0.004042665485788873,0.04763488098978996,64306.16038243218,64587.49053085855,321.5308019121609,266.918563076514,4.0,27128912.0
|
| 101 |
+
130000.0,26624000000.0,32288.552115149,1.356166124343872,1.356835961341858,1.0,0.98828125,0.9878048300743103,1.3416872024536133,0.0008030344885397111,0.004015172442698556,0.04614310711622238,64334.03648449186,63867.43110511612,321.6701824224593,267.03426970651174,4.0,27422631.0
|
| 102 |
+
130100.0,26644480000.0,32606.135053835,,,,,,1.3604732751846313,0.0007975633049164833,0.0039878165245824165,0.04659915342926979,64443.83453488115,63785.632023421946,322.21917267440574,267.49001356781866,4.0,27717906.0
|
| 103 |
+
130200.0,26664960000.0,32923.962430237,,,,,,1.3337935209274292,0.0007921191399793929,0.003960595699896964,0.046860214322805405,64322.48433147763,64487.237675415156,321.61242165738815,266.9863196490886,4.0,28013367.0
|
| 104 |
+
130300.0,26685440000.0,33241.372125941,,,,,,1.3459984064102173,0.0007867015973543601,0.003933507986771801,0.044716570526361465,64327.729978440686,64437.643861604774,321.63864989220343,267.0080929992849,4.0,28307638.0
|
| 105 |
+
130400.0,26705920000.0,33558.780660191,,,,,,1.3475109338760376,0.0007813102902651393,0.003906551451325697,0.04874912649393082,64438.48292502229,64522.43588294756,322.19241462511144,267.46780039251513,4.0,28601520.0
|
| 106 |
+
130500.0,26726400000.0,33879.749649243,1.3554966449737549,1.3557939529418945,1.0,0.98828125,0.9878048300743103,1.3616079092025757,0.000775944841211073,0.003879724206055365,0.04812335595488548,64397.57998199103,63882.45058867145,321.98789990995516,267.2980226493786,4.0,28896396.0
|
| 107 |
+
130600.0,26746880000.0,34197.324514087,,,,,,1.3373241424560547,0.0007706048816586228,0.0038530244082931138,0.04783732444047928,64313.695335095246,64445.683343156554,321.56847667547623,266.94983875408076,4.0,29191496.0
|
| 108 |
+
130700.0,26767360000.0,34514.833803914,,,,,,1.3622713088989258,0.0007652900517459686,0.003826450258729843,0.047168344259262085,64354.11086926733,64488.8789500351,321.77055434633667,267.1175933866545,4.0,29485282.0
|
| 109 |
+
130800.0,26787840000.0,34831.952120754,,,,,,1.3158091306686401,0.00076,0.0038,0.05013784021139145,64461.3313640084,64502.20100268707,322.306656820042,267.562638468159,4.0,29776206.0
|
| 110 |
+
130900.0,26808320000.0,35148.781033942,,,,,,1.357014775276184,0.0007547343830650754,0.003773671915325377,0.051290348172187805,64594.978818851894,64581.744271690055,322.97489409425947,268.11737515891315,4.0,30067146.0
|
| 111 |
+
131000.0,26828800000.0,35469.648920827,1.3540441989898682,1.353865385055542,1.0,0.98828125,0.9878048300743103,1.3533260822296143,0.0007494928654429532,0.0037474643272147664,0.051470208913087845,64340.064713565065,63997.59230135139,321.7003235678253,267.05929135657675,4.0,30360758.0
|
| 112 |
+
131100.0,26849280000.0,35787.521502767,,,,,,1.3484050035476685,0.0007442751192433384,0.0037213755962166918,0.05447965860366821,64391.18860967422,64466.7898229384,321.95594304837107,267.271493683806,4.0,30654703.0
|
| 113 |
+
131200.0,26869760000.0,36105.042309985,,,,,,1.343410611152649,0.0007390808239445205,0.0036954041197226027,0.04771771281957626,64401.51005072314,64428.488334046924,322.0075502536157,267.31433536798176,4.0,30948790.0
|
| 114 |
+
131300.0,26890240000.0,36422.690019984,,,,,,1.3390976190567017,0.0007339096661636087,0.0036695483308180434,0.04516662284731865,64309.29451567807,64499.847729266956,321.54647257839036,266.9315720687709,4.0,31242054.0
|
| 115 |
+
131400.0,26910720000.0,36740.020389915,,,,,,1.3400784730911255,0.0007287613394358945,0.0036438066971794724,0.04727846756577492,64356.43481216656,64474.08503076559,321.7821740608328,267.1272394842545,4.0,31535810.0
|
| 116 |
+
131500.0,26931200000.0,37060.850531658,1.3532520532608032,1.3542338609695435,1.0,0.98828125,0.9878048300743103,1.3449162244796753,0.0007236355440029084,0.0036181777200145417,0.0461578406393528,64390.98588297468,63897.97098965396,321.9549294148734,267.2706522166897,4.0,31830016.0
|
| 117 |
+
131600.0,26951680000.0,37378.538964444,,,,,,1.39369797706604,0.00071853198660875,0.00359265993304375,0.04787854105234146,64288.10775457443,64473.88812116924,321.4405387728721,266.8436311965994,4.0,32125163.0
|
| 118 |
+
131700.0,26972160000.0,37695.343125521,,,,,,1.3477435111999512,0.0007134503803043043,0.0035672519015215215,0.04566240310668945,64351.30982507397,64465.8482296431,321.7565491253699,267.10596696258006,4.0,32419158.0
|
| 119 |
+
131800.0,26992640000.0,38011.914523565,,,,,,1.3249341249465942,0.0007083904442589708,0.0035419522212948537,0.04829099029302597,64503.50204118719,64645.75614650924,322.51751020593593,267.7376782542321,4.0,32708926.0
|
| 120 |
+
131900.0,27013120000.0,38328.399953871,,,,,,1.3331323862075806,0.0007033519035795584,0.003516759517897792,0.04701286181807518,64459.84632775687,64693.29422765884,322.29923163878436,267.55647445929856,4.0,32998943.0
|
| 121 |
+
132000.0,27033600000.0,38648.065442924,1.3527144193649292,1.3516898155212402,1.0,0.98828125,0.9878048300743103,1.333401083946228,0.0006983344891360159,0.003491672445680079,0.045732781291007996,64604.08294896495,64068.96232145895,323.02041474482473,268.155164094116,4.0,33288200.0
|
| 122 |
+
132100.0,27054080000.0,38965.038923855,,,,,,1.3565045595169067,0.0006933379373936821,0.0034666896869684108,0.04871894419193268,64768.397245173255,64709.01335892875,323.84198622586626,268.83719106596476,4.0,33581325.0
|
| 123 |
+
132200.0,27074560000.0,39282.164210204,,,,,,1.3087388277053833,0.000688361990251764,0.0034418099512588196,0.04740855097770691,64532.22340068926,64611.229836925915,322.6611170034463,267.8568933335076,4.0,33877772.0
|
| 124 |
+
132300.0,27095040000.0,39599.159916135,,,,,,1.3409274816513062,0.0006834063948877587,0.0034170319744387936,0.04573512822389603,64603.66995260431,64580.28752322245,323.01834976302155,268.15344985096294,4.0,34174062.0
|
| 125 |
+
132400.0,27115520000.0,39916.031908925,,,,,,1.330757737159729,0.000678470903607559,0.003392354518037795,0.05237068235874176,64449.124171749296,64606.695200384485,322.24562085874646,267.5119695089547,4.0,34469302.0
|
| 126 |
+
132500.0,27136000000.0,40236.200357446,1.3520430326461792,1.351771593093872,1.0,0.98828125,0.9878048300743103,1.364939570426941,0.0006735552737009847,0.0033677763685049235,0.04709547758102417,64651.4084066588,63992.02060061713,323.257042033294,268.35160006680445,4.0,34764933.0
|
| 127 |
+
132600.0,27156480000.0,40553.022015183,,,,,,1.3514909744262695,0.0006686592673025067,0.003343296336512533,0.04613218829035759,64439.7736113742,64605.858261807,322.198868056871,267.4731577042312,4.0,35060105.0
|
| 128 |
+
132700.0,27176960000.0,40869.846871028,,,,,,1.3491733074188232,0.0006637826512569348,0.0033189132562846738,0.046351660043001175,64514.251990231016,64642.18352489404,322.57125995115507,267.7822985664208,4.0,35354151.0
|
| 129 |
+
132800.0,27197440000.0,41186.563032928,,,,,,1.3348289728164673,0.0006589251969898564,0.0032946259849492817,0.051978521049022675,64527.03644821256,64641.547735183805,322.6351822410628,267.8353636092387,4.0,35646923.0
|
| 130 |
+
132900.0,27217920000.0,41502.918992925,,,,,,1.3238674402236938,0.0006540866803826199,0.0032704334019130993,0.04547974839806557,64628.11871230014,64663.73183279792,323.1405935615007,268.2549304520158,4.0,35937936.0
|
| 131 |
+
133000.0,27238400000.0,41822.756647683,1.3512165546417236,1.3507912158966064,1.0,0.98828125,0.9878048300743103,1.3560221195220947,0.0006492668816516717,0.0032463344082583586,0.047044165432453156,64595.15854472241,64094.84478447367,322.9757927236121,268.1181211554214,4.0,36230074.0
|
| 132 |
+
133100.0,27258880000.0,42139.661029047,,,,,,1.3490490913391113,0.0006444655852320628,0.0032223279261603135,0.05066761374473572,64578.370636961095,64673.87799248679,322.8918531848055,268.0484388078817,4.0,36523046.0
|
| 133 |
+
133200.0,27279360000.0,42456.545114833,,,,,,1.3490285873413086,0.0006396825796649481,0.0031984128983247404,0.0510406419634819,64491.027097624166,64625.32653511451,322.45513548812085,267.68589792726965,4.0,36817038.0
|
| 134 |
+
133300.0,27299840000.0,42773.638630595,,,,,,1.3301337957382202,0.0006349176574889153,0.0031745882874445767,0.05342244356870651,64395.383408084526,64629.455664497225,321.9769170404226,267.2889052281653,4.0,37114563.0
|
| 135 |
+
133400.0,27320320000.0,43090.390464708,,,,,,1.331189751625061,0.0006301706151349834,0.0031508530756749168,0.044817376881837845,64409.78214331293,64586.77777718161,322.04891071656465,267.3486707264384,4.0,37411324.0
|
| 136 |
+
133500.0,27340800000.0,43410.474954882,1.35065495967865,1.350630760192871,1.0,0.98828125,0.9878048300743103,1.3588392734527588,0.0006254412528251198,0.003127206264125599,0.04819604009389877,62401.01911301833,63993.22981934143,312.00509556509166,259.0108048296287,4.0,37707374.0
|
| 137 |
+
133600.0,27361280000.0,43727.467451545,,,,,,1.3296618461608887,0.0006207293744741368,0.003103646872370684,0.051412228494882584,64507.28518835369,64646.296564357624,322.53642594176847,267.7533811386771,4.0,38003547.0
|
| 138 |
+
133700.0,27381760000.0,44044.351993072,,,,,,1.3253334760665894,0.0006160347875948249,0.0030801739379741244,0.045999497175216675,64586.50369390246,64607.36412543102,322.9325184695123,268.08219706462256,4.0,38299171.0
|
| 139 |
+
133800.0,27402240000.0,44361.440271443,,,,,,1.3234127759933472,0.0006113573032061991,0.003056786516030995,0.053656723350286484,64459.42549930734,64629.38763638857,322.2971274965367,267.5547277071308,4.0,38593084.0
|
| 140 |
+
133900.0,27422720000.0,44677.974025781,,,,,,1.3493478298187256,0.0006066967357447313,0.0030334836787236567,0.04322312772274017,64459.44001054171,64587.85529083543,322.29720005270855,267.55478793958446,4.0,38885826.0
|
| 141 |
+
134000.0,27443200000.0,44997.733903682,1.350184440612793,1.3492540121078491,1.0,0.984375,0.9878048300743103,1.3287179470062256,0.000602052902978451,0.0030102645148922546,0.04959018528461456,64590.592846150124,64059.1302221917,322.95296423075064,268.09917009855366,4.0,39177659.0
|
| 142 |
+
134100.0,27463680000.0,45314.698403642,,,,,,1.3669317960739136,0.0005974256259238016,0.0029871281296190077,0.04823693633079529,64502.90142867881,64689.86634993685,322.51450714339404,267.73518526403103,4.0,39470299.0
|
| 143 |
+
134200.0,27484160000.0,45631.87309636,,,,,,1.3473457098007202,0.000592814728765148,0.0029640736438257403,0.04738219454884529,64535.689913190196,64613.070231300764,322.678449565951,267.87128194775755,4.0,39764694.0
|
| 144 |
+
134300.0,27504640000.0,45948.804931255,,,,,,1.3615732192993164,0.000588220038776828,0.00294110019388414,0.045122843235731125,64472.83182745467,64570.236376078705,322.36415913727336,267.61037397529446,4.0,40065396.0
|
| 145 |
+
134400.0,27525120000.0,46265.687569857,,,,,,1.3199396133422852,0.0005836413862476532,0.002918206931238266,0.04716064780950546,64542.915031197605,64619.74363365105,322.71457515598803,267.90127158024575,4.0,40363190.0
|
| 146 |
+
134500.0,27545600000.0,46585.93537612,1.3495192527770996,1.3491456508636475,1.0,0.98828125,0.9878048300743103,1.342997670173645,0.0005790786044077667,0.0028953930220388334,0.04742615297436714,64607.86332572524,63989.485799334376,323.0393166286262,268.1708554793075,4.0,40660392.0
|
| 147 |
+
134600.0,27566080000.0,46902.85278788,,,,,,1.34673011302948,0.0005745315293577645,0.0028726576467888224,0.04495307058095932,64417.22063148554,64590.12596699138,322.0861031574277,267.3795460043696,4.0,40958209.0
|
| 148 |
+
134700.0,27586560000.0,47219.96853094,,,,,,1.3122004270553589,0.0005700000000000001,0.0028500000000000005,0.04815870150923729,64482.022567978944,64622.68720477969,322.41011283989474,267.6485224083491,4.0,41255380.0
|
| 149 |
+
134800.0,27607040000.0,47537.120478811,,,,,,1.3348530530929565,0.0005654838579719865,0.0028274192898599323,0.04458668455481529,64425.06188490566,64582.23001478296,322.1253094245283,267.41209305869796,4.0,41551817.0
|
| 150 |
+
134900.0,27627520000.0,47853.645281645,,,,,,1.3608505725860596,0.0005609829475818215,0.0028049147379091074,0.04594659432768822,64371.47699867464,64574.87832408455,321.8573849933732,267.18967578560404,4.0,41847140.0
|
| 151 |
+
135000.0,27648000000.0,48177.62083184,1.3477952480316162,1.3481123447418213,1.0,0.9921875,0.9878048300743103,1.3302065134048462,0.0005564971157455596,0.002782485578727798,0.046996526420116425,64524.506293628554,64060.29860006293,322.62253146814277,267.82486157923245,4.0,42140396.0
|
| 152 |
+
135100.0,27668480000.0,48494.650071083,,,,,,1.3430224657058716,0.0005520262119264584,0.002760131059632292,0.04706919193267822,64586.96988938551,63840.40693549744,322.93484944692756,268.084132123841,4.0,42433508.0
|
| 153 |
+
135200.0,27688960000.0,48811.551713496,,,,,,1.3513392210006714,0.0005475700880760339,0.0027378504403801694,0.04550163447856903,60122.127883189445,64599.88885199915,300.6106394159472,249.55170528370442,4.0,42728644.0
|
| 154 |
+
135300.0,27709440000.0,49128.594989026,,,,,,1.348527431488037,0.0005431285985768586,0.0027156429928842925,0.04759914055466652,64291.07652522572,64625.88630291179,321.4553826261286,266.85595381066366,4.0,43027692.0
|
| 155 |
+
135400.0,27729920000.0,49445.104680727,,,,,,1.3323137760162354,0.000538701600187037,0.0026935080009351854,0.04943371191620827,64680.928897498015,64596.994331757836,323.4046444874901,268.47413213759296,4.0,43325569.0
|
| 156 |
+
135500.0,27750400000.0,49765.140659775,1.3473271131515503,1.3475264310836792,1.0,0.98828125,0.9878048300743103,1.3196303844451904,0.0005342889519863043,0.002671444759931521,0.04767449200153351,62282.60444488013,64040.402391054224,311.41302222440066,258.51929557330453,4.0,43621835.0
|
| 157 |
+
135600.0,27770880000.0,50082.196365283,,,,,,1.3224987983703613,0.000529890515323684,0.0026494525766184197,0.04962718114256859,64551.475737628345,64657.48759903979,322.7573786881417,267.9368049015609,4.0,43918190.0
|
| 158 |
+
135700.0,27791360000.0,50399.279015318,,,,,,1.3339347839355469,0.0005255061537666554,0.0026275307688332764,0.0512981116771698,64696.37655355334,64594.48783230158,323.4818827677667,268.53825144020203,4.0,44214598.0
|
| 159 |
+
135800.0,27811840000.0,50716.061612907,,,,,,1.3605440855026245,0.0005211357330517747,0.0026056786652588733,0.046681150794029236,60031.757614656635,64589.00238607276,300.1587880732832,249.17660121780833,4.0,44510491.0
|
| 160 |
+
135900.0,27832320000.0,51032.728606058,,,,,,1.3309556245803833,0.0005167791210367015,0.0025838956051835076,0.046064846217632294,64537.78454599051,64650.17321316935,322.68892272995254,267.8799762372923,4.0,44803817.0
|
| 161 |
+
136000.0,27852800000.0,51352.516563835,1.3457850217819214,1.3467919826507568,1.0,0.98828125,0.9878048300743103,1.3253576755523682,0.0005124361876535793,0.0025621809382678964,0.04899938404560089,64632.261766415424,64032.87090660764,323.1613088320771,268.27212721892937,4.0,45094715.0
|
| 162 |
+
136100.0,27873280000.0,51669.515248547,,,,,,1.3467986583709717,0.0005081068048637257,0.002540534024318629,0.04651492089033127,64504.984245720356,64683.65856715271,322.5249212286018,267.74383050934773,4.0,45387052.0
|
| 163 |
+
136200.0,27893760000.0,51986.604441723,,,,,,1.3440107107162476,0.0005037908466135884,0.002518954233067942,0.047483302652835846,64474.690091298056,64606.10597859492,322.3734504564903,267.61808715723447,4.0,45680786.0
|
| 164 |
+
136300.0,27914240000.0,52303.779985648,,,,,,1.335484504699707,0.0004994881887919213,0.0024974409439596063,0.048509854823350906,64396.31995094147,64587.6569086834,321.98159975470736,267.29279258004806,4.0,45976193.0
|
| 165 |
+
136400.0,27934720000.0,52620.658405323,,,,,,1.3280209302902222,0.0004951987091881406,0.002475993545940703,0.049355845898389816,64401.49556555965,64570.07232069291,322.00747782779825,267.3142752437417,4.0,46274111.0
|
| 166 |
+
136500.0,27955200000.0,52940.813114466,1.3445813655853271,1.345517873764038,1.0,0.98828125,0.9878048300743103,1.3627742528915405,0.000490922287451824,0.0024546114372591197,0.04945564270019531,64694.885540394695,63991.14888547574,323.47442770197347,268.53206262271596,4.0,46571385.0
|
| 167 |
+
136600.0,27975680000.0,53257.881871692,,,,,,1.3350943326950073,0.0004866588050533114,0.002433294025266557,0.04522679001092911,64478.11170621417,64608.28769820547,322.39055853107084,267.6322894129963,4.0,46867849.0
|
| 168 |
+
136700.0,27996160000.0,53574.850502054,,,,,,1.319716453552246,0.00048240814524537186,0.0024120407262268593,0.04667273536324501,64324.06901433584,64591.813233029745,321.6203450716792,266.992897265742,4.0,47164592.0
|
| 169 |
+
136800.0,28016640000.0,53891.903970177,,,,,,1.330712914466858,0.00047817019302590216,0.002390850965129511,0.04679146781563759,64504.214072118215,64612.23463415902,322.52107036059107,267.7406337140488,4.0,47460473.0
|
| 170 |
+
136900.0,28037120000.0,54208.63582376,,,,,,1.3148925304412842,0.0004739448351016243,0.0023697241755081216,0.047960441559553146,64480.27036580558,64594.94243662847,322.40135182902793,267.64124946150304,4.0,47755443.0
|
| 171 |
+
137000.0,28057600000.0,54528.688599341,1.3445720672607422,1.3446420431137085,1.0,0.98828125,0.9878048300743103,1.3352184295654297,0.0004697319598527461,0.0023486597992637306,0.04785340279340744,64562.683266593,64019.20312877091,322.813416332965,267.98332451195427,4.0,48049481.0
|
| 172 |
+
137100.0,28078080000.0,54845.612367461,,,,,,1.3461214303970337,0.0004655314572985577,0.002327657286492788,0.04491417482495308,64546.18868760443,64630.36727442151,322.73094343802217,267.9148596977592,4.0,48342630.0
|
| 173 |
+
137200.0,28098560000.0,55162.521894927,,,,,,1.3479427099227905,0.00046134321906393075,0.0023067160953196535,0.04808060824871063,64467.79956740952,64621.35087289414,322.3389978370476,267.58948634007737,4.0,48635605.0
|
| 174 |
+
137300.0,28119040000.0,55479.634829112,,,,,,1.3517427444458008,0.0004571671383466944,0.002285835691733472,0.04996761679649353,64539.278024629246,64624.30052191502,322.6963901231462,267.8861752883609,4.0,48930098.0
|
| 175 |
+
137400.0,28139520000.0,55796.598098594,,,,,,1.3266972303390503,0.0004530031098858575,0.0022650155494292877,0.06943076103925705,64458.811196378156,64582.834824672485,322.2940559818908,267.55217789146496,4.0,49226392.0
|
| 176 |
+
137500.0,28160000000.0,56116.600391513,1.343926191329956,1.3440154790878296,1.0,0.98828125,0.9878048300743103,1.330361247062683,0.00044885102993065057,0.002244255149653253,0.047599200159311295,64567.27899312763,63972.95154753711,322.83639496563814,268.0024002072783,4.0,49522066.0
|
| 177 |
+
137600.0,28180480000.0,56433.680824134,,,,,,1.3383674621582031,0.000444710796210366,0.00222355398105183,0.04884454980492592,64495.25912688071,64640.639798569864,322.4762956344035,267.70346400742955,4.0,49816575.0
|
| 178 |
+
137700.0,28200960000.0,56750.708980216,,,,,,1.320114016532898,0.0004405823079049644,0.002202911539524822,0.04690920189023018,64433.668686003715,64589.45526194346,322.1683434300186,267.4478177072871,4.0,50111370.0
|
| 179 |
+
137800.0,28221440000.0,57067.554782392,,,,,,1.345170497894287,0.0004364654656164299,0.002182327328082149,0.04849505424499512,62341.90485652942,64600.09420795973,311.7095242826471,258.76543654289657,4.0,50405905.0
|
| 180 |
+
137900.0,28241920000.0,57384.062324542,,,,,,1.3112928867340088,0.0004323601713408474,0.002161800856704237,0.04832877591252327,64563.82364456465,64637.28208967775,322.81911822282325,267.98805793170357,4.0,50700378.0
|
| 181 |
+
138000.0,28262400000.0,57703.880251605,1.3423855304718018,1.3425947427749634,1.0,0.98828125,0.9878048300743103,1.3506327867507935,0.00042826632844118154,0.0021413316422059076,0.04837336391210556,64381.203423517174,64062.325459597436,321.90601711758586,267.23004770840896,4.0,50991859.0
|
| 182 |
+
138100.0,28282880000.0,58020.698004716,,,,,,1.3059661388397217,0.0004241838416207344,0.002120919208103672,0.04704798012971878,64394.92962907489,64680.129191372056,321.97464814537443,267.2870217065791,4.0,51282315.0
|
| 183 |
+
138200.0,28303360000.0,58337.65459867,,,,,,1.3392659425735474,0.00042011261689726303,0.0021005630844863152,0.0510365255177021,64652.56165334793,64642.98341184072,323.2628082667397,268.3563869013364,4.0,51573212.0
|
| 184 |
+
138300.0,28323840000.0,58654.701775902,,,,,,1.3562195301055908,0.0004160525615777357,0.0020802628078886785,0.04741765931248665,64467.94955610965,64614.659252304475,322.33974778054824,267.59010890513304,4.0,51870332.0
|
| 185 |
+
138400.0,28344320000.0,58971.379614234,,,,,,1.3549195528030396,0.00041200358423370756,0.0020600179211685376,0.046850576996803284,60065.75531514309,64596.20116879918,300.32877657571544,249.31771705037838,4.0,52165393.0
|
| 186 |
+
138500.0,28364800000.0,59291.448433356,1.3421576023101807,1.342147707939148,1.0,0.98828125,0.9878048300743103,1.340010404586792,0.0004079655946772987,0.0020398279733864935,0.04814302548766136,64553.17359795677,64029.92679296879,322.7658679897838,267.9438522891902,4.0,52460064.0
|
| 187 |
+
138600.0,28385280000.0,59608.311378777,,,,,,1.3185945749282837,0.00040393850393775584,0.002019692519688779,0.04830116033554077,64572.283109897,64627.13996901857,322.861415549485,268.02317102689506,4.0,52753696.0
|
| 188 |
+
138700.0,28405760000.0,59925.335112116,,,,,,1.2983057498931885,0.0003999222242385786,0.001999611121192893,0.045938413590192795,64439.64792428861,64633.76691584465,322.19823962144307,267.4726360090144,4.0,53047753.0
|
| 189 |
+
138800.0,28426240000.0,60242.462996559,,,,,,1.3198202848434448,0.0003959166689751971,0.0019795833448759854,0.0474589467048645,64568.4292403553,64600.994690071406,322.8421462017765,268.0071745918064,4.0,53341444.0
|
| 190 |
+
138900.0,28446720000.0,60558.987608025,,,,,,1.3305025100708008,0.0003919217526931833,0.0019596087634659166,0.048390503972768784,64467.38831165079,64579.77326102018,322.33694155825395,267.58777932172137,4.0,53635162.0
|
| 191 |
+
139000.0,28467200000.0,60878.926974868,1.3417000770568848,1.3412362337112427,1.0,0.98828125,0.9878048300743103,1.3108073472976685,0.00038793739106697924,0.001939686955334896,0.0486270934343338,64511.63078458382,64060.18647559636,322.5581539229191,267.7714186065427,4.0,53924632.0
|
| 192 |
+
139100.0,28487680000.0,61195.619815738,,,,,,1.3202725648880005,0.000383963500879129,0.0019198175043956447,0.04891182482242584,64431.667798292394,64654.00224764011,322.15833899146196,267.4395125298421,4.0,54214686.0
|
| 193 |
+
139200.0,28508160000.0,61512.369216715,,,,,,1.3166903257369995,0.0003799999999999999,0.0018999999999999996,0.04644284024834633,64304.08075755725,64668.52092276677,321.5204037877862,266.90993108107136,4.0,54505410.0
|
| 194 |
+
139300.0,28528640000.0,61829.53528084,,,,,,1.3362083435058594,0.0003760468073679779,0.0018802340368398896,0.045341696590185165,64450.96656177361,64656.93818522401,322.25483280886806,267.5196168026975,4.0,54798901.0
|
| 195 |
+
139400.0,28549120000.0,62146.210186107,,,,,,1.3165991306304932,0.0003721038429701231,0.0018605192148506155,0.04704742878675461,64414.13876365905,64572.01385799336,322.07069381829524,267.36675395261364,4.0,55095131.0
|
| 196 |
+
139500.0,28569600000.0,62466.421235022,1.3407313823699951,1.3404209613800049,1.0,0.98828125,0.9878048300743103,1.2983914613723755,0.00036817102782327546,0.0018408551391163772,0.04637773334980011,64502.53816041265,64030.007835759825,322.5126908020633,267.7336774295866,4.0,55390949.0
|
| 197 |
+
139600.0,28590080000.0,62783.475869435,,,,,,1.3097747564315796,0.0003642482839555954,0.0018212414197779768,0.04889160022139549,64521.67585775799,64598.64741630264,322.60837928878993,267.8131131577599,4.0,55687015.0
|
| 198 |
+
139700.0,28610560000.0,63100.714991276,,,,,,1.342232584953308,0.0003603355343885257,0.0018016776719426285,0.05172336474061012,64446.411552966274,64595.007332051624,322.2320577648314,267.50071011633304,4.0,55982416.0
|
| 199 |
+
139800.0,28631040000.0,63417.665771072,,,,,,1.3482624292373657,0.00035643270311916755,0.0017821635155958375,0.05216721445322037,64468.926918923964,64557.12598060278,322.34463459461983,267.5941656903065,4.0,56277249.0
|
| 200 |
+
139900.0,28651520000.0,63734.516713436,,,,,,1.3325473070144653,0.0003525397151030552,0.0017626985755152759,0.04792849346995354,64533.6875325676,64615.889297849484,322.668437662838,267.86297057361645,4.0,56570655.0
|
| 201 |
+
140000.0,28672000000.0,64058.562421968,1.3394700288772583,1.3391988277435303,1.0,0.984375,0.9878048300743103,1.3255984783172607,0.0003486564962373205,0.0017432824811866026,0.04595964774489403,64709.423413554294,63996.81769936526,323.54711706777147,268.59240564725474,4.0,56863136.0
|
| 202 |
+
140100.0,28692480000.0,64375.217530318,,,,,,1.3388855457305908,0.0003447829733442344,0.0017239148667211718,0.049275271594524384,64607.508592901686,63824.60931572501,323.0375429645084,268.1693830733206,4.0,57154173.0
|
| 203 |
+
140200.0,28712960000.0,64692.134125495,,,,,,1.3185312747955322,0.00034091907415511826,0.0017045953707755914,0.04795161262154579,64519.94573072625,64676.196162095686,322.59972865363125,267.8059318392283,4.0,57444733.0
|
| 204 |
+
140300.0,28733440000.0,65009.458514607,,,,,,1.352347731590271,0.0003370647272946117,0.0016853236364730586,0.048020314425230026,64603.106342561674,64622.84015141098,323.01553171280835,268.15111044861294,4.0,57737095.0
|
| 205 |
+
140400.0,28753920000.0,65326.34567634,,,,,,1.3243557214736938,0.00033321986226528895,0.0016660993113264445,0.05096733570098877,64533.78449728926,64539.77709465239,322.6689224864463,267.8633730495849,4.0,58035453.0
|
| 206 |
+
140500.0,28774400000.0,65646.663094957,1.3392360210418701,1.33824622631073,1.0,0.98828125,0.9878048300743103,1.3514217138290405,0.00032938440943261564,0.0016469220471630782,0.048699021339416504,64498.04365957629,63987.494814515245,322.4902182978814,267.7150218964642,4.0,58332460.0
|
| 207 |
+
140600.0,28794880000.0,65963.90000983,,,,,,1.3138939142227173,0.0003255583000102332,0.001627791500051166,0.04743248224258423,64573.443243833666,64577.023029464915,322.8672162191683,268.0279864486448,4.0,58628627.0
|
| 208 |
+
140700.0,28815360000.0,66280.913571925,,,,,,1.3306665420532227,0.00032174146604556586,0.0016087073302278293,0.04817257449030876,64386.85439787676,64557.57719661467,321.93427198938383,267.2535034698333,4.0,58924485.0
|
| 209 |
+
140800.0,28835840000.0,66598.113124066,,,,,,1.3209526538848877,0.00031793384040573915,0.0015896692020286958,0.050139181315898895,64428.019156343544,64603.089240065834,322.1400957817177,267.42436794244367,4.0,59220104.0
|
| 210 |
+
140900.0,28856320000.0,66914.957995259,,,,,,1.3204398155212402,0.00031413535676380415,0.0015706767838190206,0.04797720909118652,64378.708817079816,64565.17142916014,321.89354408539907,267.21969322974405,4.0,59515103.0
|
| 211 |
+
141000.0,28876800000.0,67234.873299596,1.3382184505462646,1.3376517295837402,1.0,0.98828125,0.9878048300743103,1.3031498193740845,0.0003103459495852564,0.001551729747926282,0.048093896359205246,64574.9577910355,63996.71852725315,322.8747889551775,268.0342729499757,4.0,59808996.0
|
| 212 |
+
141100.0,28897280000.0,67551.44698199,,,,,,1.3310753107070923,0.0003065655541148443,0.0015328277705742215,0.04707086831331253,64487.60411186305,64658.224691590396,322.43802055931525,267.67168998147787,4.0,60100830.0
|
| 213 |
+
141200.0,28917760000.0,67868.27750086,,,,,,1.3448582887649536,0.00030279410636365785,0.0015139705318182892,0.04826405271887779,64461.79575420913,64692.84267160465,322.30897877104564,267.5645660341083,4.0,60390417.0
|
| 214 |
+
141300.0,28938240000.0,68185.186331406,,,,,,1.323434591293335,0.000299031543096492,0.00149515771548246,0.04817268252372742,64594.29878406886,64640.40358843541,322.9714939203443,268.11455250699225,4.0,60683505.0
|
| 215 |
+
141400.0,28958720000.0,68502.124035874,,,,,,1.318102478981018,0.00029527780181947576,0.0014763890090973787,0.046806830912828445,64424.2211416104,64624.39654366114,322.12110570805197,267.40860334650006,4.0,60977822.0
|
| 216 |
+
141500.0,28979200000.0,68822.814964308,1.3368693590164185,1.3366711139678955,1.0,0.98828125,0.9878048300743103,1.3412203788757324,0.0002915328207679627,0.0014576641038398135,0.05044587329030037,64539.51078077249,63977.80744750295,322.69755390386246,267.88714140008227,4.0,61275777.0
|
| 217 |
+
141600.0,28999680000.0,69140.261655437,,,,,,1.3058795928955078,0.00028779653889467166,0.0014389826944733583,0.05199006572365761,61400.278626436,64500.63639673304,307.00139313218,254.85698486739653,4.0,61572983.0
|
| 218 |
+
141700.0,29020160000.0,69457.412362384,,,,,,1.2953492403030396,0.0002840688958580773,0.0014203444792903863,0.046102773398160934,64346.91349701395,64514.92341168211,321.73456748506976,267.08771891975465,4.0,61868830.0
|
| 219 |
+
141800.0,29040640000.0,69774.823523328,,,,,,1.3127620220184326,0.00028034983201104,0.0014017491600551999,0.05013173446059227,64529.39713533871,64575.11730805885,322.64698567669353,267.845162222806,4.0,62165069.0
|
| 220 |
+
141900.0,29061120000.0,70092.005015689,,,,,,1.3062905073165894,0.0002766392883896691,0.0013831964419483455,0.04892202094197273,64344.40226778667,64522.122895019944,321.7220113389333,267.0772954441045,4.0,62459314.0
|
| 221 |
+
142000.0,29081600000.0,70411.957163937,1.336376428604126,1.336162805557251,1.0,0.98828125,0.9878048300743103,1.3128483295440674,0.0002729372067024171,0.0013646860335120856,0.04788265749812126,64430.64323723619,63928.08121537076,322.15321618618094,267.43525983673646,4.0,62754577.0
|
| 222 |
+
142100.0,29102080000.0,70728.723328216,,,,,,1.333009958267212,0.0002692435293193939,0.0013462176465969694,0.050117600709199905,64576.69572439629,64652.20229337408,322.88347862198145,268.04148667059945,4.0,63048174.0
|
| 223 |
+
142200.0,29122560000.0,71045.532938693,,,,,,1.3222001791000366,0.000265558199261901,0.0013277909963095049,0.04856344312429428,64468.2253436055,64653.514840358665,322.3411267180275,267.5912536290859,4.0,63339183.0
|
| 224 |
+
142300.0,29143040000.0,71362.445187213,,,,,,1.334560513496399,0.00026188116019217555,0.0013094058009608777,0.04667755216360092,64480.560779471576,64644.658359353416,322.4028038973579,267.64245489497887,4.0,63630915.0
|
| 225 |
+
142400.0,29163520000.0,71679.678908722,,,,,,1.321449637413025,0.00025821235640334213,0.0012910617820167108,0.05505319684743881,64431.271501944124,64623.709180104466,322.15635750972064,267.43786760420505,4.0,63925983.0
|
| 226 |
+
142500.0,29184000000.0,72000.461097964,1.3359016180038452,1.3350422382354736,1.0,0.98828125,0.9878048300743103,1.3009840250015259,0.00025455173280956666,0.0012727586640478333,0.04599899798631668,64300.802733141776,63916.34612542429,321.5040136657089,266.8963248330618,4.0,64223325.0
|
| 227 |
+
142600.0,29204480000.0,72317.44847402,,,,,,1.3231223821640015,0.00025089923493640536,0.0012544961746820268,0.050520382821559906,64421.26421881498,64484.50500127575,322.1063210940749,267.39632990988076,4.0,64520738.0
|
| 228 |
+
142700.0,29224960000.0,72634.969438074,,,,,,1.310909390449524,0.0002472548089113474,0.0012362740445567369,0.048420026898384094,64486.209845580255,64608.41734843864,322.43104922790127,267.6659027357376,4.0,64816331.0
|
| 229 |
+
142800.0,29245440000.0,72952.621154477,,,,,,1.3363091945648193,0.00024361840145454414,0.0012180920072727207,0.04792371764779091,64360.93370968158,64499.820898251724,321.8046685484079,267.14591326687497,4.0,65113188.0
|
| 230 |
+
142900.0,29265920000.0,73269.517537471,,,,,,1.341453194618225,0.0002399899598697201,0.0011999497993486004,0.050842929631471634,64451.63391013108,64473.29768994626,322.2581695506554,267.5223867964833,4.0,65409630.0
|
| 231 |
+
143000.0,29286400000.0,73589.235639855,1.3346620798110962,1.3345751762390137,1.0,0.98828125,0.9878048300743103,1.3302104473114014,0.00023636943203526504,0.0011818471601763253,0.05093945935368538,64409.65657319422,63984.78841022054,322.0482828659711,267.34814951672143,4.0,65704334.0
|
| 232 |
+
143100.0,29306880000.0,73906.000335871,,,,,,1.3033380508422852,0.00023275676639549674,0.0011637838319774837,0.049800291657447815,64666.311327975345,64700.158188044814,323.33155663987674,268.4134583136629,4.0,65997031.0
|
| 233 |
+
143200.0,29327360000.0,74222.834678616,,,,,,1.303661584854126,0.00022915191195209696,0.0011457595597604848,0.04828755930066109,64530.512098962165,64653.834505906285,322.6525604948108,267.8497901540413,4.0,66287485.0
|
| 234 |
+
143300.0,29347840000.0,74539.39402473,,,,,,1.3198424577713013,0.0002255548182557106,0.0011277740912785529,0.04897645488381386,60752.466342594475,64639.59729600498,303.76233171297235,252.16808036869887,4.0,66579194.0
|
| 235 |
+
143400.0,29368320000.0,74855.921197737,,,,,,1.3216084241867065,0.0002219654353977091,0.0011098271769885454,0.04746153578162193,64639.080483642465,64695.778629532346,323.1954024182123,268.30042998484544,4.0,66872111.0
|
| 236 |
+
143500.0,29388800000.0,75176.037681673,1.3341885805130005,1.3335740566253662,1.0,0.98828125,0.9878048300743103,1.3348361253738403,0.00021838371400211115,0.0010919185700105558,0.049748003482818604,64558.752910802716,64060.150120027,322.7937645540136,267.96701060184546,4.0,67166572.0
|
| 237 |
+
143600.0,29409280000.0,75492.783201679,,,,,,1.3256340026855469,0.00021480960521765772,0.0010740480260882886,0.04952263459563255,62611.80532347262,64617.37414433872,313.0590266173631,259.88572493178066,4.0,67463370.0
|
| 238 |
+
143700.0,29429760000.0,75809.764543829,,,,,,1.3533755540847778,0.00021124306071003805,0.0010562153035501903,0.049480922520160675,64659.77889499285,64657.728362912836,323.29889447496424,268.3863438410414,4.0,67759975.0
|
| 239 |
+
143800.0,29450240000.0,76126.645587641,,,,,,1.3182960748672485,0.0002076840326542643,0.0010384201632713213,0.04746557027101517,64536.82448907896,64609.65444581718,322.6841224453948,267.8759912845323,4.0,68056816.0
|
| 240 |
+
143900.0,29470720000.0,76443.210406749,,,,,,1.3304626941680908,0.00020413247372718806,0.0010206623686359402,0.04832187294960022,64607.22189387698,64630.08966029066,323.0361094693849,268.16819305837873,4.0,68353486.0
|
| 241 |
+
144000.0,29491200000.0,76763.284046621,1.3334205150604248,1.3327518701553345,1.0,0.98828125,0.9878048300743103,1.3159304857254028,0.00020058833710015988,0.0010029416855007994,0.04972654953598976,64544.665789834355,64052.471659378505,322.7233289491718,267.9085385353374,4.0,68649909.0
|
| 242 |
+
144100.0,29511680000.0,77079.804951637,,,,,,1.338928461074829,0.00019705157643182473,0.0009852578821591235,0.04691397398710251,64494.00011277151,64626.243571403116,322.4700005638575,267.69823815916055,4.0,68944475.0
|
| 243 |
+
144200.0,29532160000.0,77396.457418786,,,,,,1.2989338636398315,0.00019352214586105263,0.0009676107293052631,0.0500919483602047,64664.87037982356,64703.63243414505,323.3243518991178,268.4074773033234,4.0,69237146.0
|
| 244 |
+
144300.0,29552640000.0,77713.208300146,,,,,,1.3196910619735718,0.00018999999999999996,0.0009499999999999998,0.0513344407081604,64600.67224317352,64676.75578883527,323.0033612158676,268.14100711936413,4.0,69529471.0
|
| 245 |
+
144400.0,29573120000.0,78029.529837705,,,,,,1.3320233821868896,0.0001864850939273002,0.000932425469636501,0.048616521060466766,64599.09333466894,64656.65513538683,322.9954666733447,268.13445347058826,4.0,69822235.0
|
| 246 |
+
144500.0,29593600000.0,78349.448872407,1.3327231407165527,1.3322784900665283,1.0,0.98828125,0.9878048300743103,1.320864200592041,0.0001829773831813786,0.0009148869159068929,0.04854274168610573,64642.12553957584,64102.20266755669,323.2106276978792,268.31306923976894,4.0,70116552.0
|
| 247 |
+
144600.0,29614080000.0,78666.465734373,,,,,,1.3131263256072998,0.00017947682375389092,0.0008973841187694545,0.05013646185398102,64349.27066400787,64656.85165425081,321.74635332003936,267.09750292214585,4.0,70411745.0
|
| 248 |
+
144700.0,29634560000.0,78983.129145163,,,,,,1.3377172946929932,0.0001759833720832814,0.0008799168604164069,0.048720382153987885,64496.154993774835,64602.38712240715,322.4807749688742,267.7071825237065,4.0,70707390.0
|
| 249 |
+
144800.0,29655040000.0,79299.877145678,,,,,,1.3086121082305908,0.0001724969850484583,0.0008624849252422915,0.04962160438299179,64481.1367743152,64674.50511776042,322.405683871576,267.6448457034968,4.0,71002578.0
|
| 250 |
+
144900.0,29675520000.0,79616.589749149,,,,,,1.3301678895950317,0.00016901761996258315,0.0008450880998129158,0.049309276044368744,64632.63622353521,64657.24474423073,323.16318111767606,268.2736814954676,4.0,71297656.0
|
| 251 |
+
145000.0,29696000000.0,79940.35419551,1.3324183225631714,1.3316893577575684,1.0,0.98828125,0.9878048300743103,1.3266202211380005,0.00016554523456697388,0.0008277261728348694,0.05135320499539375,64487.39109505679,64022.301288320894,322.4369554752839,267.67080580273824,4.0,71592491.0
|
| 252 |
+
145100.0,29716480000.0,80257.098056007,,,,,,1.3248653411865234,0.00016207978702511587,0.0008103989351255793,0.052146755158901215,64545.010133042626,63882.823296710456,322.72505066521313,267.9099678166661,4.0,71886603.0
|
| 253 |
+
145200.0,29736960000.0,80573.776540247,,,,,,1.2952423095703125,0.00015862123591678083,0.0007931061795839041,0.05009732022881508,64459.44001054171,64658.08165197932,322.29720005270855,267.55478793958446,4.0,72178442.0
|
| 254 |
+
145300.0,29757440000.0,80890.122974288,,,,,,1.3024221658706665,0.0001551695402322512,0.0007758477011612559,0.048413150012493134,65158.80354478727,64671.432130234345,325.79401772393635,270.45766860480813,4.0,72468568.0
|
| 255 |
+
145400.0,29777920000.0,81206.781345066,,,,,,1.3385834693908691,0.00015172465936664684,0.0007586232968332341,0.049452707171440125,64518.83597820013,64739.29854977034,322.59417989100064,267.80132553793646,4.0,72759661.0
|
| 256 |
+
145500.0,29798400000.0,81526.846169312,1.3306884765625,1.3304002285003662,1.0,0.98828125,0.9878048300743103,1.318676471710205,0.00014828655311435138,0.0007414327655717568,0.04817309230566025,64593.67705051144,64034.212176116605,322.9683852525572,268.1119718486731,4.0,73053761.0
|
| 257 |
+
145600.0,29818880000.0,81843.430584251,,,,,,1.3203755617141724,0.00014485518166353753,0.0007242759083176876,0.049982950091362,62203.45123885743,64627.55905169989,311.01725619428714,258.19075068913116,4.0,73348689.0
|
| 258 |
+
145700.0,29839360000.0,82160.278426821,,,,,,1.3191896677017212,0.00014143050559078937,0.0007071525279539468,0.046821001917123795,64486.12754702438,64690.6462735897,322.4306377351219,267.66556113530385,4.0,73642933.0
|
| 259 |
+
145800.0,29859840000.0,82477.058235668,,,,,,1.3230398893356323,0.00013801248585581635,0.0006900624292790816,0.049161408096551895,64564.86700438082,64636.85169427906,322.8243350219041,267.99238865369426,4.0,73937132.0
|
| 260 |
+
145900.0,29880320000.0,82793.685146691,,,,,,1.3282628059387207,0.00013460108379626193,0.0006730054189813096,0.05097290873527527,64544.331149955055,64650.75306944695,322.72165574977527,267.90714953006636,4.0,74230810.0
|
| 261 |
+
146000.0,29900800000.0,83113.599978035,1.3310130834579468,1.329933762550354,1.0,0.98828125,0.9878048300743103,1.3313450813293457,0.00013119626112260076,0.0006559813056130039,0.050040408968925476,64519.27212092761,64039.78387429732,322.59636060463805,267.8031358557882,4.0,74525494.0
|
| 262 |
+
146100.0,29921280000.0,83430.120177768,,,,,,1.3236660957336426,0.00012779797991312525,0.0006389898995656262,0.048792652785778046,64533.46936300924,64658.898139733225,322.6673468150462,267.8620650071096,4.0,74819101.0
|
| 263 |
+
146200.0,29941760000.0,83746.632940746,,,,,,1.3045440912246704,0.00012440620260901645,0.0006220310130450823,0.04916667565703392,64458.96598026475,64703.77533419913,322.29482990132374,267.5528203601235,4.0,75110364.0
|
| 264 |
+
146300.0,29962240000.0,84063.282045666,,,,,,1.330552101135254,0.00012102089200950239,0.0006051044600475119,0.05074424669146538,64555.24995998145,64705.29990066734,322.77624979990725,267.9524707413689,4.0,75400764.0
|
| 265 |
+
146400.0,29982720000.0,84379.468215383,,,,,,1.3136266469955444,0.00011764201126709671,0.0005882100563354835,0.05132494866847992,64686.60338526626,64677.415890080876,323.4330169263313,268.49768549721335,4.0,75690571.0
|
| 266 |
+
146500.0,30003200000.0,84699.437194314,1.3295162916183472,1.3289004564285278,1.0,0.98828125,0.9878048300743103,1.3234467506408691,0.00011426952388291998,0.0005713476194145998,0.0497475303709507,64616.22254146941,64129.12949917021,323.0811127073471,268.2055524638827,4.0,75982162.0
|
| 267 |
+
146600.0,30023680000.0,85016.279547956,,,,,,1.3220545053482056,0.0001109033937020989,0.0005545169685104945,0.04900357499718666,64597.87884218363,64646.86978300868,322.98939421091814,268.1294124202889,4.0,76277818.0
|
| 268 |
+
146700.0,30044160000.0,85332.979903604,,,,,,1.314247965812683,0.00010754358490924532,0.0005377179245462265,0.04934822767972946,64678.71782162226,64637.96580223294,323.3935891081113,268.46495452238315,4.0,76574614.0
|
| 269 |
+
146800.0,30064640000.0,85649.712993081,,,,,,1.336238145828247,0.00010419006202400876,0.0005209503101200437,0.048928145319223404,64536.86327870348,64666.939669628904,322.6843163935174,267.8761522904262,4.0,76870176.0
|
| 270 |
+
146900.0,30085120000.0,85966.442614428,,,,,,1.302660346031189,0.00010084278989670652,0.0005042139494835326,0.04751698300242424,64600.81313414472,64660.28119321905,323.0040656707236,268.14159192205426,4.0,77165640.0
|
| 271 |
+
147000.0,30105600000.0,86286.224780773,1.3291984796524048,1.3288490772247314,1.0,0.98828125,0.9878048300743103,1.319218635559082,9.750173370402385e-05,0.0004875086685201192,0.052437566220760345,64379.87165598732,64017.871457489426,321.8993582799366,267.22451987914184,4.0,77460558.0
|
| 272 |
+
147100.0,30126080000.0,86602.962826813,,,,,,1.3377420902252197,9.416685894478808e-05,0.0004708342947239404,0.04862114042043686,64626.037660188595,64687.41357876475,323.13018830094296,268.246292532476,4.0,77754556.0
|
| 273 |
+
147200.0,30146560000.0,86919.468256536,,,,,,1.3191843032836914,9.083813143581147e-05,0.0004541906571790573,0.04998672008514404,64516.99939741114,64659.256795408626,322.5849969870557,267.7937023568562,4.0,78047543.0
|
| 274 |
+
147300.0,30167040000.0,87236.11016997,,,,,,1.312848687171936,8.751551730780325e-05,0.0004375775865390162,0.04843275994062424,64510.12889582376,64706.75532430446,322.5506444791188,267.76518464719334,4.0,78339372.0
|
| 275 |
+
147400.0,30187520000.0,87552.546880251,,,,,,1.3088278770446777,8.419898300134956e-05,0.0004209949150067478,0.051206305623054504,64490.935103156255,64678.91184478495,322.4546755157813,267.685516081564,4.0,78629973.0
|
| 276 |
+
147500.0,30208000000.0,87872.182324866,1.328580617904663,1.3276305198669434,1.0,0.98828125,0.9878048300743103,1.3211209774017334,8.08884952629576e-05,0.000404442476314788,0.048745255917310715,64636.706901002966,64079.01918990342,323.18353450501485,268.29057784527265,4.0,78921261.0
|
| 277 |
+
147600.0,30228480000.0,88189.290729892,,,,,,1.3118075132369995,7.758402114116653e-05,0.00038792010570583264,0.04838121682405472,64546.79495671537,64714.879701528305,322.73397478357685,267.9173761670829,4.0,79213886.0
|
| 278 |
+
147700.0,30248960000.0,88506.314216456,,,,,,1.3287893533706665,7.428552798272048e-05,0.0003714276399136024,0.049025099724531174,64554.085628377565,64583.758813098044,322.7704281418878,267.94763789616707,4.0,79511289.0
|
| 279 |
+
147800.0,30269440000.0,88823.061100156,,,,,,1.3141881227493286,7.099298342880416e-05,0.00035496491714402076,0.05054953694343567,64419.71339233794,64601.032488035176,322.0985669616897,267.38989282247934,4.0,79808220.0
|
| 280 |
+
147900.0,30289920000.0,89139.783821562,,,,,,1.3111181259155273,6.770635541133844e-05,0.0003385317770566922,0.0507337786257267,64655.91944127226,64657.45533185285,323.2795972063613,268.37032422744244,4.0,80104514.0
|
| 281 |
+
148000.0,30310400000.0,89459.776510258,1.3279074430465698,1.327405571937561,1.0,0.98828125,0.9878048300743103,1.318596363067627,6.442561214933782e-05,0.00032212806074668907,0.048985835164785385,64559.34485970675,64020.980939741574,322.7967242985337,267.969467631622,4.0,80401259.0
|
| 282 |
+
148100.0,30330880000.0,89776.437851611,,,,,,1.299643874168396,6.115072214532315e-05,0.00030575361072661573,0.04956434667110443,64614.497061071095,64642.63709820397,323.0724853053555,268.198390432348,4.0,80697591.0
|
| 283 |
+
148200.0,30351360000.0,90092.977495072,,,,,,1.3042606115341187,5.788165418179506e-05,0.0002894082709089753,0.04867332801222801,64547.83776622804,64674.95729436383,322.7391888311402,267.92170460490337,4.0,80992726.0
|
| 284 |
+
148300.0,30371840000.0,90409.66682852,,,,,,1.3323928117752075,5.461837731776107e-05,0.00027309188658880535,0.049485430121421814,64628.5806462486,64699.793328079846,323.142903231243,268.2568478226849,4.0,81286303.0
|
| 285 |
+
148400.0,30392320000.0,90725.772811126,,,,,,1.312987208366394,5.1360860885319516e-05,0.00025680430442659755,0.04983627796173096,64648.751716422375,64669.19322219776,323.24375858211187,268.3405728193957,4.0,81578265.0
|
| 286 |
+
148500.0,30412800000.0,91045.521373021,1.3272559642791748,1.326671838760376,1.0,0.98828125,0.9878048300743103,1.3140791654586792,4.810907448629696e-05,0.00024054537243148482,0.04812338203191757,64527.065531602646,64144.37067158387,322.63532765801324,267.83548432701514,4.0,81870047.0
|
| 287 |
+
148600.0,30433280000.0,91362.246426238,,,,,,1.327973484992981,4.4862987988937466e-05,0.0002243149399446873,0.04873821884393692,64685.35637384535,64692.81826203207,323.4267818692268,268.4925094690595,4.0,82163489.0
|
| 288 |
+
148700.0,30453760000.0,91679.031591409,,,,,,1.319491982460022,4.1622571524646845e-05,0.00020811285762323422,0.047452885657548904,65135.52228774075,64661.92471693673,325.67761143870376,270.3610340111625,4.0,82459128.0
|
| 289 |
+
148800.0,30474240000.0,91995.849805712,,,,,,1.3034337759017944,3.838779548478472e-05,0.00019193897742392362,0.05228652060031891,64617.16065821543,64649.62864334581,323.0858032910771,268.20944634857983,4.0,82756798.0
|
| 290 |
+
148900.0,30494720000.0,92312.399009158,,,,,,1.2822425365447998,3.515863051750881e-05,0.00017579315258754402,0.04834494739770889,64581.82754280289,64642.93914342073,322.90913771401443,268.0627875473259,4.0,83053605.0
|
| 291 |
+
149000.0,30515200000.0,92632.553257514,1.3271422386169434,1.3264381885528564,1.0,0.98828125,0.9878048300743103,1.33193838596344,3.193504752466747e-05,0.00015967523762333734,0.05056004226207733,64665.92674431455,64056.78833978125,323.32963372157275,268.4118620044211,4.0,83349707.0
|
| 292 |
+
149100.0,30535680000.0,92949.235449435,,,,,,1.3139196634292603,2.8717017658740084e-05,0.00014358508829370042,0.04915599897503853,64498.750727024344,64608.63004786801,322.4937536351217,267.7179567541218,4.0,83646310.0
|
| 293 |
+
149200.0,30556160000.0,93265.912403105,,,,,,1.3252984285354614,2.550451231982599e-05,0.00012752256159912994,0.05036770552396774,64522.262280411385,64670.671560875955,322.6113114020569,267.81554724947165,4.0,83942568.0
|
| 294 |
+
149300.0,30576640000.0,93582.749706333,,,,,,1.336243748664856,2.2297503152678234e-05,0.00011148751576339117,0.04953473061323166,64587.47979840132,64671.735418402095,322.9373989920066,268.0862486268477,4.0,84237994.0
|
| 295 |
+
149400.0,30597120000.0,93899.255422761,,,,,,1.298284649848938,1.90959620437835e-05,9.54798102189175e-05,0.04897473752498627,64458.21625273396,64639.01788302614,322.2910812636698,267.54970843128143,4.0,84531355.0
|
| 296 |
+
149500.0,30617600000.0,94219.028329399,1.326615333557129,1.3261692523956299,1.0,0.98828125,0.9878048300743103,1.3169710636138916,1.5899861118488014e-05,7.949930559244006e-05,0.0504889115691185,64571.98701544425,64064.58265060807,322.8599350772212,268.0219420139141,4.0,84823448.0
|
| 297 |
+
149600.0,30638080000.0,94535.819803776,,,,,,1.3390767574310303,1.2709172738163532e-05,6.354586369081767e-05,0.04887572303414345,64614.85673107264,64687.35112806299,323.0742836553632,268.19988333130857,4.0,85116780.0
|
| 298 |
+
149700.0,30658560000.0,94852.68563444,,,,,,1.3247568607330322,9.523869497422066e-06,4.761934748711033e-05,0.05054379254579544,64594.67765882441,64648.35006916127,322.97338829412206,268.1161251200162,4.0,85411633.0
|
| 299 |
+
149800.0,30679040000.0,95169.457649519,,,,,,1.3066437244415283,6.343924221366659e-06,3.1719621106833295e-05,0.047905389219522476,64590.05860445763,64633.202391487626,322.9502930222881,268.096952596777,4.0,85711796.0
|
| 300 |
+
149900.0,30699520000.0,95486.153807493,,,,,,1.3028910160064697,3.1693099628879563e-06,1.584654981443978e-05,0.04718441516160965,64437.15362046918,64652.32194982628,322.1857681023459,267.4622827864398,4.0,86008158.0
|
| 301 |
+
150000.0,30720000000.0,,1.3263065814971924,1.3260610103607178,,,,,,,,,,,,,
|
training-curves/700m/anneal-T300000.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
training-curves/700m/trunk.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
training-curves/91m/anneal-T018750.csv
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step,tokens,wall_clock_s,train_loss,val_loss,valid_prob_mass,game_end_accuracy,game_end_top1_accuracy,batch_train_loss,lr,muon_lr,unclipped_grad_norm,tokens_per_second,avg_tokens_per_second,samples_per_second,t_flops,shard_idx,shard_sample_idx
|
| 2 |
+
15100.0,3092480000.0,247.728995229,,,,,,1.4520933628082275,0.001589731299247464,0.00794865649623732,0.06307422369718552,441864.290149129,125088.3596825596,2209.321450745645,229.16048746386997,0.0,44383680.0
|
| 3 |
+
15200.0,3112960000.0,296.418676837,,,,,,1.4490127563476562,0.0014612137954158843,0.0073060689770794215,0.06083380803465843,423163.4537691638,427480.15395832394,2115.817268845819,219.46182460209278,0.0,44678974.0
|
| 4 |
+
15300.0,3133440000.0,345.309179154,,,,,,1.4579333066940308,0.0013625988462982238,0.006812994231491119,0.057544808834791183,412699.6475931356,420630.58557844866,2063.498237965678,214.03506580423476,0.0,44974868.0
|
| 5 |
+
15400.0,3153920000.0,409.096927663,,,,,,1.4604582786560059,0.0012794625984949282,0.00639731299247464,0.0636684000492096,426304.98418341874,418902.380503809,2131.524920917094,221.0910910016705,0.0,45268737.0
|
| 6 |
+
15500.0,3174400000.0,458.150890297,1.4567971229553223,1.4611715078353882,0.99609375,0.94921875,0.9603174328804016,1.4496937990188599,0.0012062180938267897,0.006031090469133948,0.05966643616557121,467751.30209014006,318876.1137301739,2338.7565104507003,242.58605818238848,0.0,45561426.0
|
| 7 |
+
15600.0,3194880000.0,506.887325074,,,,,,1.4421172142028809,0.00114,0.005699999999999999,0.05583459138870239,460380.92347006587,421271.90951838315,2301.9046173503293,238.76361858945498,0.0,45852362.0
|
| 8 |
+
15700.0,3215360000.0,555.488161091,,,,,,1.4400213956832886,0.001079106178201671,0.005395530891008355,0.058774810284376144,439228.27117617946,420226.3287751866,2196.141355880897,227.79339035674403,0.0,46142709.0
|
| 9 |
+
15800.0,3235840000.0,604.247400142,,,,,,1.4665898084640503,0.0010224275908317687,0.005112137954158844,0.056311920285224915,461019.8863703451,421399.16951255535,2305.0994318517255,239.09499872802627,0.0,46434688.0
|
| 10 |
+
15900.0,3256320000.0,655.403149976,,,,,,1.4414145946502686,0.0009691938977423924,0.004845969488711962,0.05765156075358391,435438.94719286746,420030.10372318985,2177.1947359643373,225.82816404057976,0.0,46728895.0
|
| 11 |
+
16000.0,3276800000.0,704.753194259,1.4462552070617676,1.4509319067001343,0.99609375,0.96484375,0.976190447807312,1.4413275718688965,0.0009188442189607878,0.004594221094803939,0.05807521939277649,461264.22758595884,396900.43590349687,2306.321137929794,239.2217194278562,0.0,47025195.0
|
| 12 |
+
16100.0,3297280000.0,753.594795542,,,,,,1.4390126466751099,0.0008709551354127783,0.004354775677063891,0.05610484257340431,425619.12654758815,418776.51155827095,2128.095632737941,220.73539022733385,0.0,47320401.0
|
| 13 |
+
16200.0,3317760000.0,802.55251916,,,,,,1.4290363788604736,0.0008251976925964478,0.004125988462982239,0.05664672330021858,425479.1427941661,419320.729611519,2127.3957139708305,220.66279159040758,0.0,47615552.0
|
| 14 |
+
16300.0,3338240000.0,851.3453513,,,,,,1.4381417036056519,0.0007813102902651393,0.003906551451325697,0.0546606071293354,342613.1246953751,418326.95643656974,1713.0656234768755,177.6866617581013,0.0,47910279.0
|
| 15 |
+
16400.0,3358720000.0,902.453052363,,,,,,1.4205611944198608,0.0007390808239445205,0.0036954041197226027,0.05362386628985405,459950.5130173947,419741.0001420387,2299.7525650869734,238.5403983126809,0.0,48204936.0
|
| 16 |
+
16500.0,3379200000.0,951.514957645,1.4378999471664429,1.4425865411758423,0.99609375,0.95703125,0.9682539105415344,1.4251459836959839,0.0006983344891360159,0.003491672445680079,0.05680505558848381,460832.90640246094,397267.23531934805,2304.164532012305,238.9980268261515,0.0,48498886.0
|
| 17 |
+
16600.0,3399680000.0,1000.208496936,,,,,,1.4299752712249756,0.0006589251969898564,0.0032946259849492817,0.0584043525159359,426747.197407106,421262.3543788797,2133.73598703553,221.3204324537008,0.0,48790688.0
|
| 18 |
+
16700.0,3420160000.0,1048.939121742,,,,,,1.4329942464828491,0.0006207293744741368,0.003103646872370684,0.05627419799566269,420319.47420031036,420595.6409184819,2101.597371001552,217.98687458041127,0.0,49081765.0
|
| 19 |
+
16800.0,3440640000.0,1097.602587906,,,,,,1.4360826015472412,0.0005836413862476532,0.002918206931238266,0.05681449547410011,428176.8743847091,420275.6959104192,2140.8843719235456,222.06189421109428,0.0,49374602.0
|
| 20 |
+
16900.0,3461120000.0,1148.942767956,,,,,,1.4209014177322388,0.0005475700880760339,0.0027378504403801694,0.05444109067320824,425377.16445087554,420855.9220283164,2126.8858222543777,220.60990339061362,0.0,49669472.0
|
| 21 |
+
17000.0,3481600000.0,1198.407080055,1.4310945272445679,1.4357858896255493,0.99609375,0.96875,0.9735449552536011,1.4289910793304443,0.0005124361876535793,0.0025621809382678964,0.058099165558815,460407.3264816626,395480.80468424474,2302.036632408313,238.77731176888338,0.0,49966441.0
|
| 22 |
+
17100.0,3502080000.0,1247.181750643,,,,,,1.4196200370788574,0.00047817019302590216,0.002390850965129511,0.05379527062177658,407653.8224836795,417806.0870335617,2038.2691124183975,211.41819051578332,0.0,50262414.0
|
| 23 |
+
17200.0,3522560000.0,1296.042921275,,,,,,1.4120163917541504,0.000444710796210366,0.00222355398105183,0.05449235811829567,413560.1877644952,419895.44445608876,2067.800938822476,214.4813607629979,0.0,50558434.0
|
| 24 |
+
17300.0,3543040000.0,1344.815393974,,,,,,1.4188016653060913,0.00041200358423370756,0.0020600179211685376,0.053668465465307236,410229.0897142988,419153.67875271913,2051.145448571494,212.75378044028088,0.0,50854918.0
|
| 25 |
+
17400.0,3563520000.0,1395.81095559,,,,,,1.4150185585021973,0.0003799999999999999,0.0018999999999999996,0.05345272272825241,421506.6495511092,419915.9975848243,2107.5332477555457,218.60256968897576,0.0,51149738.0
|
| 26 |
+
17500.0,3584000000.0,1444.960636072,1.4250495433807373,1.4295432567596436,0.99609375,0.96875,0.9735449552536011,1.4066394567489624,0.0003486564962373205,0.0017432824811866026,0.05455288290977478,344162.3606111793,396971.3210760843,1720.8118030558965,178.49012939641716,0.0,51442458.0
|
| 27 |
+
17600.0,3604480000.0,1493.828704044,,,,,,1.4010125398635864,0.00031793384040573915,0.0015896692020286958,0.05427978187799454,422893.04328262026,421805.7803034725,2114.465216413101,219.32158380804546,0.0,51732716.0
|
| 28 |
+
17700.0,3624960000.0,1542.321894089,,,,,,1.4368442296981812,0.00028779653889467166,0.0014389826944733583,0.05554879456758499,321414.2706777777,419094.46345505776,1607.0713533888884,166.6924723007263,0.0,52024174.0
|
| 29 |
+
17800.0,3645440000.0,1591.109966616,,,,,,1.4249110221862793,0.00025821235640334213,0.0012910617820167108,0.055315159261226654,423949.77079886757,422333.38315987436,2119.748853994338,219.8696258158257,0.0,52318071.0
|
| 30 |
+
17900.0,3665920000.0,1642.479111932,,,,,,1.404191493988037,0.00022915191195209696,0.0011457595597604848,0.055951911956071854,419326.38740000036,419780.8842429613,2096.631937000002,217.47183804017362,0.0,52613297.0
|
| 31 |
+
18000.0,3686400000.0,1691.730169662,1.4201276302337646,1.4244730472564697,0.99609375,0.96875,0.976190447807312,1.4116407632827759,0.00020058833710015988,0.0010029416855007994,0.05421319603919983,458424.70367607113,395245.1650116727,2292.1235183803556,237.74908020839004,0.0,52909675.0
|
| 32 |
+
18100.0,3706880000.0,1740.789244772,,,,,,1.4170584678649902,0.0001724969850484583,0.0008624849252422915,0.05296416953206062,417187.2039599575,419648.8673971882,2085.9360197997876,216.36241070960247,0.0,53205427.0
|
| 33 |
+
18200.0,3727360000.0,1789.801637409,,,,,,1.4096277952194214,0.00014485518166353753,0.0007242759083176876,0.05408620089292526,425818.2982307338,417462.2793836598,2129.091491153669,220.83868501945938,0.0,53501704.0
|
| 34 |
+
18300.0,3747840000.0,1838.923257966,,,,,,1.4168485403060913,0.00011764201126709671,0.0005882100563354835,0.053868845105171204,424237.66735661373,417860.7086961854,2121.1883367830687,220.0189352689386,0.0,53798516.0
|
| 35 |
+
18400.0,3768320000.0,1891.415621716,,,,,,1.4071788787841797,9.083813143581147e-05,0.0004541906571790573,0.0549842044711113,425051.54058852524,416930.98425282876,2125.257702942626,220.44102773197898,0.0,54094085.0
|
| 36 |
+
18500.0,3788800000.0,1940.849317078,1.415724515914917,1.4206244945526123,0.99609375,0.97265625,0.978835940361023,1.4167433977127075,6.442561214933782e-05,0.00032212806074668907,0.053760457783937454,458483.4273258203,386859.2832237339,2292.4171366291016,237.7795355778376,0.0,54387580.0
|
| 37 |
+
18600.0,3809280000.0,1989.844032183,,,,,,1.4223358631134033,3.838779548478472e-05,0.00019193897742392362,0.052841562777757645,417377.3436718019,418084.45996312663,2086.8867183590096,216.46102132382023,0.0,54678659.0
|
| 38 |
+
18700.0,3829760000.0,2017.398141871,,,,,,1.4260174036026,1.2709172738163532e-05,6.354586369081767e-05,0.054473139345645905,437589.06416357704,418011.6077792426,2187.945320817885,226.94326173934573,0.0,54970386.0
|
| 39 |
+
18750.0,3840000000.0,2020.119597511,1.4146400690078735,1.419543981552124,,,,,,,,,,,,,
|
training-curves/91m/anneal-T037500.csv
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step,tokens,wall_clock_s,train_loss,val_loss,valid_prob_mass,game_end_accuracy,game_end_top1_accuracy,batch_train_loss,lr,muon_lr,unclipped_grad_norm,tokens_per_second,avg_tokens_per_second,samples_per_second,t_flops,shard_idx,shard_sample_idx
|
| 2 |
+
30100.0,6164480000.0,153.093588602,,,,,,1.441444993019104,0.0016806068977079421,0.00840303448853971,0.05952160060405731,417455.0305172156,321090.41250444285,2087.275152586078,216.50131142139415,1.0,10078197.0
|
| 3 |
+
30200.0,6184960000.0,201.890129712,,,,,,1.4368921518325806,0.001589731299247464,0.00794865649623732,0.05476254224777222,427642.25894408894,420683.0041861265,2138.2112947204446,221.78463094789444,1.0,10372142.0
|
| 4 |
+
30300.0,6205440000.0,250.620983658,,,,,,1.4298450946807861,0.00152,0.0076,0.26042795181274414,428301.3405585012,419709.1602495343,2141.506702792506,222.12644509174893,1.0,10666443.0
|
| 5 |
+
30400.0,6225920000.0,315.938119427,,,,,,1.42842698097229,0.0014612137954158843,0.0073060689770794215,0.05658601224422455,425178.61558016785,420275.2805456712,2125.893077900839,220.50693160264356,1.0,10960698.0
|
| 6 |
+
30500.0,6246400000.0,364.92433144,1.4413425922393799,1.4457356929779053,0.99609375,0.96875,0.9867724776268005,1.4366635084152222,0.001409422109480394,0.00704711054740197,0.05137280002236366,465960.2130956972,311451.4323760442,2329.801065478486,241.65716024651056,1.0,11253390.0
|
| 7 |
+
30600.0,6266880000.0,413.604080123,,,,,,1.4262052774429321,0.0013625988462982238,0.006812994231491119,0.05517829582095146,430814.1592991367,421876.0886075994,2154.0707964956837,223.42964786316554,1.0,11545314.0
|
| 8 |
+
30700.0,6287360000.0,462.104757084,,,,,,1.4393582344055176,0.0013195404119722602,0.006597702059861301,0.05287398397922516,422442.1568024771,420715.5442426782,2112.2107840123854,219.08774421547372,1.0,11836270.0
|
| 9 |
+
30800.0,6307840000.0,510.646572443,,,,,,1.4261428117752075,0.0012794625984949282,0.00639731299247464,0.05253478139638901,425305.1348435494,422268.9359109986,2126.525674217747,220.5725472604744,1.0,12126238.0
|
| 10 |
+
30900.0,6328320000.0,561.708950131,,,,,,1.4438430070877075,0.0012418206931238266,0.006209103465619133,0.05681441351771355,426823.74589135544,421910.97282585804,2134.118729456777,221.36013217227116,1.0,12418214.0
|
| 11 |
+
31000.0,6348800000.0,610.76750514,1.4341233968734741,1.4387644529342651,0.99609375,0.96875,0.976190447807312,1.4223872423171997,0.0012062180938267897,0.006031090469133948,0.05158037692308426,459638.6854982623,397609.0190669187,2298.1934274913115,238.3786777394594,1.0,12711576.0
|
| 12 |
+
31100.0,6369280000.0,659.419763498,,,,,,1.434576153755188,0.001172355398105183,0.005861776990525915,0.05538174510002136,415617.39451874385,421299.4348747383,2078.086972593719,215.54827319092564,1.0,13007664.0
|
| 13 |
+
31200.0,6389760000.0,708.080707254,,,,,,1.4123220443725586,0.00114,0.005699999999999999,0.05443646386265755,428076.5855275125,420952.3379677304,2140.3829276375623,222.00988221574923,1.0,13302769.0
|
| 14 |
+
31300.0,6410240000.0,756.706156238,,,,,,1.4187933206558228,0.0011089669202028697,0.005544834601014348,0.05316765606403351,424371.5938609415,420877.02296706167,2121.8579693047072,220.0883924839711,1.0,13597065.0
|
| 15 |
+
31400.0,6430720000.0,807.793639979,,,,,,1.4211089611053467,0.001079106178201671,0.005395530891008355,0.05522129312157631,426638.46520237665,421185.2989854417,2133.1923260118833,221.26404155361158,1.0,13892145.0
|
| 16 |
+
31500.0,6451200000.0,856.757341644,1.4290714263916016,1.433800458908081,0.99609375,0.97265625,0.9814814329147339,1.4225002527236938,0.00105029416855008,0.0052514708427504,0.055609215050935745,461274.630829812,397426.8544415977,2306.37315414906,239.22711477770852,1.0,14186010.0
|
| 17 |
+
31600.0,6471680000.0,905.236533945,,,,,,1.4088068008422852,0.0010224275908317687,0.005112137954158844,0.052159182727336884,434109.7973616637,422109.0902715222,2170.5489868083187,225.1388378605249,1.0,14478925.0
|
| 18 |
+
31700.0,6492160000.0,953.760941945,,,,,,1.411670207977295,0.000995419065717906,0.004977095328589529,0.05333247780799866,425056.58847677166,422455.1915481014,2125.2829423838584,220.4436456772554,1.0,14770021.0
|
| 19 |
+
31800.0,6512640000.0,1002.341727548,,,,,,1.4155962467193604,0.0009691938977423924,0.004845969488711962,0.05271941423416138,411450.70730304223,422062.41667704633,2057.253536515211,213.38733804693067,1.0,15060542.0
|
| 20 |
+
31900.0,6533120000.0,1053.272754261,,,,,,1.4250094890594482,0.0009436876381990383,0.004718438190995192,0.052662529051303864,424542.3207172299,421571.72085964144,2122.7116035861495,220.1769351666057,1.0,15351547.0
|
| 21 |
+
32000.0,6553600000.0,1102.298706366,1.4232735633850098,1.4287519454956055,0.99609375,0.97265625,0.9841269254684448,1.4101279973983765,0.0009188442189607878,0.004594221094803939,0.055097680538892746,398107.91133109946,398091.0961155217,1990.5395566554973,206.46747215772425,1.0,15644645.0
|
| 22 |
+
32100.0,6574080000.0,1150.743778872,,,,,,1.4056042432785034,0.0008946145017954555,0.004473072508977278,0.0559249110519886,416923.97035012173,422179.9105717844,2084.6198517506086,216.22589200082317,1.0,15941405.0
|
| 23 |
+
32200.0,6594560000.0,1199.148018672,,,,,,1.4185590744018555,0.0008709551354127783,0.004354775677063891,0.05323636531829834,397311.88443362736,422752.7765016764,1986.5594221681367,206.05463519414545,1.0,16237037.0
|
| 24 |
+
32300.0,6615040000.0,1247.594537453,,,,,,1.4107054471969604,0.0008478276440303772,0.004239138220151885,0.05335734784603119,420088.8400275823,423109.2043763893,2100.4442001379116,217.86726265288857,1.0,16532263.0
|
| 25 |
+
32400.0,6635520000.0,1298.39741702,,,,,,1.417954444885254,0.0008251976925964478,0.004125988462982239,0.05475807189941406,427725.9441910491,422741.4439211586,2138.6297209552454,221.82803194773638,1.0,16827595.0
|
| 26 |
+
32500.0,6656000000.0,1347.403399212,1.420137882232666,1.4249017238616943,0.99609375,0.9765625,0.9841269254684448,1.426977276802063,0.0008030344885397111,0.004015172442698556,0.05362870544195175,461548.0079135399,399635.3042804971,2307.7400395676996,239.36889411395538,1.0,17123544.0
|
| 27 |
+
32600.0,6676480000.0,1395.973828728,,,,,,1.4174293279647827,0.0007813102902651393,0.003906551451325697,0.05175737291574478,419480.1723056007,421740.33234304446,2097.4008615280036,217.5515942565451,1.0,17417583.0
|
| 28 |
+
32700.0,6696960000.0,1444.464773084,,,,,,1.4090455770492554,0.00076,0.0038,0.05410343036055565,423767.39442734234,421661.3426321674,2118.8369721367117,219.7750414397348,1.0,17710893.0
|
| 29 |
+
32800.0,6717440000.0,1492.93220023,,,,,,1.4027907848358154,0.0007390808239445205,0.0036954041197226027,0.05354127660393715,420790.3665214871,422353.7769360139,2103.951832607436,218.23108963980755,1.0,18001717.0
|
| 30 |
+
32900.0,6737920000.0,1543.916940019,,,,,,1.4213190078735352,0.00071853198660875,0.00359265993304375,0.05199210345745087,425513.70853129285,422557.69419913203,2127.568542656464,220.68071813787046,1.0,18293113.0
|
| 31 |
+
33000.0,6758400000.0,1592.912077336,1.4163709878921509,1.4206751585006714,0.99609375,0.9765625,0.9814814329147339,1.4089441299438477,0.0006983344891360159,0.003491672445680079,0.05272650346159935,460832.4119476139,398217.52362555865,2304.1620597380693,238.99777039105066,1.0,18586148.0
|
| 32 |
+
33100.0,6778880000.0,1641.514568749,,,,,,1.4135149717330933,0.000678470903607559,0.003392354518037795,0.05350583419203758,415272.8054671396,421840.2696482466,2076.3640273356978,215.36956177024555,1.0,18882115.0
|
| 33 |
+
33200.0,6799360000.0,1690.01712785,,,,,,1.4033948183059692,0.0006589251969898564,0.0032946259849492817,0.05332137644290924,417065.87273033604,421385.09186470986,2085.32936365168,216.29948567957737,1.0,19178007.0
|
| 34 |
+
33300.0,6819840000.0,1738.589758365,,,,,,1.4065850973129272,0.0006396825796649481,0.0031984128983247404,0.053323689848184586,430283.93405735795,422251.4541303007,2151.41967028679,223.1546614531285,1.0,19473121.0
|
| 35 |
+
33400.0,6840320000.0,1789.595908046,,,,,,1.4055118560791016,0.0006207293744741368,0.003103646872370684,0.05504900962114334,418694.8218900584,421643.60067174473,2093.474109450292,217.14429435006272,1.0,19768078.0
|
| 36 |
+
33500.0,6860800000.0,1838.556087825,1.4131145477294922,1.4178286790847778,0.99609375,0.97265625,0.978835940361023,1.3849639892578125,0.000602052902978451,0.0030102645148922546,0.056299686431884766,458839.7617861021,398035.76390155125,2294.1988089305105,237.96433842441024,1.0,20062659.0
|
| 37 |
+
33600.0,6881280000.0,1887.166756521,,,,,,1.40131676197052,0.0005836413862476532,0.002918206931238266,0.05205550044775009,424456.31090796785,422160.93818498007,2122.2815545398394,220.13232859789994,1.0,20356547.0
|
| 38 |
+
33700.0,6901760000.0,1935.696794496,,,,,,1.3912696838378906,0.0005654838579719865,0.0028274192898599323,0.0540158711373806,420867.6795658612,421313.8084989481,2104.338397829306,218.2711858759847,1.0,20649529.0
|
| 39 |
+
33800.0,6922240000.0,1984.266738732,,,,,,1.4157437086105347,0.0005475700880760339,0.0027378504403801694,0.053276415914297104,425643.38008013455,422013.7319204612,2128.216900400673,220.74796863990298,1.0,20939148.0
|
| 40 |
+
33900.0,6942720000.0,2035.290809847,,,,,,1.4015614986419678,0.000529890515323684,0.0026494525766184197,0.05144341662526131,420744.61058295856,421666.6063124129,2103.723052914793,218.20735960909147,1.0,21230197.0
|
| 41 |
+
34000.0,6963200000.0,2084.115729512,1.4090855121612549,1.4140424728393555,0.99609375,0.9765625,0.9841269254684448,1.4071571826934814,0.0005124361876535793,0.0025621809382678964,0.052143871784210205,460453.97097670595,397910.49871359515,2302.2698548835297,238.80150262444684,1.0,21522308.0
|
| 42 |
+
34100.0,6983680000.0,2132.575669427,,,,,,1.4002833366394043,0.0004951987091881406,0.002475993545940703,0.05517895892262459,416261.08404128137,423327.1616625656,2081.305420206407,215.8821046592036,1.0,21816617.0
|
| 43 |
+
34200.0,7004160000.0,2181.016667519,,,,,,1.3809412717819214,0.00047817019302590216,0.002390850965129511,0.05281761288642883,384530.67391863914,422624.0261394016,1922.6533695931957,199.42601980862852,1.0,22112260.0
|
| 44 |
+
34300.0,7024640000.0,2229.424169973,,,,,,1.4016931056976318,0.00046134321906393075,0.0023067160953196535,0.05332516133785248,426240.6770678785,422788.3885182202,2131.2033853393923,221.0577399247151,1.0,22407729.0
|
| 45 |
+
34400.0,7045120000.0,2280.106187282,,,,,,1.3819431066513062,0.000444710796210366,0.00222355398105183,0.051716048270463943,424908.1465256693,423081.5691518448,2124.5407326283466,220.36666043397352,1.0,22702738.0
|
| 46 |
+
34500.0,7065600000.0,2328.979660145,1.4064407348632812,1.4110972881317139,0.99609375,0.98046875,0.9841269254684448,1.3937275409698486,0.00042826632844118154,0.0021413316422059076,0.05276203900575638,459816.57472049474,400567.32665882364,2299.0828736024737,238.47093498176244,1.0,22998398.0
|
| 47 |
+
34600.0,7086080000.0,2377.41866729,,,,,,1.3870896100997925,0.00041200358423370756,0.0020600179211685376,0.053406547755002975,426091.8297881628,422908.3815974019,2130.459148940814,220.98054446914705,1.0,23293191.0
|
| 48 |
+
34700.0,7106560000.0,2425.879031526,,,,,,1.3905755281448364,0.0003959166689751971,0.0019795833448759854,0.051615141332149506,427049.0976965522,422805.5110553605,2135.245488482761,221.47700454843067,1.0,23586255.0
|
| 49 |
+
34800.0,7127040000.0,2474.360664799,,,,,,1.4051355123519897,0.0003799999999999999,0.0018999999999999996,0.05364017188549042,425955.1257073066,422620.3894636442,2129.775628536533,220.9096467421623,1.0,23878996.0
|
| 50 |
+
34900.0,7147520000.0,2525.43207835,,,,,,1.4052191972732544,0.0003642482839555954,0.0018212414197779768,0.05213259160518646,424759.1781069838,422435.6792029122,2123.7958905349187,220.28940215308555,1.0,24170454.0
|
| 51 |
+
35000.0,7168000000.0,2574.818665938,1.4030585289001465,1.408026099205017,1.0,0.98046875,0.9841269254684448,1.405041217803955,0.0003486564962373205,0.0017432824811866026,0.05449867993593216,459636.96386872797,397538.7283766615,2298.18481934364,238.3777848647191,1.0,24462554.0
|
| 52 |
+
35100.0,7188480000.0,2623.310904255,,,,,,1.4047493934631348,0.00033321986226528895,0.0016660993113264445,0.05399498715996742,427010.4611897228,418478.0171848064,2135.052305948614,221.45696681074443,1.0,24757186.0
|
| 53 |
+
35200.0,7208960000.0,2671.858504387,,,,,,1.3932220935821533,0.00031793384040573915,0.0015896692020286958,0.052915483713150024,423347.1883421421,422342.37021611456,2116.7359417107104,219.5571133711704,1.0,25052960.0
|
| 54 |
+
35300.0,7229440000.0,2720.404422176,,,,,,1.3939083814620972,0.00030279410636365785,0.0015139705318182892,0.05381392315030098,405142.02208441735,421860.8271516214,2025.7101104220867,210.115515878481,1.0,25347269.0
|
| 55 |
+
35400.0,7249920000.0,2771.328463909,,,,,,1.3972845077514648,0.00028779653889467166,0.0014389826944733583,0.05196155235171318,412740.2989434921,421875.55404432263,2063.7014947174607,214.05614848385258,1.0,25640971.0
|
| 56 |
+
35500.0,7270400000.0,2820.301501565,1.400612473487854,1.405611515045166,1.0,0.98046875,0.9867724776268005,1.389560580253601,0.0002729372067024171,0.0013646860335120856,0.05422038957476616,461400.0020411331,398691.25753039645,2307.0000102056656,239.29213503062505,1.0,25934917.0
|
| 57 |
+
35600.0,7290880000.0,2868.93252786,,,,,,1.3838531970977783,0.00025821235640334213,0.0012910617820167108,0.05150710046291351,423721.61583695025,422027.8350160458,2118.608079184751,219.75129966126673,1.0,26228500.0
|
| 58 |
+
35700.0,7311360000.0,2917.367554681,,,,,,1.39363694190979,0.00024361840145454414,0.0012180920072727207,0.05399218574166298,346710.00744281866,421137.0827036575,1733.5500372140932,179.8113947777568,1.0,26520558.0
|
| 59 |
+
35800.0,7331840000.0,2965.841824171,,,,,,1.3946665525436401,0.00022915191195209696,0.0011457595597604848,0.0541062131524086,434399.8001442279,422842.04987589415,2171.9990007211395,225.2892396479059,1.0,26810342.0
|
| 60 |
+
35900.0,7352320000.0,3016.648476474,,,,,,1.4002071619033813,0.00021480960521765772,0.0010740480260882886,0.054554469883441925,428223.40729839826,422499.1549460705,2141.1170364919913,222.0860271981264,1.0,27100276.0
|
| 61 |
+
36000.0,7372800000.0,3065.496856302,1.3976761102676392,1.402583360671997,1.0,0.98046875,0.9841269254684448,1.4052033424377441,0.00020058833710015988,0.0010029416855007994,0.0531153529882431,460272.13553429744,399596.74157497234,2301.3606776714873,238.7071987860297,1.0,27392878.0
|
| 62 |
+
36100.0,7393280000.0,3114.066003389,,,,,,1.3851507902145386,0.0001864850939273002,0.000932425469636501,0.05301133543252945,420678.8796046078,423122.97644759883,2103.3943980230392,218.17327008573298,1.0,27687492.0
|
| 63 |
+
36200.0,7413760000.0,3162.58161768,,,,,,1.3928011655807495,0.0001724969850484583,0.0008624849252422915,0.054849691689014435,426753.55773090577,421673.44743023376,2133.767788654529,221.32373105676712,1.0,27981076.0
|
| 64 |
+
36300.0,7434240000.0,3210.982683109,,,,,,1.3774800300598145,0.00015862123591678083,0.0007931061795839041,0.05160770192742348,410669.3862525583,422139.3805356704,2053.3469312627917,212.98212785731735,1.0,28273951.0
|
| 65 |
+
36400.0,7454720000.0,3261.93773761,,,,,,1.3773630857467651,0.00014485518166353753,0.0007242759083176876,0.0523650199174881,418549.56570888415,423137.541471674,2092.747828544421,217.06896131676015,1.0,28566646.0
|
| 66 |
+
36500.0,7475200000.0,3310.90268926,1.3954627513885498,1.4009546041488647,1.0,0.984375,0.9867724776268005,1.3894065618515015,0.00013119626112260076,0.0006559813056130039,0.053663767874240875,459082.5329791049,398434.584147759,2295.4126648955244,238.090244876167,1.0,28858671.0
|
| 67 |
+
36600.0,7495680000.0,3359.388585704,,,,,,1.3934319019317627,0.00011764201126709671,0.0005882100563354835,0.052263982594013214,433830.9173800857,422117.97029097343,2169.1545869004285,224.99420460106694,1.0,29151651.0
|
| 68 |
+
36700.0,7516160000.0,3407.764636107,,,,,,1.3788844347000122,0.00010419006202400876,0.0005209503101200437,0.053583934903144836,427832.03515122656,422397.14180019364,2139.160175756133,221.88305304061896,1.0,29445386.0
|
| 69 |
+
36800.0,7536640000.0,3456.19653729,,,,,,1.3894424438476562,9.083813143581147e-05,0.0004541906571790573,0.05330129712820053,427995.1087609124,423357.19926272,2139.9755438045618,221.96762658213657,1.0,29734390.0
|
| 70 |
+
36900.0,7557120000.0,3506.835387478,,,,,,1.377478837966919,7.758402114116653e-05,0.00038792010570583264,0.05410534143447876,423846.2236691546,422869.29992518993,2119.231118345773,219.81592400907303,1.0,30023463.0
|
| 71 |
+
37000.0,7577600000.0,3555.747803248,1.3933922052383423,1.3985153436660767,1.0,0.984375,0.9867724776268005,1.3966809511184692,6.442561214933782e-05,0.00032212806074668907,0.053463906049728394,462305.8847843157,400924.9175842149,2311.5294239215787,239.7619456390876,1.0,30314050.0
|
| 72 |
+
37100.0,7598080000.0,3604.24897909,,,,,,1.3926995992660522,5.1360860885319516e-05,0.00025680430442659755,0.053908124566078186,426639.73660383245,422548.16170768766,2133.198683019162,221.26470093022078,1.0,30607477.0
|
| 73 |
+
37200.0,7618560000.0,3652.728716585,,,,,,1.3733961582183838,3.838779548478472e-05,0.00019193897742392362,0.053607016801834106,425327.8783998638,422264.52485259,2126.639391999319,220.58434256633606,1.0,30907715.0
|
| 74 |
+
37300.0,7639040000.0,3701.209785084,,,,,,1.3677016496658325,2.550451231982599e-05,0.00012752256159912994,0.052766963839530945,414466.31588749785,422451.8465653439,2072.3315794374894,214.95129863080325,1.0,31202895.0
|
| 75 |
+
37400.0,7659520000.0,3752.172817914,,,,,,1.3749722242355347,1.2709172738163532e-05,6.354586369081767e-05,0.051472533494234085,435882.1856791061,422439.8320734293,2179.4109283955304,226.0580372161987,1.0,31496552.0
|
| 76 |
+
37500.0,7680000000.0,3755.160821309,1.392648458480835,1.3978652954101562,,,,,,,,,,,,,
|
training-curves/91m/anneal-T075000.csv
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step,tokens,wall_clock_s,train_loss,val_loss,valid_prob_mass,game_end_accuracy,game_end_top1_accuracy,batch_train_loss,lr,muon_lr,unclipped_grad_norm,tokens_per_second,avg_tokens_per_second,samples_per_second,t_flops,shard_idx,shard_sample_idx
|
| 2 |
+
60100.0,12308480000.0,141.203378406,,,,,,1.4261999130249023,0.0017448656496237322,0.008724328248118661,0.05396265909075737,408564.7326520381,338777.63492129097,2042.8236632601906,211.8906084569263,2.0,5537227.0
|
| 3 |
+
60200.0,12328960000.0,189.787614273,,,,,,1.4284294843673706,0.0016806068977079421,0.00840303448853971,0.06105372682213783,430901.9006981767,423142.13128777675,2154.5095034908836,223.47515247221187,2.0,5827991.0
|
| 4 |
+
60300.0,12349440000.0,238.189443056,,,,,,1.425661563873291,0.001631299423149112,0.00815649711574556,0.058622680604457855,422259.41436744906,421543.35933052085,2111.2970718372453,218.99296999084194,2.0,6120144.0
|
| 5 |
+
60400.0,12369920000.0,299.173491944,,,,,,1.4255324602127075,0.001589731299247464,0.00794865649623732,0.05964032560586929,416037.9034242263,423133.59997882246,2080.1895171211313,215.7663583087131,2.0,6414141.0
|
| 6 |
+
60500.0,12390400000.0,347.845755416,1.4297301769256592,1.4344074726104736,0.99609375,0.97265625,0.9841269254684448,1.4127912521362305,0.0015531090469133948,0.007765545234566974,0.05720677599310875,467844.7980872137,333432.1381149315,2339.2239904360686,242.63454725186745,2.0,6710622.0
|
| 7 |
+
60600.0,12410880000.0,396.308016002,,,,,,1.428023099899292,0.00152,0.0076,0.053769536316394806,429167.3436637381,424606.4332793456,2145.8367183186906,222.57557324753253,2.0,7006418.0
|
| 8 |
+
60700.0,12431360000.0,444.821253995,,,,,,1.412272572517395,0.0014895530891008354,0.007447765445504177,0.05378373712301254,431988.65616307664,422603.73931983294,2159.9432808153833,224.03876763107985,2.0,7302507.0
|
| 9 |
+
60800.0,12451840000.0,493.31784305,,,,,,1.4253727197647095,0.0014612137954158843,0.0073060689770794215,0.05427814647555351,410630.90845729236,422160.36970364023,2053.154542286462,212.96217243092002,2.0,7598885.0
|
| 10 |
+
60900.0,12472320000.0,544.16783618,,,,,,1.421283483505249,0.0014345969488711962,0.007172984744355982,0.05441359803080559,409598.82812835276,422303.5529450126,2047.9941406417638,212.42691299368002,2.0,7893826.0
|
| 11 |
+
61000.0,12492800000.0,593.073014931,1.4251384735107422,1.4305027723312378,0.99609375,0.9765625,0.9867724776268005,1.4160428047180176,0.001409422109480394,0.00704711054740197,0.05469172075390816,460533.70805371826,399261.20738577505,2302.668540268591,238.84285601698036,2.0,8187992.0
|
| 12 |
+
61100.0,12513280000.0,641.594226413,,,,,,1.4038647413253784,0.001385477567706389,0.006927387838531945,0.06260181218385696,424324.42699711863,422625.3257099541,2121.622134985593,220.06393071653085,2.0,8477766.0
|
| 13 |
+
61200.0,12533760000.0,690.075837191,,,,,,1.4200280904769897,0.0013625988462982238,0.006812994231491119,0.056540269404649734,426228.62164354813,422090.38972860615,2131.1431082177405,221.05148771792284,2.0,8769428.0
|
| 14 |
+
61300.0,12554240000.0,738.594974045,,,,,,1.4267255067825317,0.0013406551451325696,0.006703275725662847,0.055126626044511795,423916.71389500017,422434.8793848011,2119.583569475001,219.8524817822996,2.0,9061791.0
|
| 15 |
+
61400.0,12574720000.0,789.53934081,,,,,,1.4167940616607666,0.0013195404119722602,0.006597702059861301,0.05236726999282837,426202.18669683347,422107.4599231222,2131.0109334841673,221.03777797624363,2.0,9355777.0
|
| 16 |
+
61500.0,12595200000.0,838.541287636,1.4222025871276855,1.4261531829833984,0.99609375,0.97265625,0.9841269254684448,1.4143632650375366,0.0012991672445680077,0.006495836222840039,0.05291037634015083,459526.806398117,398520.36159257166,2297.634031990585,238.32065479056334,2.0,9652483.0
|
| 17 |
+
61600.0,12615680000.0,887.064422683,,,,,,1.401116967201233,0.0012794625984949282,0.00639731299247464,0.05937847122550011,414983.9122217799,421792.0089270135,2074.9195611088994,215.21973541313193,2.0,9948344.0
|
| 18 |
+
61700.0,12636160000.0,935.555354034,,,,,,1.3998368978500366,0.0012603646872370686,0.006301823436185342,0.05617140233516693,426780.0611209347,422073.7626539501,2133.9003056046736,221.33747629464645,2.0,10243773.0
|
| 19 |
+
61800.0,12656640000.0,984.075518671,,,,,,1.418619155883789,0.0012418206931238266,0.006209103465619133,0.05230090022087097,422516.1293686361,422353.42390613316,2112.5806468431806,219.1261080065695,2.0,10538996.0
|
| 20 |
+
61900.0,12677120000.0,1035.123650207,,,,,,1.419025182723999,0.001223785044038017,0.006118925220190085,0.05569472536444664,425283.02538449044,422098.49945445196,2126.415126922452,220.5610808113214,2.0,10834274.0
|
| 21 |
+
62000.0,12697600000.0,1084.099215392,1.4183900356292725,1.4232555627822876,0.99609375,0.9765625,0.9894179701805115,1.408381462097168,0.0012062180938267897,0.006031090469133948,0.05469147861003876,460843.04296066286,397727.54585187614,2304.215214803314,239.0032838669908,2.0,11128861.0
|
| 22 |
+
62100.0,12718080000.0,1132.673791487,,,,,,1.403017282485962,0.001189085096512951,0.0059454254825647545,0.05538378283381462,417341.45116411947,422009.4982730174,2086.7072558205973,216.44240668412164,2.0,11421882.0
|
| 23 |
+
62200.0,12738560000.0,1181.213475075,,,,,,1.4233570098876953,0.001172355398105183,0.005861776990525915,0.06144632771611214,428792.6520653087,421626.80803566147,2143.9632603265436,222.38124998752048,2.0,11714397.0
|
| 24 |
+
62300.0,12759040000.0,1229.747344756,,,,,,1.4190770387649536,0.0011560017921168537,0.005780008960584269,0.05374182015657425,429732.4378421564,421929.4025589874,2148.662189210782,222.8686434509328,2.0,12006803.0
|
| 25 |
+
62400.0,12779520000.0,1280.748235662,,,,,,1.4199542999267578,0.00114,0.005699999999999999,0.05509970337152481,417061.8228216607,421979.41113862384,2085.3091141083037,216.2973853083392,2.0,12301416.0
|
| 26 |
+
62500.0,12800000000.0,1329.678208082,1.415722131729126,1.4208698272705078,0.99609375,0.98046875,0.9867724776268005,1.4137731790542603,0.0011243282481186603,0.0056216412405933015,0.05742724984884262,460032.0467511797,398086.55400011543,2300.1602337558984,238.5826834907219,2.0,12595375.0
|
| 27 |
+
62600.0,12820480000.0,1378.24741022,,,,,,1.3978954553604126,0.0011089669202028697,0.005544834601014348,0.05367361754179001,426280.02056481794,422414.3676819135,2131.4001028240896,221.07814432293912,2.0,12889114.0
|
| 28 |
+
62700.0,12840960000.0,1426.861440128,,,,,,1.401410698890686,0.0010938982694473358,0.005469491347236679,0.056137118488550186,428206.1163652751,421673.7248055026,2141.0305818263755,222.07705974193783,2.0,13182877.0
|
| 29 |
+
62800.0,12861440000.0,1475.418658324,,,,,,1.3961870670318604,0.001079106178201671,0.005395530891008355,0.054721951484680176,411343.12896112324,421283.76469179464,2056.715644805616,213.33154556533773,2.0,13476728.0
|
| 30 |
+
62900.0,12881920000.0,1526.256056801,,,,,,1.4100686311721802,0.0010645759559760484,0.005322879779880242,0.055144961923360825,414319.18215954065,421776.9751482498,2071.5959107977033,214.87499186066424,2.0,13770461.0
|
| 31 |
+
63000.0,12902400000.0,1575.299602783,1.4133809804916382,1.4184887409210205,0.99609375,0.9765625,0.9841269254684448,1.4026966094970703,0.00105029416855008,0.0052514708427504,0.05302806943655014,400252.4821201335,398838.68767514767,2001.2624106006676,207.57969348534036,2.0,14063763.0
|
| 32 |
+
63100.0,12922880000.0,1623.803978575,,,,,,1.3876371383666992,0.0010362484925242293,0.005181242462621146,0.054295863956213,448837.59019927704,422002.3642923896,2244.187950996385,232.77699342361706,2.0,14354484.0
|
| 33 |
+
63200.0,12943360000.0,1672.312299595,,,,,,1.4106552600860596,0.0010224275908317687,0.005112137954158844,0.05325128883123398,431946.5142556006,422235.9268234695,2159.732571278003,224.0169119159312,2.0,14646287.0
|
| 34 |
+
63300.0,12963840000.0,1720.86931658,,,,,,1.419921636581421,0.0010088210056335483,0.005044105028167742,0.05364906042814255,408988.6092710187,422201.83551261836,2044.9430463550934,212.11044014460882,2.0,14938944.0
|
| 35 |
+
63400.0,12984320000.0,1771.710669229,,,,,,1.4136561155319214,0.000995419065717906,0.004977095328589529,0.052456535398960114,425384.1159668326,421779.10619730945,2126.920579834163,220.61350859886613,2.0,15233830.0
|
| 36 |
+
63500.0,13004800000.0,1820.722528032,1.4107149839401245,1.416627287864685,0.99609375,0.98046875,0.9894179701805115,1.4132970571517944,0.000982212806074669,0.004911064030373344,0.058939360082149506,460406.09262862254,399327.37844126363,2302.0304631431127,238.77667186570403,2.0,15527993.0
|
| 37 |
+
63600.0,13025280000.0,1869.311418116,,,,,,1.4008272886276245,0.0009691938977423924,0.004845969488711962,0.05366712436079979,426524.49366588925,421698.2346281453,2132.6224683294463,221.2049334214526,2.0,15821293.0
|
| 38 |
+
63700.0,13045760000.0,1917.881606802,,,,,,1.398879885673523,0.0009563545863690816,0.004781772931845408,0.0552629791200161,414145.99417973397,421501.5118918013,2070.7299708986698,214.78517278553147,2.0,16113967.0
|
| 39 |
+
63800.0,13066240000.0,1966.4802111,,,,,,1.39839768409729,0.0009436876381990383,0.004718438190995192,0.05509830638766289,427706.35081548634,421663.5283992794,2138.5317540774317,221.81787039452848,2.0,16406771.0
|
| 40 |
+
63900.0,13086720000.0,2017.538337133,,,,,,1.3984334468841553,0.0009311862924173708,0.004655931462086854,0.05400071665644646,424392.97962700564,421418.3298549294,2121.9648981350283,220.0994836101049,2.0,16699356.0
|
| 41 |
+
64000.0,13107200000.0,2066.399572044,1.4089064598083496,1.4142249822616577,0.99609375,0.98046875,0.9894179701805115,1.3945895433425903,0.0009188442189607878,0.004594221094803939,0.055243492126464844,459983.2708326082,397643.6353098664,2299.916354163041,238.55738723228797,2.0,16991869.0
|
| 42 |
+
64100.0,13127680000.0,2115.016710913,,,,,,1.3990315198898315,0.0009066554810473189,0.004533277405236595,0.05602739006280899,423175.96184588893,423013.07286796934,2115.8798092294446,219.46831156431955,2.0,17281031.0
|
| 43 |
+
64200.0,13148160000.0,2163.684457218,,,,,,1.3985049724578857,0.0008946145017954555,0.004473072508977278,0.056906528770923615,413099.7670945977,421255.9728201027,2065.4988354729885,214.24257653104164,2.0,17570681.0
|
| 44 |
+
64300.0,13168640000.0,2212.245980808,,,,,,1.4138166904449463,0.000882716034400096,0.00441358017200048,0.05603570118546486,419846.76170557813,420818.61650676973,2099.2338085278907,217.7417155391895,2.0,17860910.0
|
| 45 |
+
64400.0,13189120000.0,2263.346120304,,,,,,1.3977047204971313,0.0008709551354127783,0.004354775677063891,0.054620321840047836,426445.723670003,421739.1251750108,2132.228618350015,221.16408157834775,2.0,18153638.0
|
| 46 |
+
64500.0,13209600000.0,2312.407080465,1.4070565700531006,1.4118809700012207,0.99609375,0.9765625,0.9867724776268005,1.3876773118972778,0.0008593271407401845,0.004296635703700922,0.05377373844385147,460107.201616333,397320.40232905536,2300.536008081665,238.62166044794105,2.0,18450059.0
|
| 47 |
+
64600.0,13230080000.0,2360.956694834,,,,,,1.3922882080078125,0.0008478276440303772,0.004239138220151885,0.05527881532907486,430277.68359572627,421274.376364254,2151.3884179786314,223.151419826986,2.0,18746001.0
|
| 48 |
+
64700.0,13250560000.0,2409.486925456,,,,,,1.3982481956481934,0.0008364524771627112,0.0041822623858135555,0.05491267889738083,412354.335177981,421842.4738437505,2061.771675889905,213.85597923139258,2.0,19040744.0
|
| 49 |
+
64800.0,13271040000.0,2458.036145162,,,,,,1.3898667097091675,0.0008251976925964478,0.004125988462982239,0.05639048293232918,431283.1042176696,422011.02627407596,2156.4155210883478,223.67285295694765,2.0,19335884.0
|
| 50 |
+
64900.0,13291520000.0,2509.043013062,,,,,,1.394352674484253,0.0008140595473661244,0.004070297736830622,0.05793166160583496,449826.409252984,421845.9334827678,2249.13204626492,233.28981661710162,2.0,19630511.0
|
| 51 |
+
65000.0,13312000000.0,2558.596781312,1.4047234058380127,1.4102809429168701,0.99609375,0.97265625,0.978835940361023,1.400587797164917,0.0008030344885397111,0.004015172442698556,0.053986482322216034,460337.9941972319,398042.60488645,2301.6899709861596,238.74135452940664,2.0,19923360.0
|
| 52 |
+
65100.0,13332480000.0,2607.110736832,,,,,,1.3928577899932861,0.0007921191399793929,0.003960595699896964,0.05259042605757713,425159.4653145932,417044.3422933185,2125.797326572966,220.49699985596934,2.0,20215841.0
|
| 53 |
+
65200.0,13352960000.0,2655.657854302,,,,,,1.3938710689544678,0.0007813102902651393,0.003906551451325697,0.05497215688228607,419756.49012489687,422152.5957712058,2098.782450624484,217.69489872259163,2.0,20506470.0
|
| 54 |
+
65300.0,13373440000.0,2704.147914197,,,,,,1.4037374258041382,0.0007706048816586228,0.0038530244082931138,0.056591328233480453,422944.0573199421,421864.904500133,2114.7202865997106,219.3480408038263,2.0,20797763.0
|
| 55 |
+
65400.0,13393920000.0,2755.209158428,,,,,,1.4043338298797607,0.00076,0.0038,0.0570199154317379,427909.6128459543,422361.7057272762,2139.5480642297716,221.92328653025925,2.0,21090513.0
|
| 56 |
+
65500.0,13414400000.0,2804.128818595,1.4026236534118652,1.4082213640213013,0.99609375,0.97265625,0.976190447807312,1.4038697481155396,0.0007494928654429532,0.0037474643272147664,0.05311005935072899,457565.63597313606,397601.1586861775,2287.8281798656803,237.3035489039648,2.0,21385116.0
|
| 57 |
+
65600.0,13434880000.0,2852.693266683,,,,,,1.3802213668823242,0.0007390808239445205,0.0036954041197226027,0.056101854890584946,413769.7549828566,422525.0847158178,2068.8487749142832,214.59004690710776,2.0,21680741.0
|
| 58 |
+
65700.0,13455360000.0,2901.081182358,,,,,,1.3898930549621582,0.0007287613394358945,0.0036438066971794724,0.055806439369916916,440947.4740806637,421714.8818173338,2204.7373704033184,228.68500659372924,2.0,21977046.0
|
| 59 |
+
65800.0,13475840000.0,2949.668080048,,,,,,1.4006457328796387,0.00071853198660875,0.00359265993304375,0.052116360515356064,425390.4357239567,423253.4783767858,2126.9521786197834,220.61678616316695,2.0,22273010.0
|
| 60 |
+
65900.0,13496320000.0,3000.573962402,,,,,,1.4001421928405762,0.0007083904442589708,0.0035419522212948537,0.05642005428671837,407133.8832289423,421519.8975958928,2035.6694161447115,211.14853864365088,2.0,22568377.0
|
| 61 |
+
66000.0,13516800000.0,3049.367863833,1.4011787176132202,1.406200647354126,0.99609375,0.98046875,0.9867724776268005,1.383392572402954,0.0006983344891360159,0.003491672445680079,0.05869632959365845,459749.1426870964,398821.68290493044,2298.745713435482,238.43596325404252,2.0,22862356.0
|
| 62 |
+
66100.0,13537280000.0,3097.745945188,,,,,,1.4008631706237793,0.000688361990251764,0.0034418099512588196,0.055165067315101624,429802.1039948883,423604.16480331606,2149.0105199744416,222.9047738418146,2.0,23154948.0
|
| 63 |
+
66200.0,13557760000.0,3146.195320505,,,,,,1.3819020986557007,0.000678470903607559,0.003392354518037795,0.05668850243091583,411541.38475388056,423340.14050406485,2057.7069237694027,213.4343653566711,2.0,23446579.0
|
| 64 |
+
66300.0,13578240000.0,3194.652781206,,,,,,1.388452410697937,0.0006686592673025067,0.003343296336512533,0.05796206742525101,426063.0871804131,422716.31343372853,2130.3154359020655,220.96563792397075,2.0,23737946.0
|
| 65 |
+
66400.0,13598720000.0,3245.52737742,,,,,,1.4042218923568726,0.0006589251969898564,0.0032946259849492817,0.055849455296993256,418007.78561244207,422645.62292018265,2090.0389280622103,216.78798230631105,2.0,24030307.0
|
| 66 |
+
66500.0,13619200000.0,3294.559043178,1.3989174365997314,1.403673768043518,0.99609375,0.9765625,0.9867724776268005,1.400565266609192,0.0006492668816516717,0.0032463344082583586,0.05440664663910866,396967.7987806203,398516.3791223835,1984.8389939031013,205.87618484699064,2.0,24323990.0
|
| 67 |
+
66600.0,13639680000.0,3343.064843117,,,,,,1.387554407119751,0.0006396825796649481,0.0031984128983247404,0.05457576364278793,445324.2203785855,422145.63951661607,2226.6211018929275,230.9548829731917,2.0,24620457.0
|
| 68 |
+
66700.0,13660160000.0,3391.612956145,,,,,,1.3907285928726196,0.0006301706151349834,0.0031508530756749168,0.05479582026600838,436027.77157655946,422223.4431241104,2180.1388578827973,226.1335412475768,2.0,24916435.0
|
| 69 |
+
66800.0,13680640000.0,3440.237177191,,,,,,1.3823790550231934,0.0006207293744741368,0.003103646872370684,0.0564812570810318,406016.9711659582,421855.554477854,2030.0848558297912,210.5692836132855,2.0,25212208.0
|
| 70 |
+
66900.0,13701120000.0,3490.990003323,,,,,,1.3863614797592163,0.0006113573032061991,0.003056786516030995,0.05432687699794769,427134.8872410009,421195.4598843672,2135.6744362050044,221.52149688298553,2.0,25508064.0
|
| 71 |
+
67000.0,13721600000.0,3539.917589332,1.3971049785614014,1.4024732112884521,1.0,0.9765625,0.9867724776268005,1.3962593078613281,0.000602052902978451,0.0030102645148922546,0.05489298328757286,459618.02679502533,400011.7253223832,2298.0901339751267,238.36796368401366,2.0,25803061.0
|
| 72 |
+
67100.0,13742080000.0,3588.424556151,,,,,,1.4032111167907715,0.000592814728765148,0.0029640736438257403,0.05475356802344322,424102.5690245764,422437.9748015846,2120.512845122882,219.94887031842,2.0,26096878.0
|
| 73 |
+
67200.0,13762560000.0,3636.948395485,,,,,,1.3793010711669922,0.0005836413862476532,0.002918206931238266,0.056690990924835205,420237.6338141723,422214.581494599,2101.1881690708615,217.94443036575137,2.0,26388717.0
|
| 74 |
+
67300.0,13783040000.0,3685.55014737,,,,,,1.389487862586975,0.0005745315293577645,0.0028726576467888224,0.056457556784152985,419079.2574190766,422066.9500174194,2095.396287095383,217.3436710256445,2.0,26680642.0
|
| 75 |
+
67400.0,13803520000.0,3736.448975983,,,,,,1.3939062356948853,0.0005654838579719865,0.0028274192898599323,0.053489722311496735,398690.1416962051,421390.49128599034,1993.4507084810255,206.76942956242613,2.0,26972266.0
|
| 76 |
+
67500.0,13824000000.0,3785.319788231,1.3955841064453125,1.400465726852417,1.0,0.98046875,0.9894179701805115,1.3844096660614014,0.0005564971157455596,0.002782485578727798,0.056341640651226044,460000.51366222644,398877.4487117475,2300.002568311132,238.56632974094654,2.0,27265976.0
|
| 77 |
+
67600.0,13844480000.0,3833.948999948,,,,,,1.399424433708191,0.0005475700880760339,0.0027378504403801694,0.05767812952399254,426556.8994489975,422929.0912326393,2132.7844972449875,221.22173976950853,2.0,27562655.0
|
| 78 |
+
67700.0,13864960000.0,3882.496632952,,,,,,1.384831190109253,0.000538701600187037,0.0026935080009351854,0.057961076498031616,420201.0421456538,421152.2422821107,2101.005210728269,217.92545312594777,2.0,27858547.0
|
| 79 |
+
67800.0,13885440000.0,3931.079673968,,,,,,1.3884037733078003,0.000529890515323684,0.0026494525766184197,0.054798491299152374,428124.59028812655,421859.2608740614,2140.6229514406327,222.03477853479598,2.0,28154868.0
|
| 80 |
+
67900.0,13905920000.0,3981.833789903,,,,,,1.3987164497375488,0.0005211357330517747,0.0026056786652588733,0.054453760385513306,424608.21521819296,421552.47209085454,2123.041076090965,220.21110949636832,2.0,28450912.0
|
| 81 |
+
68000.0,13926400000.0,4030.894630397,1.3940696716308594,1.399407148361206,1.0,0.98046875,0.9867724776268005,1.3862251043319702,0.0005124361876535793,0.0025621809382678964,0.056611061096191406,392195.5948657142,399404.2959062868,1960.977974328571,203.4012154959988,2.0,28746544.0
|
| 82 |
+
68100.0,13946880000.0,4079.363769362,,,,,,1.3930654525756836,0.0005037908466135884,0.002518954233067942,0.057746417820453644,442904.5578268122,421944.07413398684,2214.522789134061,229.69999303928168,2.0,29040997.0
|
| 83 |
+
68200.0,13967360000.0,4127.901069223,,,,,,1.37312650680542,0.0004951987091881406,0.002475993545940703,0.06001853942871094,459656.39443634945,422542.72842157463,2298.2819721817473,238.38786198216692,2.0,29331925.0
|
| 84 |
+
68300.0,13987840000.0,4176.440330586,,,,,,1.395704984664917,0.0004866588050533114,0.002433294025266557,0.0576678030192852,426927.90439922985,421949.8588989419,2134.639521996149,221.41415105311341,2.0,29623264.0
|
| 85 |
+
68400.0,14008320000.0,4227.242367374,,,,,,1.4071904420852661,0.00047817019302590216,0.002390850965129511,0.058432746678590775,409552.1540271107,421932.61077781377,2047.7607701355537,212.40270678369427,2.0,29915040.0
|
| 86 |
+
68500.0,14028800000.0,4276.164882198,1.3923585414886475,1.3970210552215576,1.0,0.98046875,0.9814814329147339,1.3964005708694458,0.0004697319598527461,0.0023486597992637306,0.05867130309343338,458775.0661597137,399621.42360061326,2293.8753307985685,237.9307858572296,2.0,30209288.0
|
| 87 |
+
68600.0,14049280000.0,4324.756734518,,,,,,1.3860174417495728,0.00046134321906393075,0.0023067160953196535,0.05787177383899689,423946.2137958774,422488.7918255715,2119.731068979387,219.86778107625906,2.0,30506074.0
|
| 88 |
+
68700.0,14069760000.0,4373.203963278,,,,,,1.3823167085647583,0.0004530031098858575,0.0022650155494292877,0.0571136400103569,419409.5114403482,421475.9598953788,2097.047557201741,217.51494798598895,2.0,30802523.0
|
| 89 |
+
68800.0,14090240000.0,4421.779506239,,,,,,1.3868674039840698,0.000444710796210366,0.00222355398105183,0.05794328451156616,423418.5562253846,422734.2019568628,2117.092781126923,219.59412631672345,2.0,31097862.0
|
| 90 |
+
68900.0,14110720000.0,4472.774333539,,,,,,1.396002173423767,0.0004364654656164299,0.002182327328082149,0.057989683002233505,418073.09141366725,421616.8167000797,2090.365457068336,216.8218513235107,2.0,31392934.0
|
| 91 |
+
69000.0,14131200000.0,4521.626237149,1.390572190284729,1.3961690664291382,1.0,0.98046875,0.9867724776268005,1.3824217319488525,0.00042826632844118154,0.0021413316422059076,0.05803036689758301,460350.3293753979,398134.79574903747,2301.7516468769895,238.7477518226582,2.0,31688588.0
|
| 92 |
+
69100.0,14151680000.0,4570.025336176,,,,,,1.3761041164398193,0.00042011261689726303,0.0021005630844863152,0.05931350588798523,428207.61058832385,423093.4472088249,2141.0380529416193,222.0778346786998,2.0,31982420.0
|
| 93 |
+
69200.0,14172160000.0,4618.465546,,,,,,1.373519778251648,0.00041200358423370756,0.0020600179211685376,0.05697228014469147,425586.6522326129,423155.1717445978,2127.9332611630643,220.7185483371524,2.0,32275559.0
|
| 94 |
+
69300.0,14192640000.0,4666.905059449,,,,,,1.3812086582183838,0.00040393850393775584,0.002019692519688779,0.057402219623327255,425953.0135041522,422796.2670437782,2129.765067520761,220.9085513073981,2.0,32567440.0
|
| 95 |
+
69400.0,14213120000.0,4717.619801058,,,,,,1.392452359199524,0.0003959166689751971,0.0019795833448759854,0.05565229803323746,417675.46962105023,422802.9346783196,2088.3773481052513,216.61563596315287,2.0,32859600.0
|
| 96 |
+
69500.0,14233600000.0,4766.635375523,1.3885538578033447,1.3939718008041382,1.0,0.98046875,0.9841269254684448,1.3950270414352417,0.00038793739106697924,0.001939686955334896,0.057374343276023865,459846.8517381433,400311.12995792954,2299.2342586907166,238.48663730548034,2.0,33153158.0
|
| 97 |
+
69600.0,14254080000.0,4815.109227768,,,,,,1.3835155963897705,0.0003799999999999999,0.0018999999999999996,0.0565616749227047,420681.7639188445,421673.0148083413,2103.4088195942227,218.17476595419578,2.0,33449117.0
|
| 98 |
+
69700.0,14274560000.0,4863.703203864,,,,,,1.373816967010498,0.0003721038429701231,0.0018605192148506155,0.0633726716041565,423593.9479355186,422503.1345028116,2117.9697396775928,219.68508829461456,2.0,33745673.0
|
| 99 |
+
69800.0,14295040000.0,4912.28765431,,,,,,1.3884128332138062,0.0003642482839555954,0.0018212414197779768,0.05616174638271332,425130.8483528405,421458.4858096129,2125.6542417642027,220.48215847355584,2.0,34039661.0
|
| 100 |
+
69900.0,14315520000.0,4963.413813549,,,,,,1.3795396089553833,0.00035643270311916755,0.0017821635155958375,0.05997120961546898,424281.25230602815,421540.94932470936,2121.406261530141,220.0415393772057,2.0,34333512.0
|
| 101 |
+
70000.0,14336000000.0,5012.913257439,1.387397050857544,1.3931061029434204,1.0,0.98046875,0.9841269254684448,1.3776090145111084,0.0003486564962373205,0.0017432824811866026,0.056684162467718124,461581.737774439,397130.792411691,2307.908688872195,239.38638715772026,2.0,34627531.0
|
| 102 |
+
70100.0,14356480000.0,5061.414312276,,,,,,1.377588152885437,0.00034091907415511826,0.0017045953707755914,0.05945219099521637,428806.1373158528,417497.22273532214,2144.030686579264,222.38824373346725,2.0,34919609.0
|
| 103 |
+
70200.0,14376960000.0,5109.897011633,,,,,,1.3789288997650146,0.00033321986226528895,0.0016660993113264445,0.05892874300479889,412375.3187411848,422266.51345010195,2061.876593705924,213.866861766324,2.0,35210529.0
|
| 104 |
+
70300.0,14397440000.0,5158.331387421,,,,,,1.3986388444900513,0.0003255583000102332,0.001627791500051166,0.05950630083680153,424064.4638184852,422426.7629603755,2120.322319092426,219.92910812491976,2.0,35501395.0
|
| 105 |
+
70400.0,14417920000.0,5209.38879772,,,,,,1.3831467628479004,0.00031793384040573915,0.0015896692020286958,0.059127356857061386,428618.0625717279,422847.56163367647,2143.0903128586397,222.29070405668378,2.0,35792309.0
|
| 106 |
+
70500.0,14438400000.0,5258.361338305,1.385627031326294,1.3910431861877441,1.0,0.98046875,0.9841269254684448,1.3895492553710938,0.0003103459495852564,0.001551729747926282,0.05853873863816261,459058.73495489004,397643.499093345,2295.29367477445,238.07790270018373,2.0,36085677.0
|
| 107 |
+
70600.0,14458880000.0,5306.839802796,,,,,,1.3814194202423096,0.00030279410636365785,0.0015139705318182892,0.058214809745550156,434691.9504457525,422053.21342462936,2173.459752228762,225.44075518560072,2.0,36380722.0
|
| 108 |
+
70700.0,14479360000.0,5355.317390542,,,,,,1.378961443901062,0.00029527780181947576,0.0014763890090973787,0.059029869735240936,425969.48924431246,422462.13307574915,2129.847446221562,220.91709598668226,2.0,36673868.0
|
| 109 |
+
70800.0,14499840000.0,5403.791110306,,,,,,1.3744210004806519,0.00028779653889467166,0.0014389826944733583,0.05858432129025459,411129.3215931646,422469.4675326914,2055.646607965823,213.2206603868857,2.0,36966957.0
|
| 110 |
+
70900.0,14520320000.0,5454.845859137,,,,,,1.3803730010986328,0.00028034983201104,0.0014017491600551999,0.05828499048948288,415943.0183747496,422503.23425245535,2079.715091873748,215.71714884626988,2.0,37259602.0
|
| 111 |
+
71000.0,14540800000.0,5503.671535731,1.3844810724258423,1.3900282382965088,1.0,0.98046875,0.9894179701805115,1.371282696723938,0.0002729372067024171,0.0013646860335120856,0.057459957897663116,460399.9234626197,397673.1652049127,2301.9996173130985,238.77347240125312,2.0,37552339.0
|
| 112 |
+
71100.0,14561280000.0,5552.071885788,,,,,,1.3880298137664795,0.000265558199261901,0.0013277909963095049,0.058709196746349335,423539.4356676171,423321.53099975636,2117.6971783380855,219.6568170399249,2.0,37847049.0
|
| 113 |
+
71200.0,14581760000.0,5600.487949864,,,,,,1.370874285697937,0.00025821235640334213,0.0012910617820167108,0.0582413375377655,426781.54540811357,423144.61174755235,2133.907727040568,221.3382460784489,2.0,38136730.0
|
| 114 |
+
71300.0,14602240000.0,5648.911869765,,,,,,1.3921104669570923,0.00025089923493640536,0.0012544961746820268,0.0579247772693634,431426.2836536409,423006.0944759347,2157.1314182682045,223.7471089447554,2.0,38426308.0
|
| 115 |
+
71400.0,14622720000.0,5699.941930006,,,,,,1.3766270875930786,0.00024361840145454414,0.0012180920072727207,0.059734974056482315,424520.5002955358,422938.84915966063,2122.6025014776787,220.16561861855334,2.0,38716433.0
|
| 116 |
+
71500.0,14643200000.0,5748.934815642,1.3831149339675903,1.3884012699127197,1.0,0.98046875,0.9814814329147339,1.383079171180725,0.00023636943203526504,0.0011818471601763253,0.05911807715892792,462646.25937687163,397880.7695385796,2313.231296884358,239.93847134910615,2.0,39008736.0
|
| 117 |
+
71600.0,14663680000.0,5797.4139354,,,,,,1.372638463973999,0.00022915191195209696,0.0011457595597604848,0.05728886276483536,426932.57256914966,421843.2134145081,2134.6628628457484,221.41657206815864,2.0,39303557.0
|
| 118 |
+
71700.0,14684160000.0,5845.895558221,,,,,,1.3725740909576416,0.0002219654353977091,0.0011098271769885454,0.06008724123239517,424767.9998417616,422455.7462801763,2123.839999208808,220.293977297733,2.0,39598684.0
|
| 119 |
+
71800.0,14704640000.0,5894.372133179,,,,,,1.360572338104248,0.00021480960521765772,0.0010740480260882886,0.06028830260038376,421367.49716102105,422435.28864200163,2106.837485805105,218.5304022152621,2.0,39893633.0
|
| 120 |
+
71900.0,14725120000.0,5945.138990796,,,,,,1.3904359340667725,0.0002076840326542643,0.0010384201632713213,0.05867607891559601,426438.7374140042,422478.6058328057,2132.193687070021,221.16045835314958,2.0,40188181.0
|
| 121 |
+
72000.0,14745600000.0,5994.014559119,1.381912112236023,1.38721764087677,1.0,0.98046875,0.9867724776268005,1.3593193292617798,0.00020058833710015988,0.0010029416855007994,0.06055159494280815,460529.5106769675,399909.4452868316,2302.6475533848375,238.84067916557208,2.0,40481440.0
|
| 122 |
+
72100.0,14766080000.0,6042.437537786,,,,,,1.3618321418762207,0.00019352214586105263,0.0009676107293052631,0.06147230044007301,426177.8694417226,422883.6934318785,2130.889347208613,221.0251665157585,2.0,40774074.0
|
| 123 |
+
72200.0,14786560000.0,6090.876272839,,,,,,1.3677788972854614,0.0001864850939273002,0.000932425469636501,0.05953522399067879,424528.2630731237,422945.4900550627,2122.6413153656185,220.16964456483547,2.0,41065610.0
|
| 124 |
+
72300.0,14807040000.0,6139.405928454,,,,,,1.380341649055481,0.00017947682375389092,0.0008973841187694545,0.05988254025578499,421606.98724420555,422809.4963854115,2108.0349362210277,218.65460701168678,2.0,41355801.0
|
| 125 |
+
72400.0,14827520000.0,6190.123814935,,,,,,1.382407784461975,0.0001724969850484583,0.0008624849252422915,0.059144604951143265,346763.89284389326,422016.6864015421,1733.8194642194665,179.83934092559616,2.0,41646260.0
|
| 126 |
+
72500.0,14848000000.0,6239.017554048,1.3802908658981323,1.3856313228607178,1.0,0.98046875,0.9841269254684448,1.3851851224899292,0.00016554523456697388,0.0008277261728348694,0.060524795204401016,462449.9910631801,400306.60046859254,2312.2499553159005,239.83668230789607,2.0,41938842.0
|
| 127 |
+
72600.0,14868480000.0,6287.538776148,,,,,,1.3878438472747803,0.00015862123591678083,0.0007931061795839041,0.06052207574248314,423070.0834966442,422711.53107425093,2115.350417483221,219.41340073611798,2.0,42232712.0
|
| 128 |
+
72700.0,14888960000.0,6336.068589941,,,,,,1.3727293014526367,0.00015172465936664684,0.0007586232968332341,0.05945614352822304,421694.3302544667,422090.60750489595,2108.4716512723335,218.69990500759693,2.0,42528558.0
|
| 129 |
+
72800.0,14909440000.0,6384.61761324,,,,,,1.3611361980438232,0.00014485518166353753,0.0007242759083176876,0.05838653817772865,424229.91520275775,422015.7285231441,2121.1495760137886,220.01491483235628,2.0,42823860.0
|
| 130 |
+
72900.0,14929920000.0,6435.676064648,,,,,,1.3709317445755005,0.00013801248585581635,0.0006900624292790816,0.059772007167339325,425077.8329871818,421849.3476013331,2125.389164935909,220.45466354511674,2.0,43118588.0
|
| 131 |
+
73000.0,14950400000.0,6484.489806523,1.3792749643325806,1.3848077058792114,1.0,0.984375,0.9867724776268005,1.3750501871109009,0.00013119626112260076,0.0006559813056130039,0.059503454715013504,462017.692992015,397656.4695337065,2310.088464960075,239.6124830708759,2.0,43413059.0
|
| 132 |
+
73100.0,14970880000.0,6532.817567122,,,,,,1.3574937582015991,0.00012440620260901645,0.0006220310130450823,0.05855932831764221,409679.3122295214,423412.46397473104,2048.396561147607,212.46865380928355,2.0,43706535.0
|
| 133 |
+
73200.0,14991360000.0,6581.20495838,,,,,,1.3721543550491333,0.00011764201126709671,0.0005882100563354835,0.05980740115046501,424976.8879086476,423779.59745002724,2124.884439543238,220.40231121903,2.0,43998000.0
|
| 134 |
+
73300.0,15011840000.0,6629.59581251,,,,,,1.3622686862945557,0.0001109033937020989,0.0005545169685104945,0.05978447198867798,427355.0398179524,423256.771414646,2136.775199089762,221.63567282563434,2.0,44289077.0
|
| 135 |
+
73400.0,15032320000.0,6680.285980455,,,,,,1.3697205781936646,0.00010419006202400876,0.0005209503101200437,0.05753983184695244,417787.4020818519,423227.263118476,2088.9370104092595,216.6736865860527,2.0,44579870.0
|
| 136 |
+
73500.0,15052800000.0,6729.141524353,1.3778393268585205,1.3830114603042603,1.0,0.984375,0.9867724776268005,1.3859968185424805,9.750173370402385e-05,0.0004875086685201192,0.05772265046834946,460523.831994909,400509.5299590427,2302.619159974545,238.83773407682494,2.0,44871404.0
|
| 137 |
+
73600.0,15073280000.0,6777.741711884,,,,,,1.378607153892517,9.083813143581147e-05,0.0004541906571790573,0.06014062091708183,426665.5900770438,423059.9840535215,2133.327950385219,221.27810910702038,2.0,45164176.0
|
| 138 |
+
73700.0,15093760000.0,6826.240220056,,,,,,1.3695467710494995,8.419898300134956e-05,0.0004209949150067478,0.058617305010557175,425953.85838290025,421404.70573806483,2129.769291914501,220.9089894800001,2.0,45460068.0
|
| 139 |
+
73800.0,15114240000.0,6874.664611464,,,,,,1.3657947778701782,7.758402114116653e-05,0.00038792010570583264,0.057582419365644455,420435.7094086789,422287.1125196807,2102.1785470433942,218.04715670232974,2.0,45755975.0
|
| 140 |
+
73900.0,15134720000.0,6925.383575477,,,,,,1.363044261932373,7.099298342880416e-05,0.00035496491714402076,0.059588197618722916,423811.719198669,422933.7743983564,2119.058595993345,219.79802923583054,2.0,46050420.0
|
| 141 |
+
74000.0,15155200000.0,6974.25265223,1.377204418182373,1.382744550704956,1.0,0.984375,0.9867724776268005,1.3653696775436401,6.442561214933782e-05,0.00032212806074668907,0.05926544591784477,459341.77223854087,400274.86706975475,2296.7088611927043,238.22469202744523,2.0,46345294.0
|
| 142 |
+
74100.0,15175680000.0,7022.66475943,,,,,,1.3740270137786865,5.788165418179506e-05,0.0002894082709089753,0.05990038067102432,422244.0545962278,422949.9091044674,2111.2202729811393,218.98500407746343,2.0,46640413.0
|
| 143 |
+
74200.0,15196160000.0,7071.123476274,,,,,,1.3739988803863525,5.1360860885319516e-05,0.00025680430442659755,0.05859805643558502,424171.4688937731,423040.8824847749,2120.8573444688654,219.98460329789654,2.0,46934264.0
|
| 144 |
+
74300.0,15216640000.0,7119.565184114,,,,,,1.3682265281677246,4.4862987988937466e-05,0.0002243149399446873,0.05973314866423607,421768.04113030765,422634.53105689783,2108.8402056515383,218.73813308036878,2.0,47225951.0
|
| 145 |
+
74400.0,15237120000.0,7170.491959511,,,,,,1.3698316812515259,3.838779548478472e-05,0.00019193897742392362,0.05783136934041977,424978.7801878232,422783.5004839579,2124.893900939116,220.40329259640757,2.0,47517312.0
|
| 146 |
+
74500.0,15257600000.0,7219.430852322,1.3757578134536743,1.3812742233276367,1.0,0.984375,0.9867724776268005,1.3824886083602905,3.193504752466747e-05,0.00015967523762333734,0.059286929666996,462961.9329212096,398683.2395770807,2314.809664606048,240.10218655513813,2.0,47808513.0
|
| 147 |
+
74600.0,15278080000.0,7268.006990185,,,,,,1.3857777118682861,2.550451231982599e-05,0.00012752256159912994,0.05974184721708298,416923.76799059176,422310.9400309966,2084.6188399529588,216.22578705274395,2.0,48102670.0
|
| 148 |
+
74700.0,15298560000.0,7316.444110859,,,,,,1.3708055019378662,1.90959620437835e-05,9.54798102189175e-05,0.06086796522140503,418166.10092922184,421613.99197793513,2090.830504646109,216.87008809303123,2.0,48398983.0
|
| 149 |
+
74800.0,15319040000.0,7365.01157581,,,,,,1.3695324659347534,1.2709172738163532e-05,6.354586369081767e-05,0.05852354317903519,414331.77239844453,422822.8535119956,2071.6588619922227,214.88152143399438,2.0,48694814.0
|
| 150 |
+
74900.0,15339520000.0,7415.88037014,,,,,,1.3725576400756836,6.343924221366659e-06,3.1719621106833295e-05,0.058353208005428314,428383.3612441265,421687.5360713725,2141.9168062206327,222.1689828136673,2.0,48990198.0
|
| 151 |
+
75000.0,15360000000.0,7418.861801222,1.3757178783416748,1.3811485767364502,,,,,,,,,,,,,
|
training-curves/91m/anneal-T150000.csv
ADDED
|
@@ -0,0 +1,301 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
step,tokens,wall_clock_s,train_loss,val_loss,valid_prob_mass,game_end_accuracy,game_end_top1_accuracy,batch_train_loss,lr,muon_lr,unclipped_grad_norm,tokens_per_second,avg_tokens_per_second,samples_per_second,t_flops,shard_idx,shard_sample_idx
|
| 2 |
+
120100.0,24596480000.0,140.617253487,,,,,,1.4047632217407227,0.0017903034488539712,0.008951517244269855,0.062329791486263275,424096.496857268,339606.67246400885,2120.48248428634,219.94572115961407,3.0,88937621.0
|
| 3 |
+
120200.0,24616960000.0,189.536845796,,,,,,1.4269789457321167,0.0017448656496237322,0.008724328248118661,0.06570088118314743,424268.050149952,422124.29294318246,2121.34025074976,220.0346924502432,3.0,89238330.0
|
| 4 |
+
120300.0,24637440000.0,238.250493506,,,,,,1.4309672117233276,0.00171,0.00855,0.0612875372171402,415294.48867624963,418654.0481783631,2076.472443381248,215.38080715685004,3.0,89556324.0
|
| 5 |
+
120400.0,24657920000.0,299.099957174,,,,,,1.4179002046585083,0.0016806068977079421,0.00840303448853971,0.061489470303058624,417668.9708490122,420424.04389839934,2088.344854245061,216.61226555780138,3.0,89872761.0
|
| 6 |
+
120500.0,24678400000.0,347.993279127,1.4223694801330566,1.4272196292877197,0.99609375,0.9765625,0.9841269254684448,1.4194167852401733,0.001654711054740197,0.008273555273700986,0.057065173983573914,466065.3848595418,334154.6933278758,2330.326924297709,241.71170462406576,3.0,90187896.0
|
| 7 |
+
120600.0,24698880000.0,396.871645429,,,,,,1.4045544862747192,0.001631299423149112,0.00815649711574556,0.059276286512613297,429152.33485128183,422684.4011892255,2145.761674256409,222.5677893490474,3.0,90500560.0
|
| 8 |
+
120700.0,24719360000.0,445.690562721,,,,,,1.4126620292663574,0.00160977020598613,0.00804885102993065,0.05976445600390434,422619.8592502795,419007.29878712655,2113.0992962513974,219.17990459247133,3.0,90812501.0
|
| 9 |
+
120800.0,24739840000.0,502.805095643,,,,,,1.4284884929656982,0.001589731299247464,0.00794865649623732,0.06471163034439087,425629.6712221115,419516.8700470473,2128.1483561105574,220.74085892622577,3.0,91123780.0
|
| 10 |
+
120900.0,24760320000.0,553.726593651,,,,,,1.433910846710205,0.0015709103465619135,0.007854551732809566,0.05977081134915352,391588.96029832104,358582.32983158116,1957.9448014916052,203.08660153810385,4.0,233682.0
|
| 11 |
+
121000.0,24780800000.0,602.870929545,1.419340968132019,1.4245033264160156,0.99609375,0.9765625,0.9894179701805115,1.4228458404541016,0.0015531090469133948,0.007765545234566974,0.059949714690446854,458970.67919094453,398693.73163279647,2294.8533959547226,238.0322350546201,4.0,528602.0
|
| 12 |
+
121100.0,24801280000.0,651.486628335,,,,,,1.4023921489715576,0.0015361776990525915,0.007680888495262958,0.06064410135149956,424100.8939265722,420564.6740149259,2120.504469632861,219.94800157594918,4.0,823454.0
|
| 13 |
+
121200.0,24821760000.0,700.154610863,,,,,,1.4146597385406494,0.00152,0.0076,0.06386925280094147,420259.0161656626,421269.4550973953,2101.295080828313,217.95551972101245,4.0,1116905.0
|
| 14 |
+
121300.0,24842240000.0,748.82755955,,,,,,1.4153810739517212,0.0015044834601014349,0.007522417300507174,0.061767496168613434,425220.0786588883,420817.05383551115,2126.1003932944413,220.52843526234895,4.0,1410784.0
|
| 15 |
+
121400.0,24862720000.0,799.952508874,,,,,,1.4160068035125732,0.0014895530891008354,0.007447765445504177,0.055642448365688324,422453.16793108504,420774.84960882924,2112.265839655425,219.09345482765846,4.0,1705004.0
|
| 16 |
+
121500.0,24883200000.0,848.966950586,1.416156530380249,1.4219642877578735,0.99609375,0.98046875,0.9841269254684448,1.4125049114227295,0.00147514708427504,0.0073757354213752,0.06323003023862839,458802.0204534323,397118.56857073575,2294.0101022671615,237.94476494362675,4.0,1998113.0
|
| 17 |
+
121600.0,24903680000.0,897.533236835,,,,,,1.406960368156433,0.0014612137954158843,0.0073060689770794215,0.05784912034869194,415638.7115005059,421691.5831589473,2078.1935575025295,215.55932864401558,4.0,2290073.0
|
| 18 |
+
121700.0,24924160000.0,946.06267822,,,,,,1.41118323802948,0.0014477095328589529,0.007238547664294765,0.05710586905479431,427975.9171783069,421698.86397192004,2139.8795858915346,221.9576734075463,4.0,2579201.0
|
| 19 |
+
121800.0,24944640000.0,994.616310297,,,,,,1.418020248413086,0.0014345969488711962,0.007172984744355982,0.05924742668867111,425263.0235688602,422018.7058390786,2126.315117844301,220.55070743215913,4.0,2869449.0
|
| 20 |
+
121900.0,24965120000.0,1045.684573025,,,,,,1.419723391532898,0.0014218438190995192,0.007109219095497596,0.06340936571359634,425473.2418880853,421807.7873666368,2127.3662094404267,220.65973125142094,4.0,3160659.0
|
| 21 |
+
122000.0,24985600000.0,1094.777788708,1.413849115371704,1.4187536239624023,0.99609375,0.97265625,0.9814814329147339,1.4203318357467651,0.001409422109480394,0.00704711054740197,0.05692011117935181,460576.17993384594,397570.2023724106,2302.8808996692296,238.86488286316492,4.0,3453829.0
|
| 22 |
+
122100.0,25006080000.0,1143.432221659,,,,,,1.3992048501968384,0.001397307250897728,0.006986536254488639,0.05957775563001633,431766.30920433253,420992.4299201549,2158.8315460216627,223.92345363402725,4.0,3749052.0
|
| 23 |
+
122200.0,25026560000.0,1191.996163076,,,,,,1.3967729806900024,0.001385477567706389,0.006927387838531945,0.06333687156438828,423557.60486458876,420934.78350897075,2117.788024322944,219.66623998295896,4.0,4044669.0
|
| 24 |
+
122300.0,25047040000.0,1240.514355774,,,,,,1.4014992713928223,0.0013739138220151884,0.006869569110075942,0.05458683520555496,415164.42337620654,421720.16960899404,2075.822116881033,215.3133524468305,4.0,4339376.0
|
| 25 |
+
122400.0,25067520000.0,1291.466926568,,,,,,1.4110145568847656,0.0013625988462982238,0.006812994231491119,0.059669677168130875,448676.99826012284,422116.20504361845,2243.3849913006143,232.69370693072824,4.0,4634452.0
|
| 26 |
+
122500.0,25088000000.0,1340.505575064,1.4130640029907227,1.417920708656311,0.99609375,0.96875,0.978835940361023,1.4076504707336426,0.0013515172442698556,0.006757586221349278,0.05507941544055939,458159.90019611956,398446.8743559833,2290.7995009805977,237.6117473306249,4.0,4929254.0
|
| 27 |
+
122600.0,25108480000.0,1389.11140215,,,,,,1.4101840257644653,0.0013406551451325696,0.006703275725662847,0.05920575559139252,422177.8543175509,421488.01268905454,2110.8892715877546,218.95067116468894,4.0,5223264.0
|
| 28 |
+
122700.0,25128960000.0,1437.600054994,,,,,,1.4034104347229004,0.00133,0.00665,0.060414258390665054,405042.49168572045,421355.79848856217,2025.2124584286023,210.06389723630662,4.0,5516638.0
|
| 29 |
+
122800.0,25149440000.0,1486.097807424,,,,,,1.4115142822265625,0.0013195404119722602,0.006597702059861301,0.06225504353642464,425864.31988355325,422373.5662428726,2129.3215994177663,220.86255285541972,4.0,5808362.0
|
| 30 |
+
122900.0,25169920000.0,1536.82067082,,,,,,1.416844367980957,0.001309265993304375,0.006546329966521875,0.07538115978240967,429386.8065775162,422294.7336260066,2146.934032887581,222.68939151577197,4.0,6100049.0
|
| 31 |
+
123000.0,25190400000.0,1585.700551043,1.4109184741973877,1.4154877662658691,0.99609375,0.96875,0.976190447807312,1.4092258214950562,0.0012991672445680077,0.006495836222840039,0.057768482714891434,458008.1979292966,400234.71880909,2290.040989646483,237.53307121628492,4.0,6394343.0
|
| 32 |
+
123100.0,25210880000.0,1634.276392144,,,,,,1.4116122722625732,0.0012892354518037794,0.006446177259018897,0.05779776722192764,426191.6136362509,422868.61712190934,2130.9580681812545,221.0322945557204,4.0,6689049.0
|
| 33 |
+
123200.0,25231360000.0,1682.834195063,,,,,,1.40325927734375,0.0012794625984949282,0.00639731299247464,0.05725403502583504,419298.55026056257,421615.86891363165,2096.492751302813,217.45740109067265,4.0,6983728.0
|
| 34 |
+
123300.0,25251840000.0,1731.341190027,,,,,,1.4055403470993042,0.0012698412898324738,0.006349206449162369,0.055201128125190735,435897.00532924937,421772.8373710509,2179.4850266462468,226.06572301097006,4.0,7277802.0
|
| 35 |
+
123400.0,25272320000.0,1782.401790125,,,,,,1.3980882167816162,0.0012603646872370686,0.006301823436185342,0.058834679424762726,424181.94195823435,422215.1646489478,2120.9097097911717,219.99003485824366,4.0,7571916.0
|
| 36 |
+
123500.0,25292800000.0,1831.311104829,1.4097459316253662,1.4142189025878906,0.99609375,0.9765625,0.9814814329147339,1.3985097408294678,0.0012510264514892255,0.006255132257446127,0.054265305399894714,459774.98109234596,397624.1996282357,2298.8749054617297,238.4493636162675,4.0,7865696.0
|
| 37 |
+
123600.0,25313280000.0,1879.864043174,,,,,,1.411783218383789,0.0012418206931238266,0.006209103465619133,0.056497544050216675,453297.09349389706,422596.9261964516,2266.4854674694852,235.08978939202845,4.0,8159381.0
|
| 38 |
+
123700.0,25333760000.0,1928.405421244,,,,,,1.3941497802734375,0.0012327419289859933,0.006163709644929966,0.05656808242201805,425252.7075783679,421816.25701072306,2126.2635378918394,220.5453573338086,4.0,8451427.0
|
| 39 |
+
123800.0,25354240000.0,1976.915159415,,,,,,1.3921700716018677,0.001223785044038017,0.006118925220190085,0.06432947516441345,423635.1025042006,421914.74443825195,2118.175512521003,219.7064319542648,4.0,8741883.0
|
| 40 |
+
123900.0,25374720000.0,2027.958843254,,,,,,1.4149549007415771,0.001214945257661842,0.00607472628830921,0.05827123299241066,429774.14881305886,422190.5552756849,2148.8707440652943,222.8902756729469,4.0,9031990.0
|
| 41 |
+
124000.0,25395200000.0,2076.956183363,1.4079591035842896,1.4128211736679077,0.99609375,0.97265625,0.978835940361023,1.4044774770736694,0.0012062180938267897,0.006031090469133948,0.05630612000823021,459348.15871642495,397751.25895251596,2296.7407935821248,238.22800419459185,4.0,9324969.0
|
| 42 |
+
124100.0,25415680000.0,2125.626601869,,,,,,1.4175471067428589,0.0011975993545940704,0.0059879967729703516,0.06346610933542252,427128.09077262046,421834.2330878862,2135.6404538631023,221.51797208579822,4.0,9618924.0
|
| 43 |
+
124200.0,25436160000.0,2174.241064273,,,,,,1.4066022634506226,0.001189085096512951,0.0059454254825647545,0.060381099581718445,425159.4653145932,420796.59793108463,2125.797326572966,220.49699985596934,4.0,9912452.0
|
| 44 |
+
124300.0,25456640000.0,2222.924890013,,,,,,1.399967908859253,0.0011806716095319652,0.005903358047659826,0.05796037241816521,425823.36434745666,421281.1593063097,2129.1168217372833,220.8413124184225,4.0,10205737.0
|
| 45 |
+
124400.0,25477120000.0,2274.032138852,,,,,,1.3934775590896606,0.001172355398105183,0.005861776990525915,0.06565646827220917,427542.6459367461,420681.30860661104,2137.7132296837303,221.73296946306903,4.0,10499254.0
|
| 46 |
+
124500.0,25497600000.0,2322.966764113,1.407097578048706,1.41222083568573,0.99609375,0.9765625,0.9841269254684448,1.4066656827926636,0.0011641331642205908,0.005820665821102954,0.05845143273472786,459338.0878128496,397259.3700741082,2296.690439064248,238.22278120367815,4.0,10793016.0
|
| 47 |
+
124600.0,25518080000.0,2371.427578504,,,,,,1.3912361860275269,0.0011560017921168537,0.005780008960584269,0.056277547031641006,402658.72055740765,422380.6608567002,2013.2936027870383,208.82762137979395,4.0,11086697.0
|
| 48 |
+
124700.0,25538560000.0,2420.106521037,,,,,,1.406161904335022,0.0011479583344875986,0.005739791672437993,0.0568140372633934,425677.7615621452,422616.8880007864,2128.388807810726,220.76579962863173,4.0,11381362.0
|
| 49 |
+
124800.0,25559040000.0,2468.644968785,,,,,,1.3901793956756592,0.00114,0.005699999999999999,0.05891929566860199,426843.6826902388,420722.23089686123,2134.218413451194,221.37047183232616,4.0,11671018.0
|
| 50 |
+
124900.0,25579520000.0,2519.714428031,,,,,,1.4048863649368286,0.0011321241419777978,0.005660620709888989,0.06429586559534073,425736.4127345223,421941.354872554,2128.6820636726115,220.79621740972857,4.0,11960288.0
|
| 51 |
+
125000.0,25600000000.0,2569.229552262,1.4058382511138916,1.41055428981781,0.99609375,0.9765625,0.9841269254684448,1.4075299501419067,0.0011243282481186603,0.0056216412405933015,0.058866120874881744,461501.63740308525,397568.0090036371,2307.5081870154263,239.34484535279356,4.0,12250184.0
|
| 52 |
+
125100.0,25620480000.0,2617.887222957,,,,,,1.411889672279358,0.0011166099311326445,0.005583049655663223,0.05739369988441467,421778.60294471466,417364.35879375885,2108.8930147235733,218.74361066837932,4.0,12542821.0
|
| 53 |
+
125200.0,25640960000.0,2666.556240883,,,,,,1.4019478559494019,0.0011089669202028697,0.005544834601014348,0.05977608636021614,427069.05555370497,420906.75923092547,2135.3452777685247,221.48735512976484,4.0,12839417.0
|
| 54 |
+
125300.0,25661440000.0,2715.221356095,,,,,,1.4006307125091553,0.0011013970531818288,0.0055069852659091435,0.05882306024432182,423338.00825589325,420808.84072512964,2116.690041279466,219.5523523776105,4.0,13135380.0
|
| 55 |
+
125400.0,25681920000.0,2766.266832108,,,,,,1.3911235332489014,0.0010938982694473358,0.005469491347236679,0.06363437324762344,385684.68496864435,420842.3342509889,1928.4234248432217,200.0245151852715,4.0,13430500.0
|
| 56 |
+
125500.0,25702400000.0,2815.246256254,1.4051355123519897,1.4102519750595093,0.99609375,0.98046875,0.9920634627342224,1.3929928541183472,0.0010864686033512086,0.005432343016756043,0.05762432515621185,458198.7579998699,397727.9288928538,2290.9937899993492,237.6318998377356,4.0,13725834.0
|
| 57 |
+
125600.0,25722880000.0,2863.772953365,,,,,,1.399086594581604,0.001079106178201671,0.005395530891008355,0.060962922871112823,428510.2988919507,422000.5295238117,2142.5514944597535,222.23481545482298,4.0,14020306.0
|
| 58 |
+
125700.0,25743360000.0,2912.290757777,,,,,,1.3881325721740723,0.001071809200727272,0.00535904600363636,0.05897458642721176,423765.3038652229,422042.78922489536,2118.8265193261145,219.77395722848476,4.0,14312831.0
|
| 59 |
+
125800.0,25763840000.0,2960.850097089,,,,,,1.4007031917572021,0.0010645759559760484,0.005322879779880242,0.062341585755348206,426814.83856189635,422119.42232689186,2134.0741928094817,221.35551263634952,4.0,14605152.0
|
| 60 |
+
125900.0,25784320000.0,3012.01322708,,,,,,1.406538724899292,0.0010574048026088289,0.005287024013044144,0.05958809703588486,422882.2173965912,421759.15719014744,2114.411086982956,219.3159692667147,4.0,14896056.0
|
| 61 |
+
126000.0,25804800000.0,3061.104798453,1.4033291339874268,1.4087059497833252,0.99609375,0.96875,0.978835940361023,1.411287784576416,0.00105029416855008,0.0052514708427504,0.062016811221838,457769.2448135522,396817.6677025211,2288.846224067761,237.40914490292178,4.0,15186926.0
|
| 62 |
+
126100.0,25825280000.0,3109.613486923,,,,,,1.4096790552139282,0.00104324254696365,0.00521621273481825,0.05961020663380623,414053.3671134042,421030.2801156369,2070.266835567021,214.73713436254576,4.0,15479450.0
|
| 63 |
+
126200.0,25845760000.0,3158.19382706,,,,,,1.4035029411315918,0.0010362484925242293,0.005181242462621146,0.06651575863361359,429375.21641375485,422198.64187443623,2146.8760820687744,222.68338060328927,4.0,15774203.0
|
| 64 |
+
126300.0,25866240000.0,3206.85166822,,,,,,1.4064979553222656,0.0010293106179583905,0.005146553089791952,0.055463869124650955,424404.9314351073,421576.45884208975,2122.0246571755365,220.10568207925414,4.0,16071336.0
|
| 65 |
+
126400.0,25886720000.0,3258.117120052,,,,,,1.3958420753479004,0.0010224275908317687,0.005112137954158844,0.05916668847203255,427088.37823513214,420905.26808995893,2135.4418911756607,221.49737629507212,4.0,16367322.0
|
| 66 |
+
126500.0,25907200000.0,3307.123895403,1.4031018018722534,1.4079937934875488,0.99609375,0.98046875,0.9894179701805115,1.3904424905776978,0.0010155981305613002,0.005077990652806502,0.0560448132455349,458891.4823963827,396040.78799346415,2294.4574119819135,237.99116186438505,4.0,16662959.0
|
| 67 |
+
126600.0,25927680000.0,3355.685065558,,,,,,1.400800108909607,0.0010088210056335483,0.005044105028167742,0.06083966791629791,410007.4361309514,421756.6867343692,2050.037180654757,212.63882604287787,4.0,16958904.0
|
| 68 |
+
126700.0,25948160000.0,3404.185685389,,,,,,1.3862972259521484,0.0010020950310120043,0.005010475155060022,0.06030995398759842,421330.2951541742,421743.9456059877,2106.651475770871,218.5111084406491,4.0,17253720.0
|
| 69 |
+
126800.0,25968640000.0,3452.673419349,,,,,,1.3905490636825562,0.000995419065717906,0.004977095328589529,0.06047904118895531,420632.9419311557,422268.9068496063,2103.1647096557786,218.14944580330976,4.0,17547389.0
|
| 70 |
+
126900.0,25989120000.0,3503.670453236,,,,,,1.3977158069610596,0.0009887920105705833,0.004943960052852916,0.06004995107650757,429265.355573346,422382.57577867864,2146.32677786673,222.62640436804566,4.0,17840315.0
|
| 71 |
+
127000.0,26009600000.0,3552.638447105,1.4012882709503174,1.406894564628601,0.99609375,0.98046875,0.9894179701805115,1.403102159500122,0.000982212806074669,0.004911064030373344,0.06035102903842926,459995.0943479078,398115.96151411964,2299.975471739539,238.56351916598345,4.0,18134339.0
|
| 72 |
+
127100.0,26030080000.0,3601.200783858,,,,,,1.4260145425796509,0.0009756804304426599,0.004878402152213299,0.057806164026260376,418546.91449640243,422083.03731811955,2092.734572482012,217.06758633996697,4.0,18426900.0
|
| 73 |
+
127200.0,26050560000.0,3649.715144618,,,,,,1.4044302701950073,0.0009691938977423924,0.004845969488711962,0.06092528998851776,420810.5682553571,421733.19503652287,2104.0528412767853,218.2415667009425,4.0,18721226.0
|
| 74 |
+
127300.0,26071040000.0,3698.285947733,,,,,,1.4041411876678467,0.0009627522561599129,0.004813761280799565,0.05753549188375473,428627.47308458446,422150.2597054755,2143.1373654229224,222.29558455452343,4.0,19019659.0
|
| 75 |
+
127400.0,26091520000.0,3749.545008708,,,,,,1.3953430652618408,0.0009563545863690816,0.004781772931845408,0.06500203907489777,418885.7258359857,421659.57499238284,2094.4286291799285,217.24330131279493,4.0,19315974.0
|
| 76 |
+
127500.0,26112000000.0,3798.429749633,1.400801420211792,1.4056625366210938,0.99609375,0.98046875,0.9867724776268005,1.3918472528457642,0.00095,0.00475,0.0600772500038147,460523.5850988659,396102.35231761227,2302.6179254943295,238.83760603113572,4.0,19612129.0
|
| 77 |
+
127600.0,26132480000.0,3846.938486337,,,,,,1.392254114151001,0.0009436876381990383,0.004718438190995192,0.05931413173675537,434865.3599006535,422807.23004490463,2174.3267995032675,225.5306891225626,4.0,19908083.0
|
| 78 |
+
127700.0,26152960000.0,3895.559152893,,,,,,1.3893682956695557,0.000937416670273858,0.0046870833513692894,0.06389527767896652,426518.98729023326,422198.78298283543,2132.594936451166,221.2020776945753,4.0,20203599.0
|
| 79 |
+
127800.0,26173440000.0,3944.051037336,,,,,,1.3911181688308716,0.0009311862924173708,0.004655931462086854,0.057434577494859695,419941.999261796,421227.1745418988,2099.70999630898,217.79110781934045,4.0,20498130.0
|
| 80 |
+
127900.0,26193920000.0,3994.882402815,,,,,,1.3901294469833374,0.0009249957265050922,0.004624978632525461,0.0579335056245327,425914.7862476572,422346.13293273177,2129.573931238286,220.8887258158884,4.0,20791474.0
|
| 81 |
+
128000.0,26214400000.0,4043.722803147,1.399635910987854,1.4050639867782593,0.99609375,0.984375,0.9920634627342224,1.3917468786239624,0.0009188442189607878,0.004594221094803939,0.06023566424846649,458639.117783053,399392.1768305915,2293.195588915265,237.86028005497306,4.0,21083552.0
|
| 82 |
+
128100.0,26234880000.0,4092.359378065,,,,,,1.4239060878753662,0.0009127310396857398,0.004563655198428699,0.06086622178554535,419308.98875472095,423206.95796162623,2096.5449437736047,217.4628147221044,4.0,21375942.0
|
| 83 |
+
128200.0,26255360000.0,4140.925951438,,,,,,1.4030264616012573,0.0009066554810473189,0.004533277405236595,0.060023725032806396,418625.2413936281,421089.30888409074,2093.1262069681407,217.1082083824129,4.0,21669523.0
|
| 84 |
+
128300.0,26275840000.0,4189.410977188,,,,,,1.390841007232666,0.0009006168569228983,0.004503084284614492,0.06206632778048515,422224.13007158204,421697.15191282326,2111.12065035791,218.97467078309654,4.0,21965829.0
|
| 85 |
+
128400.0,26296320000.0,4240.474146535,,,,,,1.392266035079956,0.0008946145017954555,0.004473072508977278,0.06416860222816467,421886.7366444082,422405.5146536761,2109.433683222041,218.7996911706636,4.0,22261558.0
|
| 86 |
+
128500.0,26316800000.0,4289.512191912,1.3990123271942139,1.4040913581848145,0.99609375,0.98046875,0.9894179701805115,1.3877005577087402,0.0008886477698974836,0.0044432388494874174,0.0614854097366333,457809.9883281548,397588.66847929603,2289.049941640774,237.43027538093386,4.0,22557273.0
|
| 87 |
+
128600.0,26337280000.0,4338.156085696,,,,,,1.3991163969039917,0.000882716034400096,0.00441358017200048,0.05942041799426079,407886.10783470183,421495.12928983127,2039.430539173509,211.53865878049197,4.0,22852766.0
|
| 88 |
+
128700.0,26357760000.0,4386.735402555,,,,,,1.3951802253723145,0.0008768186866444443,0.0043840934332222215,0.06826945394277573,429317.27497905877,421026.39222810534,2146.586374895294,222.65333090768058,4.0,23148002.0
|
| 89 |
+
128800.0,26378240000.0,4435.375993432,,,,,,1.4016307592391968,0.0008709551354127783,0.004354775677063891,0.06618767976760864,431203.6492455385,421585.324741624,2156.0182462276925,223.63164587017712,4.0,23442458.0
|
| 90 |
+
128900.0,26398720000.0,4486.291801053,,,,,,1.3768564462661743,0.000865124806236681,0.004325624031183405,0.05938262492418289,418681.76103081304,421053.9721923938,2093.4088051540652,217.13752070272784,4.0,23733802.0
|
| 91 |
+
129000.0,26419200000.0,4535.270693666,1.397918462753296,1.4027125835418701,0.99609375,0.984375,0.9947089552879333,1.3812105655670166,0.0008593271407401845,0.004296635703700922,0.05847644433379173,345513.0462134257,397604.0057607936,1727.5652310671285,179.1906244984693,4.0,24025063.0
|
| 92 |
+
129100.0,26439680000.0,4583.772807457,,,,,,1.4072635173797607,0.0008535615960156406,0.004267807980078203,0.05784903094172478,451448.64572258346,423275.212539362,2257.2432286129174,234.13114393963681,4.0,24317234.0
|
| 93 |
+
129200.0,26460160000.0,4632.333903051,,,,,,1.414773941040039,0.0008478276440303772,0.004239138220151885,0.06189921870827675,439672.7352203064,422255.48921691615,2198.363676101532,228.02389913349518,4.0,24610957.0
|
| 94 |
+
129300.0,26480640000.0,4680.985742624,,,,,,1.398938536643982,0.0008421247710622958,0.004210623855311479,0.05999166890978813,405228.02821804926,421743.0407314626,2026.1401410902463,210.16012054092457,4.0,24906392.0
|
| 95 |
+
129400.0,26501120000.0,4731.799388494,,,,,,1.3901704549789429,0.0008364524771627112,0.0041822623858135555,0.059989083558321,413254.9822861883,420956.5483675994,2066.2749114309413,214.32307452501777,4.0,25202505.0
|
| 96 |
+
129500.0,26521600000.0,4780.726947053,1.3969123363494873,1.4024406671524048,0.99609375,0.98046875,0.9894179701805115,1.393161416053772,0.0008308102756448382,0.004154051378224191,0.05927060917019844,459090.1390535296,399532.0886407804,2295.450695267648,238.0941895527605,4.0,25497731.0
|
| 97 |
+
129600.0,26542080000.0,4829.422993511,,,,,,1.3889477252960205,0.0008251976925964478,0.004125988462982239,0.06482600420713425,425702.65469007473,422443.5134256202,2128.5132734503736,220.77870974935885,4.0,25792823.0
|
| 98 |
+
129700.0,26562560000.0,4878.020823331,,,,,,1.388776183128357,0.000819614266415308,0.00409807133207654,0.06344714760780334,380580.18726105563,420574.26754279307,1902.900936305278,197.37721100385767,4.0,26087784.0
|
| 99 |
+
129800.0,26583040000.0,4926.608473568,,,,,,1.3793797492980957,0.0008140595473661244,0.004070297736830622,0.0642545148730278,381061.6926277088,421423.8748539552,1905.3084631385439,197.62693022081785,4.0,26383132.0
|
| 100 |
+
129900.0,26603520000.0,4977.453731291,,,,,,1.3880207538604736,0.0008085330971577746,0.004042665485788873,0.059570081532001495,391518.8170663395,421513.04904909414,1957.5940853316974,203.05022372348625,4.0,26676844.0
|
| 101 |
+
130000.0,26624000000.0,5026.928224847,1.3957222700119019,1.4008209705352783,0.99609375,0.98046875,0.9920634627342224,1.4063739776611328,0.0008030344885397111,0.004015172442698556,0.06216087564826012,460077.13672375446,399295.2042928122,2300.3856836187724,238.60606813692513,4.0,26968645.0
|
| 102 |
+
130100.0,26644480000.0,5075.415645959,,,,,,1.4001998901367188,0.0007975633049164833,0.0039878165245824165,0.0598575733602047,426866.5910989439,417721.8056338087,2134.3329554947195,221.3823526342441,4.0,27261055.0
|
| 103 |
+
130200.0,26664960000.0,5123.980595246,,,,,,1.4039466381072998,0.0007921191399793929,0.003960595699896964,0.059171050786972046,425351.67750273587,422383.911249728,2126.7583875136793,220.5966853017346,4.0,27555908.0
|
| 104 |
+
130300.0,26685440000.0,5172.591724555,,,,,,1.3930420875549316,0.0007867015973543601,0.003933507986771801,0.06441717594861984,411001.06516593514,421709.94611266797,2055.0053258296757,213.1541437978797,4.0,27850640.0
|
| 105 |
+
130400.0,26705920000.0,5223.473348686,,,,,,1.3854011297225952,0.0007813102902651393,0.003906551451325697,0.059334393590688705,414743.8752147366,421309.0784847258,2073.719376073683,215.0952469700291,4.0,28145370.0
|
| 106 |
+
130500.0,26726400000.0,5272.486522373,1.3952834606170654,1.4002983570098877,0.99609375,0.98046875,0.9894179701805115,1.3944103717803955,0.000775944841211073,0.003879724206055365,0.061358802020549774,458590.88160630816,398999.49265365046,2292.954408031541,237.83526371845826,4.0,28439036.0
|
| 107 |
+
130600.0,26746880000.0,5321.067264913,,,,,,1.3852074146270752,0.0007706048816586228,0.0038530244082931138,0.06442665308713913,382880.63001503894,421704.27971835283,1914.4031500751948,198.57027094248187,4.0,28732716.0
|
| 108 |
+
130700.0,26767360000.0,5369.683338685,,,,,,1.386922001838684,0.0007652900517459686,0.003826450258729843,0.061590831726789474,412751.8017546169,421572.55465407105,2063.7590087730846,214.062114093347,4.0,29027554.0
|
| 109 |
+
130800.0,26787840000.0,5418.224663877,,,,,,1.39100980758667,0.00076,0.0038,0.06134120002388954,415407.35823088314,421266.53379521496,2077.036791154416,215.43934377711173,4.0,29321954.0
|
| 110 |
+
130900.0,26808320000.0,5469.081379986,,,,,,1.4032305479049683,0.0007547343830650754,0.003773671915325377,0.0632919892668724,435321.32898177614,421915.3288369751,2176.6066449088808,225.7671646631935,4.0,29614392.0
|
| 111 |
+
131000.0,26828800000.0,5517.991227623,1.393399953842163,1.3986047506332397,0.99609375,0.984375,0.9920634627342224,1.377170443534851,0.0007494928654429532,0.0037474643272147664,0.06504989415407181,459305.66741524974,399200.4531233835,2296.5283370762486,238.20596727622714,4.0,29904236.0
|
| 112 |
+
131100.0,26849280000.0,5566.546953118,,,,,,1.3904335498809814,0.0007442751192433384,0.0037213755962166918,0.061017535626888275,427113.8613674311,422596.24427248584,2135.5693068371556,221.51059240497267,4.0,30195717.0
|
| 113 |
+
131200.0,26869760000.0,5615.099706586,,,,,,1.3857603073120117,0.0007390808239445205,0.0036954041197226027,0.06001519784331322,384063.54811248544,421789.6954902688,1920.3177405624272,199.18375814632262,4.0,30489730.0
|
| 114 |
+
131300.0,26890240000.0,5663.704998565,,,,,,1.3776228427886963,0.0007339096661636087,0.0036695483308180434,0.05918821319937706,391376.10947315086,421815.7992394107,1956.8805473657544,202.97621244366806,4.0,30783414.0
|
| 115 |
+
131400.0,26910720000.0,5714.754648765,,,,,,1.389143466949463,0.0007287613394358945,0.0036438066971794724,0.06198474392294884,437734.9004260176,421358.8967133123,2188.674502130088,227.0188956154834,4.0,31076510.0
|
| 116 |
+
131500.0,26931200000.0,5763.719783386,1.3932303190231323,1.3980563879013062,1.0,0.9765625,0.9841269254684448,1.3736162185668945,0.0007236355440029084,0.0036181777200145417,0.060809697955846786,458691.5279723865,397699.714742962,2293.4576398619324,237.8874611257305,4.0,31369950.0
|
| 117 |
+
131600.0,26951680000.0,5812.17005053,,,,,,1.3696027994155884,0.00071853198660875,0.00359265993304375,0.06348248571157455,423041.33041847916,422119.52604412544,2115.206652092396,219.39848876075524,4.0,31662973.0
|
| 118 |
+
131700.0,26972160000.0,5860.661931308,,,,,,1.3913826942443848,0.0007134503803043043,0.0035672519015215215,0.06334076076745987,430077.97998995637,422708.84767504747,2150.389899949782,223.04784916815075,4.0,31957537.0
|
| 119 |
+
131800.0,26992640000.0,5909.181913586,,,,,,1.39279305934906,0.0007083904442589708,0.0035419522212948537,0.06270626187324524,414025.42742787517,422345.9647303918,2070.127137139376,214.7226442303985,4.0,32252168.0
|
| 120 |
+
131900.0,27013120000.0,5959.959457653,,,,,,1.3782639503479004,0.0007033519035795584,0.003516759517897792,0.061028122901916504,406779.9025520306,422100.994657856,2033.899512760153,210.9649565206273,4.0,32544488.0
|
| 121 |
+
132000.0,27033600000.0,6008.807666076,1.3919785022735596,1.3970178365707397,1.0,0.98046875,0.9894179701805115,1.37117338180542,0.0006983344891360159,0.003491672445680079,0.062457870692014694,460198.15951478994,399823.8933161564,2300.9907975739497,238.66883320395183,4.0,32833090.0
|
| 122 |
+
132100.0,27054080000.0,6057.336937709,,,,,,1.3835780620574951,0.0006933379373936821,0.0034666896869684108,0.0591597743332386,420512.48045507725,423126.5988513203,2102.5624022753864,218.08697184649955,4.0,33122194.0
|
| 123 |
+
132200.0,27074560000.0,6105.830216164,,,,,,1.391877293586731,0.000688361990251764,0.0034418099512588196,0.059618111699819565,424405.979871442,422019.4688348826,2122.02989935721,220.1062258212738,4.0,33412999.0
|
| 124 |
+
132300.0,27095040000.0,6154.42546865,,,,,,1.3874963521957397,0.0006834063948877587,0.0034170319744387936,0.06181518733501434,418665.4361025899,422333.082075194,2093.3271805129493,217.1290542378135,4.0,33707095.0
|
| 125 |
+
132400.0,27115520000.0,6205.548783028,,,,,,1.3981682062149048,0.000678470903607559,0.003392354518037795,0.05955076590180397,424104.24413581315,421446.5835815279,2120.5212206790657,219.9497390677535,4.0,34003634.0
|
| 126 |
+
132500.0,27136000000.0,6254.481049212,1.3918241262435913,1.3963472843170166,1.0,0.984375,0.9920634627342224,1.3735630512237549,0.0006735552737009847,0.0033677763685049235,0.06447169184684753,456588.4024599618,397115.76699735917,2282.942012299809,236.7967342252555,4.0,34298809.0
|
| 127 |
+
132600.0,27156480000.0,6302.939413042,,,,,,1.3801147937774658,0.0006686592673025067,0.003343296336512533,0.06153272092342377,391443.70422489,422423.00711626397,1957.21852112445,203.01126856067927,4.0,34593786.0
|
| 128 |
+
132700.0,27176960000.0,6351.678385919,,,,,,1.3770456314086914,0.0006637826512569348,0.0033189132562846738,0.0663464218378067,424864.4326903768,422639.0538217418,2124.322163451884,220.34398948267045,4.0,34889333.0
|
| 129 |
+
132800.0,27197440000.0,6400.288282985,,,,,,1.3796141147613525,0.0006589251969898564,0.0032946259849492817,0.064327172935009,392892.1469455262,420205.3546975515,1964.4607347276308,203.76246264294477,4.0,35183293.0
|
| 130 |
+
132900.0,27217920000.0,6451.302162866,,,,,,1.3858360052108765,0.0006540866803826199,0.0032704334019130993,0.06555458158254623,450896.26640351064,421320.19387664757,2254.481332017553,233.84466794045395,4.0,35476617.0
|
| 131 |
+
133000.0,27238400000.0,6500.261648126,1.3903348445892334,1.3955589532852173,1.0,0.984375,0.9920634627342224,1.3881727457046509,0.0006492668816516717,0.0032463344082583586,0.06328748911619186,457623.6521309229,397967.6951734379,2288.1182606546145,237.33363735260303,4.0,35768239.0
|
| 132 |
+
133100.0,27258880000.0,6548.797981479,,,,,,1.3910930156707764,0.0006444655852320628,0.0032223279261603135,0.06206193193793297,417437.58395589027,422177.7194478925,2087.1879197794515,216.4922632530153,4.0,36059501.0
|
| 133 |
+
133200.0,27279360000.0,6597.381158462,,,,,,1.3918718099594116,0.0006396825796649481,0.0031984128983247404,0.0619255006313324,426957.82489426626,421958.367413649,2134.7891244713314,221.42966847640508,4.0,36351036.0
|
| 134 |
+
133300.0,27299840000.0,6646.060996597,,,,,,1.38139808177948,0.0006349176574889153,0.0031745882874445767,0.06290328502655029,425397.80901127186,421552.4824347337,2126.9890450563594,220.6206101112728,4.0,36644105.0
|
| 135 |
+
133400.0,27320320000.0,6697.16221626,,,,,,1.3796935081481934,0.0006301706151349834,0.0031508530756749168,0.06462427228689194,427163.7746447775,420714.2852385034,2135.8188732238877,221.5364785225491,4.0,36939422.0
|
| 136 |
+
133500.0,27340800000.0,6746.289123983,1.3897031545639038,1.3947958946228027,1.0,0.984375,0.9920634627342224,1.3745797872543335,0.0006254412528251198,0.003127206264125599,0.06278423219919205,457629.74711901497,397293.7931576099,2288.148735595075,237.33679834676664,4.0,37236556.0
|
| 137 |
+
133600.0,27361280000.0,6794.936998511,,,,,,1.3837171792984009,0.0006207293744741368,0.003103646872370684,0.06571772694587708,419574.4238378701,420726.28214421024,2097.8721191893505,217.6004751631053,4.0,37532500.0
|
| 138 |
+
133700.0,27381760000.0,6843.563740654,,,,,,1.392419457435608,0.0006160347875948249,0.0030801739379741244,0.06399476528167725,423730.39452609164,420992.68370406807,2118.651972630458,219.7558524815054,4.0,37828222.0
|
| 139 |
+
133800.0,27402240000.0,6892.163479513,,,,,,1.384137511253357,0.0006113573032061991,0.003056786516030995,0.0626232698559761,428596.46273003554,421175.37812545523,2142.9823136501777,222.2795019062459,4.0,38124074.0
|
| 140 |
+
133900.0,27422720000.0,6943.029345128,,,,,,1.388940453529358,0.0006066967357447313,0.0030334836787236567,0.0635061040520668,424905.203965944,421407.46563595865,2124.52601982972,220.36513435812608,4.0,38418596.0
|
| 141 |
+
134000.0,27443200000.0,6992.002340464,1.388504981994629,1.393486738204956,1.0,0.984375,0.9894179701805115,1.3722202777862549,0.000602052902978451,0.0030102645148922546,0.061940550804138184,461129.2756511152,399142.67181392096,2305.646378255576,239.15173040212497,4.0,38711866.0
|
| 142 |
+
134100.0,27463680000.0,7040.544996092,,,,,,1.3763506412506104,0.0005974256259238016,0.0029871281296190077,0.06479212641716003,420641.18113417283,422032.199661053,2103.205905670864,218.1537188342421,4.0,39003569.0
|
| 143 |
+
134200.0,27484160000.0,7089.223119435,,,,,,1.3835889101028442,0.000592814728765148,0.0029640736438257403,0.06245594099164009,424461.9738966252,421903.34898672166,2122.309869483126,220.1352655477059,4.0,39295384.0
|
| 144 |
+
134300.0,27504640000.0,7137.756410502,,,,,,1.3960226774215698,0.000588220038776828,0.00294110019388414,0.06431246548891068,446683.7814592059,420729.5586424181,2233.4189072960294,231.65998109249597,4.0,39588722.0
|
| 145 |
+
134400.0,27525120000.0,7188.929324057,,,,,,1.392545223236084,0.0005836413862476532,0.002918206931238266,0.06536590307950974,407474.56309998,421986.69774811494,2037.3728154999,211.32522267776864,4.0,39883632.0
|
| 146 |
+
134500.0,27545600000.0,7237.766031575,1.388310194015503,1.392735242843628,1.0,0.984375,0.9894179701805115,1.383894920349121,0.0005790786044077667,0.0028953930220388334,0.06122228503227234,459996.07966828626,396760.2735203937,2299.9803983414313,238.56403017468742,4.0,40184275.0
|
| 147 |
+
134600.0,27566080000.0,7286.211877973,,,,,,1.3886139392852783,0.0005745315293577645,0.0028726576467888224,0.06225370615720749,422625.68127384974,423230.21584821603,2113.1284063692488,219.18292402126232,4.0,40481482.0
|
| 148 |
+
134700.0,27586560000.0,7334.732037827,,,,,,1.3729883432388306,0.0005700000000000001,0.0028500000000000005,0.06127120926976204,426102.39789834176,422747.6209032091,2130.511989491709,220.98602532228267,4.0,40778295.0
|
| 149 |
+
134800.0,27607040000.0,7383.447520372,,,,,,1.3801424503326416,0.0005654838579719865,0.0028274192898599323,0.06539637595415115,423842.6684034974,422098.8665772914,2119.213342017487,219.81408017052522,4.0,41075716.0
|
| 150 |
+
134900.0,27627520000.0,7434.581672271,,,,,,1.3849971294403076,0.0005609829475818215,0.0028049147379091074,0.06235959380865097,425891.7687236388,420408.23095303494,2129.458843618194,220.87678842438183,4.0,41372401.0
|
| 151 |
+
135000.0,27648000000.0,7483.984805116,1.3866374492645264,1.39199960231781,1.0,0.9765625,0.9841269254684448,1.3823508024215698,0.0005564971157455596,0.002782485578727798,0.06339795142412186,459405.1536130966,397052.8888690376,2297.025768065483,238.25756299487378,4.0,41668159.0
|
| 152 |
+
135100.0,27668480000.0,7532.435215583,,,,,,1.387434959411621,0.0005520262119264584,0.002760131059632292,0.0628606379032135,418533.04716304055,418339.0966922601,2092.665235815203,217.06039443751214,4.0,41961946.0
|
| 153 |
+
135200.0,27688960000.0,7580.887154403,,,,,,1.3823601007461548,0.0005475700880760339,0.0027378504403801694,0.06411295384168625,438707.1672222475,422707.54135040066,2193.5358361112376,227.5231344461293,4.0,42254921.0
|
| 154 |
+
135300.0,27709440000.0,7629.410123878,,,,,,1.3942173719406128,0.0005431285985768586,0.0027156429928842925,0.06592531502246857,426692.5064476262,422694.62414802704,2133.462532238131,221.29206852564946,4.0,42548270.0
|
| 155 |
+
135400.0,27729920000.0,7680.403319151,,,,,,1.398391604423523,0.000538701600187037,0.0026935080009351854,0.06533445417881012,425647.38745158166,422094.851076309,2128.2369372579083,220.75004695040403,4.0,42843709.0
|
| 156 |
+
135500.0,27750400000.0,7729.250240925,1.3860807418823242,1.3908720016479492,1.0,0.984375,0.9920634627342224,1.3760448694229126,0.0005342889519863043,0.002671444759931521,0.06177891045808792,458180.91680619336,398132.1569666752,2290.904584030967,237.6226470043861,4.0,43143271.0
|
| 157 |
+
135600.0,27770880000.0,7777.811733563,,,,,,1.377194881439209,0.000529890515323684,0.0026494525766184197,0.06713715940713882,426724.72578132455,423154.0982111589,2133.623628906623,221.30877817696248,4.0,43439596.0
|
| 158 |
+
135700.0,27791360000.0,7826.31219673,,,,,,1.364031434059143,0.0005255061537666554,0.0026275307688332764,0.06630127131938934,425961.8848981725,421740.8541399426,2129.8094244908625,220.91315220641505,4.0,43735891.0
|
| 159 |
+
135800.0,27811840000.0,7874.851105033,,,,,,1.3837085962295532,0.0005211357330517747,0.0026056786652588733,0.06228375434875488,410766.0051482427,422270.9141708905,2053.8300257412134,213.03223653033498,4.0,44031837.0
|
| 160 |
+
135900.0,27832320000.0,7925.949992316,,,,,,1.3773478269577026,0.0005167791210367015,0.0025838956051835076,0.06209332123398781,425814.9208865544,421935.89780196594,2129.074604432772,220.83693345488237,4.0,44327526.0
|
| 161 |
+
136000.0,27852800000.0,7974.782914269,1.3852519989013672,1.3901909589767456,1.0,0.984375,0.9920634627342224,1.3877449035644531,0.0005124361876535793,0.0025621809382678964,0.06698679178953171,459220.70839209517,397323.5725128442,2296.103541960476,238.1619056681846,4.0,44622469.0
|
| 162 |
+
136100.0,27873280000.0,8023.231408314,,,,,,1.3854596614837646,0.0005081068048637257,0.002540534024318629,0.06695487350225449,416260.07546043367,423268.31517872924,2081.3003773021683,215.88158158711144,4.0,44914152.0
|
| 163 |
+
136200.0,27893760000.0,8071.794941566,,,,,,1.3894184827804565,0.0005037908466135884,0.002518954233067942,0.06319745630025864,393132.1978637061,422724.61781392817,1965.6609893185305,203.8869583006674,4.0,45204981.0
|
| 164 |
+
136300.0,27914240000.0,8120.383949308,,,,,,1.376592755317688,0.0004994881887919213,0.0024974409439596063,0.06469836831092834,398774.1705642999,421723.0620084612,1993.8708528214995,206.81300877170585,4.0,45497235.0
|
| 165 |
+
136400.0,27934720000.0,8171.257258487,,,,,,1.3901379108428955,0.0004951987091881406,0.002475993545940703,0.06419947743415833,434925.90973117424,421501.72492429975,2174.629548655871,225.56209158930932,4.0,45790970.0
|
| 166 |
+
136500.0,27955200000.0,8220.23326568,1.384406566619873,1.3891308307647705,1.0,0.98046875,0.9894179701805115,1.373660683631897,0.000490922287451824,0.0024546114372591197,0.062206678092479706,459506.6493632655,399071.08885833307,2297.5332468163274,238.3102009113172,4.0,46087859.0
|
| 167 |
+
136600.0,27975680000.0,8268.717720573,,,,,,1.377410650253296,0.0004866588050533114,0.002433294025266557,0.0625658705830574,425726.07376466633,422018.5855845568,2128.6303688233315,220.7908553937773,4.0,46385308.0
|
| 168 |
+
136700.0,27996160000.0,8317.184907444,,,,,,1.368006944656372,0.00048240814524537186,0.0024120407262268593,0.06259007006883621,417907.52701459476,422409.88503700425,2089.537635072974,216.73598600412657,4.0,46681930.0
|
| 169 |
+
136800.0,28016640000.0,8365.774373971,,,,,,1.3795212507247925,0.00047817019302590216,0.002390850965129511,0.06667747348546982,418693.8014810858,422561.41917964316,2093.469007405429,217.14376514364622,4.0,46978000.0
|
| 170 |
+
136900.0,28037120000.0,8416.811797823,,,,,,1.361694574356079,0.0004739448351016243,0.0023697241755081216,0.0619589164853096,424894.2748152017,421496.71975163044,2124.4713740760085,220.35946626145588,4.0,47274147.0
|
| 171 |
+
137000.0,28057600000.0,8465.776609133,1.3834142684936523,1.3880914449691772,1.0,0.98046875,0.9894179701805115,1.3837401866912842,0.0004697319598527461,0.0023486597992637306,0.06712882965803146,458977.3005944843,397796.58617169067,2294.8865029724216,238.0356690593512,4.0,47569241.0
|
| 172 |
+
137100.0,28078080000.0,8514.26722677,,,,,,1.3743233680725098,0.0004655314572985577,0.002327657286492788,0.072084940969944,419124.65184089344,422119.8496422217,2095.623259204467,217.36721356588504,4.0,47863802.0
|
| 173 |
+
137200.0,28098560000.0,8562.731121414,,,,,,1.3794293403625488,0.00046134321906393075,0.0023067160953196535,0.06398388743400574,409749.85949622805,422356.24816170376,2048.7492974811403,212.5052411651486,4.0,48156918.0
|
| 174 |
+
137300.0,28119040000.0,8611.236113824,,,,,,1.3893232345581055,0.0004571671383466944,0.002285835691733472,0.06307753920555115,429558.5860363893,422589.7785783901,2147.7929301819463,222.77848010113456,4.0,48449305.0
|
| 175 |
+
137400.0,28139520000.0,8662.345645137,,,,,,1.3924411535263062,0.0004530031098858575,0.0022650155494292877,0.06351181119680405,422460.2319762043,422231.15325192525,2112.3011598810217,219.0971183959963,4.0,48742637.0
|
| 176 |
+
137500.0,28160000000.0,8711.367826809,1.3827831745147705,1.3876597881317139,1.0,0.984375,0.9920634627342224,1.3789842128753662,0.00044885102993065057,0.002244255149653253,0.06614717096090317,459923.17735982814,397246.44205873506,2299.6158867991408,238.5262214426492,4.0,49037287.0
|
| 177 |
+
137600.0,28180480000.0,8759.779678408,,,,,,1.3841514587402344,0.000444710796210366,0.00222355398105183,0.067816361784935,412830.95054209104,421612.5330703315,2064.1547527104553,214.1031623860561,4.0,49333382.0
|
| 178 |
+
137700.0,28200960000.0,8808.237783481,,,,,,1.3766591548919678,0.0004405823079049644,0.002202911539524822,0.06517782062292099,445153.9053354097,423044.34514115565,2225.7695266770484,230.86655386584647,4.0,49628159.0
|
| 179 |
+
137800.0,28221440000.0,8856.757795579,,,,,,1.3770908117294312,0.0004364654656164299,0.002182327328082149,0.064928337931633,427107.2779336005,422639.57784489146,2135.5363896680024,221.5071780921634,4.0,49922405.0
|
| 180 |
+
137900.0,28241920000.0,8907.763822187,,,,,,1.3753527402877808,0.0004323601713408474,0.002161800856704237,0.06698112934827805,426461.8140999576,422101.3182275405,2132.309070499788,221.1724264273299,4.0,50216591.0
|
| 181 |
+
138000.0,28262400000.0,8956.751848093,1.3816723823547363,1.3869441747665405,1.0,0.984375,0.9894179701805115,1.373389720916748,0.00042826632844118154,0.0021413316422059076,0.06543910503387451,460501.3655390105,398049.2118521571,2302.5068276950524,238.82608248130103,4.0,50510910.0
|
| 182 |
+
138100.0,28282880000.0,9005.26630603,,,,,,1.3698978424072266,0.0004241838416207344,0.002120919208103672,0.06469078361988068,418759.93426540226,421904.53222828015,2093.7996713270113,217.1780630523688,4.0,50804195.0
|
| 183 |
+
138200.0,28303360000.0,9053.741653799,,,,,,1.3694053888320923,0.00042011261689726303,0.0021005630844863152,0.06739329546689987,419960.06643144164,422148.47759101115,2099.8003321572082,217.8004778487712,4.0,51094629.0
|
| 184 |
+
138300.0,28323840000.0,9102.215179393,,,,,,1.3761810064315796,0.0004160525615777357,0.0020802628078886785,0.06740295886993408,428686.29815334105,422490.6349983244,2143.4314907667053,222.32609252208698,4.0,51385117.0
|
| 185 |
+
138400.0,28344320000.0,9153.17705601,,,,,,1.3930786848068237,0.00041200358423370756,0.0020600179211685376,0.06759592890739441,418478.8102444782,422504.84272196493,2092.394051222391,217.03226598501357,4.0,51676313.0
|
| 186 |
+
138500.0,28364800000.0,9202.078737443,1.3809938430786133,1.38594651222229,1.0,0.98046875,0.9867724776268005,1.3760945796966553,0.0004079655946772987,0.0020398279733864935,0.0682741180062294,460332.81361952424,398390.7577092793,2301.664068097621,238.7386677684728,4.0,51973984.0
|
| 187 |
+
138600.0,28385280000.0,9250.557628141,,,,,,1.3815264701843262,0.00040393850393775584,0.002019692519688779,0.06689687073230743,420657.45450841467,422658.78460583894,2103.2872725420734,218.16215856213387,4.0,52268312.0
|
| 188 |
+
138700.0,28405760000.0,9298.998589415,,,,,,1.3736791610717773,0.0003999222242385786,0.001999611121192893,0.06669310480356216,434122.9609331845,422458.0337862574,2170.6148046659223,225.14566477669283,4.0,52562265.0
|
| 189 |
+
138800.0,28426240000.0,9347.441430714,,,,,,1.3781116008758545,0.0003959166689751971,0.0019795833448759854,0.06792409718036652,395185.7176309839,422788.66736223723,1975.9285881549195,204.95195857649247,4.0,52855484.0
|
| 190 |
+
138900.0,28446720000.0,9398.120251403,,,,,,1.3661658763885498,0.0003919217526931833,0.0019596087634659166,0.06880632787942886,420292.7389105968,422772.90284808475,2101.463694552984,217.9730090742823,4.0,53149471.0
|
| 191 |
+
139000.0,28467200000.0,9447.105351149,1.3799388408660889,1.385151743888855,1.0,0.984375,0.9920634627342224,1.3693407773971558,0.00038793739106697924,0.001939686955334896,0.06777560710906982,396945.23555806116,400040.43801604013,1984.7261777903059,205.86448306615958,4.0,53442784.0
|
| 192 |
+
139100.0,28487680000.0,9495.562408632,,,,,,1.376404047012329,0.000383963500879129,0.0019198175043956447,0.06499908119440079,453525.413033332,422548.5940486209,2267.62706516666,235.20820090008849,4.0,53734875.0
|
| 193 |
+
139200.0,28508160000.0,9544.058755327,,,,,,1.372248649597168,0.0003799999999999999,0.0018999999999999996,0.06481923907995224,427840.98498809605,422648.15578951297,2139.2049249404804,221.88769462181358,4.0,54024150.0
|
| 194 |
+
139300.0,28528640000.0,9592.49598272,,,,,,1.3864567279815674,0.0003760468073679779,0.0018802340368398896,0.06545162200927734,419072.510439083,422306.18967735406,2095.362552195415,217.34017189421726,4.0,54313362.0
|
| 195 |
+
139400.0,28549120000.0,9643.284703469,,,,,,1.3739087581634521,0.0003721038429701231,0.0018605192148506155,0.06637082248926163,416678.6525509028,422822.18126498355,2083.393262754514,216.09866482337102,4.0,54604680.0
|
| 196 |
+
139500.0,28569600000.0,9692.306310562,1.3793425559997559,1.3840246200561523,1.0,0.984375,0.9894179701805115,1.383999228477478,0.00036817102782327546,0.0018408551391163772,0.06572740525007248,458466.5427356517,399723.1657280872,2292.3327136782586,237.77077885999478,4.0,54898951.0
|
| 197 |
+
139600.0,28590080000.0,9740.821016063,,,,,,1.3639776706695557,0.0003642482839555954,0.0018212414197779768,0.06387211382389069,396691.896524971,421629.67638974026,1983.459482624855,205.73309590134255,4.0,55195081.0
|
| 198 |
+
139700.0,28610560000.0,9789.327004407,,,,,,1.3720241785049438,0.0003603355343885257,0.0018016776719426285,0.0645444244146347,396507.50355774723,422146.2141821076,1982.537517788736,205.63746567460564,4.0,55490577.0
|
| 199 |
+
139800.0,28631040000.0,9837.841093488,,,,,,1.3739244937896729,0.00035643270311916755,0.0017821635155958375,0.06821734458208084,450814.38964305096,422221.63133681833,2254.071948215255,233.80220486127513,4.0,55786322.0
|
| 200 |
+
139900.0,28651520000.0,9888.792035861,,,,,,1.373113989830017,0.0003525397151030552,0.0017626985755152759,0.06440874934196472,424076.8158549656,422151.5439160297,2120.384079274828,219.93551416126198,4.0,56080929.0
|
| 201 |
+
140000.0,28672000000.0,9938.266067103,1.3781163692474365,1.3830840587615967,1.0,0.98046875,0.9867724776268005,1.3601830005645752,0.0003486564962373205,0.0017432824811866026,0.06423579901456833,460852.43821767316,398479.53857629304,2304.262191088366,239.00815645281486,4.0,56375058.0
|
| 202 |
+
140100.0,28692480000.0,9986.756930309,,,,,,1.3763967752456665,0.0003447829733442344,0.0017239148667211718,0.06659799814224243,426990.93330788275,417719.89211229375,2134.9546665394137,221.4468392240139,4.0,56667797.0
|
| 203 |
+
140200.0,28712960000.0,10035.292836232,,,,,,1.3563364744186401,0.00034091907415511826,0.0017045953707755914,0.06925845146179199,422029.34241530363,422353.23077827174,2110.1467120765183,218.873649643213,4.0,56959220.0
|
| 204 |
+
140300.0,28733440000.0,10083.7518419,,,,,,1.3855944871902466,0.0003370647272946117,0.0016853236364730586,0.06762852519750595,388424.877288005,421961.84968183836,1942.124386440025,201.44563886882943,4.0,57249912.0
|
| 205 |
+
140400.0,28753920000.0,10134.592894411,,,,,,1.3801385164260864,0.00033321986226528895,0.0016660993113264445,0.0687960833311081,445852.1468281712,422632.01082717656,2229.260734140856,231.2286771793071,4.0,57540468.0
|
| 206 |
+
140500.0,28774400000.0,10183.717982105,1.3773086071014404,1.3819838762283325,1.0,0.984375,0.9920634627342224,1.3801294565200806,0.00032938440943261564,0.0016469220471630782,0.06785013526678085,460133.32676250086,399327.9483526218,2300.666633812504,238.63520952027923,4.0,57832827.0
|
| 207 |
+
140600.0,28794880000.0,10232.241730828,,,,,,1.3729931116104126,0.0003255583000102332,0.001627791500051166,0.06592531502246857,386066.73171573586,420719.44287623087,1930.3336585786794,200.22265298628713,4.0,58132465.0
|
| 208 |
+
140700.0,28815360000.0,10280.85149183,,,,,,1.3715291023254395,0.00032174146604556586,0.0016087073302278293,0.0666159987449646,398031.3558422783,422067.1843601681,1990.1567792113915,206.42776880642973,4.0,58428326.0
|
| 209 |
+
140800.0,28835840000.0,10329.464401532,,,,,,1.3631234169006348,0.00031793384040573915,0.0015896692020286958,0.06820081919431686,425293.55341163283,421321.81814923225,2126.467767058164,220.56654087651737,4.0,58724250.0
|
| 210 |
+
140900.0,28856320000.0,10380.233871386,,,,,,1.3770787715911865,0.00031413535676380415,0.0015706767838190206,0.06755360215902328,424249.81995174673,421295.3126606155,2121.249099758734,220.02523787063492,4.0,59019862.0
|
| 211 |
+
141000.0,28876800000.0,10429.309139736,1.3767805099487305,1.381772756576538,1.0,0.984375,0.9894179701805115,1.3729511499404907,0.0003103459495852564,0.001551729747926282,0.06657492369413376,459936.96791607345,399884.4968362401,2299.684839580367,238.53337352681174,4.0,59314714.0
|
| 212 |
+
141100.0,28897280000.0,10477.790859123,,,,,,1.3656432628631592,0.0003065655541148443,0.0015328277705742215,0.06602069735527039,425838.77452681464,421153.3098119462,2129.193872634073,220.8493044745635,4.0,59609234.0
|
| 213 |
+
141200.0,28917760000.0,10526.28019158,,,,,,1.3726530075073242,0.00030279410636365785,0.0015139705318182892,0.07021636515855789,426766.7030009032,422434.910546489,2133.833515004516,221.3305484813647,4.0,59902110.0
|
| 214 |
+
141300.0,28938240000.0,10574.612472132,,,,,,1.3618357181549072,0.000299031543096492,0.00149515771548246,0.0666385143995285,389870.84202304116,422367.9443045162,1949.3542101152057,202.19554781355228,4.0,60192498.0
|
| 215 |
+
141400.0,28958720000.0,10625.405246013,,,,,,1.3736859560012817,0.00029527780181947576,0.0014763890090973787,0.0673718973994255,449858.68317662354,423740.52809383604,2249.2934158831176,233.3065545799524,4.0,60482599.0
|
| 216 |
+
141500.0,28979200000.0,10674.333211401,1.3751108646392822,1.3800486326217651,1.0,0.984375,0.9920634627342224,1.377469539642334,0.0002915328207679627,0.0014576641038398135,0.06799576431512833,459680.50046155695,399701.3818009987,2298.4025023077847,238.40036389420308,4.0,60775790.0
|
| 217 |
+
141600.0,28999680000.0,10722.852793666,,,,,,1.3761765956878662,0.00028779653889467166,0.0014389826944733583,0.06554694473743439,423709.28448324336,422434.4701283935,2118.546422416217,219.74490435146336,4.0,61071205.0
|
| 218 |
+
141700.0,29020160000.0,10771.412367592,,,,,,1.361438512802124,0.0002840688958580773,0.0014203444792903863,0.06707783788442612,425022.0969631718,422103.635083941,2125.110484815859,220.42575762373733,4.0,61368871.0
|
| 219 |
+
141800.0,29040640000.0,10819.969117067,,,,,,1.363095760345459,0.00028034983201104,0.0014017491600551999,0.07024137675762177,426697.5933873788,421756.6266817391,2133.487966936894,221.29470672389127,4.0,61665023.0
|
| 220 |
+
141900.0,29061120000.0,10870.924368617,,,,,,1.3637751340866089,0.0002766392883896691,0.0013831964419483455,0.0662517324090004,419583.4414212606,421780.38607968984,2097.917207106303,217.6051518791278,4.0,61960694.0
|
| 221 |
+
142000.0,29081600000.0,10919.835185241,1.374921202659607,1.3799970149993896,1.0,0.98828125,0.9920634627342224,1.362099051475525,0.0002729372067024171,0.0013646860335120856,0.06942009925842285,458433.26660472347,398428.17136269173,2292.1663330236174,237.75352113051895,4.0,62256117.0
|
| 222 |
+
142100.0,29102080000.0,10968.312335724,,,,,,1.3604552745819092,0.0002692435293193939,0.0013462176465969694,0.06925356388092041,425764.4781842369,422594.8139025366,2128.8223909211847,220.8107727659338,4.0,62550345.0
|
| 223 |
+
142200.0,29122560000.0,11016.855356431,,,,,,1.3691219091415405,0.000265558199261901,0.0013277909963095049,0.07012239098548889,423367.84499197366,422473.09953369386,2116.8392249598683,219.5678263616752,4.0,62844840.0
|
| 224 |
+
142300.0,29143040000.0,11065.3132597,,,,,,1.359512209892273,0.00026188116019217555,0.0013094058009608777,0.06822741031646729,427298.279949659,421901.33894184465,2136.491399748295,221.6062359162111,4.0,63137044.0
|
| 225 |
+
142400.0,29163520000.0,11116.299400056,,,,,,1.3688546419143677,0.00025821235640334213,0.0012910617820167108,0.0681498572230339,426419.6851519436,422642.4579159547,2132.098425759718,221.15057743324172,4.0,63427728.0
|
| 226 |
+
142500.0,29184000000.0,11165.268487612,1.3735570907592773,1.378925085067749,1.0,0.984375,0.9894179701805115,1.3887991905212402,0.00025455173280956666,0.0012727586640478333,0.06890051066875458,459650.98322715977,398197.9155130699,2298.254916135799,238.38505561070102,4.0,63720023.0
|
| 227 |
+
142600.0,29204480000.0,11213.817207669,,,,,,1.3752728700637817,0.00025089923493640536,0.0012544961746820268,0.06816760450601578,425833.70804341056,422076.1455732548,2129.168540217053,220.84667688543152,4.0,64014883.0
|
| 228 |
+
142700.0,29224960000.0,11262.324522533,,,,,,1.360909342765808,0.0002472548089113474,0.0012362740445567369,0.07022068649530411,427469.66843229404,421852.21069724776,2137.34834216147,221.6951217327433,4.0,64312636.0
|
| 229 |
+
142800.0,29245440000.0,11310.839647446,,,,,,1.3612401485443115,0.00024361840145454414,0.0012180920072727207,0.07003728300333023,433767.1673626856,422210.370794459,2168.835836813428,224.9611424473946,4.0,64609009.0
|
| 230 |
+
142900.0,29265920000.0,11361.877476409,,,,,,1.3782387971878052,0.0002399899598697201,0.0011999497993486004,0.07135502994060516,425019.36311922054,422142.3284780519,2125.0968155961027,220.42433979245635,4.0,64904479.0
|
| 231 |
+
143000.0,29286400000.0,11410.744168527,1.3737751245498657,1.3786695003509521,1.0,0.984375,0.9920634627342224,1.3609247207641602,0.00023636943203526504,0.0011818471601763253,0.0703650489449501,458901.0434068133,397792.18893477914,2294.5052170340664,237.996120413559,4.0,65201370.0
|
| 232 |
+
143100.0,29306880000.0,11459.116811406,,,,,,1.353843331336975,0.00023275676639549674,0.0011637838319774837,0.06797808408737183,388014.839173626,422976.23372495454,1940.07419586813,201.23298413237595,4.0,65496968.0
|
| 233 |
+
143200.0,29327360000.0,11507.57412527,,,,,,1.372068166732788,0.00022915191195209696,0.0011457595597604848,0.06983014196157455,425384.9585902665,423385.7761809895,2126.9247929513326,220.6139456018129,4.0,65790587.0
|
| 234 |
+
143300.0,29347840000.0,11555.951135584,,,,,,1.3603662252426147,0.0002255548182557106,0.0011277740912785529,0.06853756308555603,429768.988254059,422647.41963224317,2148.844941270295,222.88759929415286,4.0,66082093.0
|
| 235 |
+
143400.0,29368320000.0,11606.823352212,,,,,,1.3618884086608887,0.0002219654353977091,0.0011098271769885454,0.07018542289733887,417759.76889295253,423348.33796735725,2088.7988444647626,216.65935540976272,4.0,66372348.0
|
| 236 |
+
143500.0,29388800000.0,11655.778434447,1.372316598892212,1.3774847984313965,1.0,0.98828125,0.9947089552879333,1.3733940124511719,0.00021838371400211115,0.0010919185700105558,0.06988494843244553,459517.46511331823,399079.57481524633,2297.587325566591,238.31581019590894,4.0,66663761.0
|
| 237 |
+
143600.0,29409280000.0,11704.290567201,,,,,,1.365092158317566,0.00021480960521765772,0.0010740480260882886,0.06933466345071793,428141.6612421685,422202.9643995307,2140.7083062108427,222.04363190502062,4.0,66956702.0
|
| 238 |
+
143700.0,29429760000.0,11752.775480815,,,,,,1.3644250631332397,0.00021124306071003805,0.0010562153035501903,0.06911956518888474,418610.7568676566,422168.64188050973,2093.053784338283,217.10069639036848,4.0,67251804.0
|
| 239 |
+
143800.0,29450240000.0,11801.356006248,,,,,,1.360315203666687,0.0002076840326542643,0.0010384201632713213,0.069887176156044,417854.4684014002,422406.3309779141,2089.272342007001,216.7084686465693,4.0,67548317.0
|
| 240 |
+
143900.0,29470720000.0,11852.172283033,,,,,,1.3880398273468018,0.00020413247372718806,0.0010206623686359402,0.06860524415969849,419721.417779906,421574.94226231996,2098.60708889953,217.67670943720745,4.0,67844798.0
|
| 241 |
+
144000.0,29491200000.0,11901.111354422,1.3720519542694092,1.3768527507781982,1.0,0.984375,0.9920634627342224,1.3743696212768555,0.00020058833710015988,0.0010029416855007994,0.07067679613828659,459282.5829521989,399514.85188701947,2296.4129147609947,238.193995168674,4.0,68141202.0
|
| 242 |
+
144100.0,29511680000.0,11949.681941637,,,,,,1.3741226196289062,0.00019705157643182473,0.0009852578821591235,0.0730971246957779,423535.46788945585,422340.2666957,2117.6773394472793,219.65475926336808,4.0,68437229.0
|
| 243 |
+
144200.0,29532160000.0,11998.163337094,,,,,,1.3532936573028564,0.00019352214586105263,0.0009676107293052631,0.07123211026191711,420491.6898167298,421661.6406899847,2102.458449083649,218.07618936661916,4.0,68732849.0
|
| 244 |
+
144300.0,29552640000.0,12046.747596185,,,,,,1.3681901693344116,0.00018999999999999996,0.0009499999999999998,0.07202909141778946,425128.1131096849,422437.05240418745,2125.6405655484245,220.48073991661687,4.0,69027205.0
|
| 245 |
+
144400.0,29573120000.0,12097.756725633,,,,,,1.37270987033844,0.0001864850939273002,0.000932425469636501,0.07040379196405411,389569.37480668776,421541.85126357176,1947.8468740334388,202.0392003200026,4.0,69318494.0
|
| 246 |
+
144500.0,29593600000.0,12146.751189943,1.370902180671692,1.375962495803833,1.0,0.984375,0.9920634627342224,1.3772258758544922,0.0001829773831813786,0.0009148869159068929,0.06703721731901169,458990.0534655349,398015.3659195334,2294.9502673276743,238.04228297727045,4.0,69610772.0
|
| 247 |
+
144600.0,29614080000.0,12195.247138189,,,,,,1.3822859525680542,0.00017947682375389092,0.0008973841187694545,0.07282465696334839,425110.4400792622,421862.27741899155,2125.552200396311,220.47157429640967,4.0,69903776.0
|
| 248 |
+
144700.0,29634560000.0,12243.727064142,,,,,,1.3734065294265747,0.0001759833720832814,0.0008799168604164069,0.06828213483095169,423765.0948101454,422309.11711167387,2118.825474050727,219.7738488079481,4.0,70197992.0
|
| 249 |
+
144800.0,29655040000.0,12292.286020485,,,,,,1.369023084640503,0.0001724969850484583,0.0008624849252422915,0.07330778241157532,424169.3743429399,422449.37629841774,2120.8468717146993,219.9835170180123,4.0,70492984.0
|
| 250 |
+
144900.0,29675520000.0,12343.367983999,,,,,,1.3593250513076782,0.00016901761996258315,0.0008450880998129158,0.07197733223438263,425825.47526500275,421762.87224686664,2129.1273763250138,220.84240718644207,4.0,70788036.0
|
| 251 |
+
145000.0,29696000000.0,12392.800783844,1.3701921701431274,1.3753210306167603,1.0,0.98828125,0.9920634627342224,1.3691556453704834,0.00016554523456697388,0.0008277261728348694,0.06961482763290405,458417.3642775416,397447.4514367222,2292.086821387708,237.7452738357498,4.0,71082758.0
|
| 252 |
+
145100.0,29716480000.0,12441.29843125,,,,,,1.3654825687408447,0.00016207978702511587,0.0008103989351255793,0.07121055573225021,432327.3932070229,418091.44377814134,2161.6369660351147,224.2144440725651,4.0,71377986.0
|
| 253 |
+
145200.0,29736960000.0,12489.755958784,,,,,,1.3692824840545654,0.00015862123591678083,0.0007931061795839041,0.0688687264919281,414825.7931853117,422295.29001283506,2074.1289659265585,215.13773142167534,4.0,71671739.0
|
| 254 |
+
145300.0,29757440000.0,12538.148039586,,,,,,1.3645126819610596,0.0001551695402322512,0.0007758477011612559,0.07037851214408875,420833.039809443,422645.08640495985,2104.165199047215,218.25322094049798,4.0,71965287.0
|
| 255 |
+
145400.0,29777920000.0,12588.831937676,,,,,,1.3459045886993408,0.00015172465936664684,0.0007586232968332341,0.06827877461910248,424642.4296652814,423215.794573135,2123.212148326407,220.2288538571322,4.0,72255898.0
|
| 256 |
+
145500.0,29798400000.0,12637.632272489,1.369181752204895,1.374097466468811,1.0,0.98828125,0.9947089552879333,1.3659015893936157,0.00014828655311435138,0.0007414327655717568,0.07286831736564636,460046.3366054534,400554.61017782136,2300.231683027267,238.59009452176505,4.0,72546017.0
|
| 257 |
+
145600.0,29818880000.0,12685.983526403,,,,,,1.3735952377319336,0.00014485518166353753,0.0007242759083176876,0.07063537836074829,419666.2573545972,423545.168194198,2098.331286772986,217.64810203390672,4.0,72837379.0
|
| 258 |
+
145700.0,29839360000.0,12734.346379105,,,,,,1.3746610879898071,0.00014143050559078937,0.0007071525279539468,0.07027062773704529,436243.6742662011,423573.87910551246,2181.2183713310055,226.24551310569265,4.0,73131501.0
|
| 259 |
+
145800.0,29859840000.0,12782.768075827,,,,,,1.369174599647522,0.00013801248585581635,0.0006900624292790816,0.06909134984016418,420101.167000044,423472.31504750176,2100.50583500022,217.87365569048237,4.0,73425922.0
|
| 260 |
+
145900.0,29880320000.0,12833.478226603,,,,,,1.3522909879684448,0.00013460108379626193,0.0006730054189813096,0.07064539939165115,420337.368178702,422957.1293051781,2101.68684089351,217.9961547890688,4.0,73719800.0
|
| 261 |
+
146000.0,29900800000.0,12882.369238296,1.3685128688812256,1.3734816312789917,1.0,0.98828125,0.9894179701805115,1.3614577054977417,0.00013119626112260076,0.0006559813056130039,0.07189755886793137,461848.029442364,400361.4089491757,2309.24014721182,239.5244918423253,4.0,74013396.0
|
| 262 |
+
146100.0,29921280000.0,12930.91234572,,,,,,1.3677977323532104,0.00012779797991312525,0.0006389898995656262,0.07073115557432175,425139.6855328169,422739.09925344447,2125.6984276640846,220.48674162842113,4.0,74307005.0
|
| 263 |
+
146200.0,29941760000.0,12979.411345172,,,,,,1.3680423498153687,0.00012440620260901645,0.0006220310130450823,0.07144339382648468,459743.97535453807,421899.06989357964,2298.7198767726904,238.43328336233293,4.0,74601218.0
|
| 264 |
+
146300.0,29962240000.0,13027.87756314,,,,,,1.3580578565597534,0.00012102089200950239,0.0006051044600475119,0.0744863748550415,428588.9781442904,422282.86300561775,2142.944890721452,222.27562023633942,4.0,74894111.0
|
| 265 |
+
146400.0,29982720000.0,13078.619898618,,,,,,1.3546972274780273,0.00011764201126709671,0.0005882100563354835,0.07176666706800461,406950.45361819136,422569.378635431,2034.7522680909567,211.05340803465594,4.0,75184499.0
|
| 266 |
+
146500.0,30003200000.0,13127.505667411,1.3679112195968628,1.3724594116210938,1.0,0.98828125,0.9920634627342224,1.3589493036270142,0.00011426952388291998,0.0005713476194145998,0.07135940343141556,461592.4033886192,400108.9306954306,2307.962016943096,239.391918578564,4.0,75474478.0
|
| 267 |
+
146600.0,30023680000.0,13175.952114783,,,,,,1.3707417249679565,0.0001109033937020989,0.0005545169685104945,0.07150989770889282,420289.44864845823,422785.7124667305,2101.4472432422913,217.9713026723567,4.0,75764301.0
|
| 268 |
+
146700.0,30044160000.0,13224.491620784,,,,,,1.3810943365097046,0.00010754358490924532,0.0005377179245462265,0.07114587724208832,426819.7163391211,422741.6873353574,2134.0985816956054,221.3580423583286,4.0,76055862.0
|
| 269 |
+
146800.0,30064640000.0,13273.022800222,,,,,,1.3405905961990356,0.00010419006202400876,0.0005209503101200437,0.06965531408786774,426547.5796344077,421931.88747357304,2132.7378981720385,221.21690630977423,4.0,76352348.0
|
| 270 |
+
146900.0,30085120000.0,13323.786255018,,,,,,1.3676114082336426,0.00010084278989670652,0.0005042139494835326,0.07448647171258926,386930.5047702273,422004.36493393715,1934.6525238511365,200.67062458896766,4.0,76648534.0
|
| 271 |
+
147000.0,30105600000.0,13372.603608359,1.3672749996185303,1.3719267845153809,1.0,0.98828125,0.9947089552879333,1.3501046895980835,9.750173370402385e-05,0.0004875086685201192,0.07134093344211578,458923.1087976604,399923.3925311834,2294.615543988302,238.00756400797323,4.0,76943690.0
|
| 272 |
+
147100.0,30126080000.0,13421.046516779,,,,,,1.3633111715316772,9.416685894478808e-05,0.0004708342947239404,0.0690772756934166,421599.7447805162,423407.5197590366,2107.998723902581,218.6508509115753,4.0,77238420.0
|
| 273 |
+
147200.0,30146560000.0,13469.510128495,,,,,,1.3556246757507324,9.083813143581147e-05,0.0004541906571790573,0.07222810387611389,427078.61050730763,422772.7363864149,2135.393052536538,221.49231053773534,4.0,77533090.0
|
| 274 |
+
147300.0,30167040000.0,13517.955594931,,,,,,1.3532071113586426,8.751551730780325e-05,0.0004375775865390162,0.07131434977054596,397014.58436554833,422591.3045475195,1985.0729218277415,205.90044887485487,4.0,77826338.0
|
| 275 |
+
147400.0,30187520000.0,13568.689040853,,,,,,1.3508177995681763,8.419898300134956e-05,0.0004209949150067478,0.07169218361377716,422036.80699947727,422749.7076779166,2110.1840349973863,218.87752093986694,4.0,78118816.0
|
| 276 |
+
147500.0,30208000000.0,13617.538961638,1.3664233684539795,1.3713349103927612,1.0,0.98828125,0.9947089552879333,1.3627136945724487,8.08884952629576e-05,0.000404442476314788,0.07209809124469757,398021.2121436779,399625.069370253,1990.1060607183897,206.42250806242353,4.0,78409909.0
|
| 277 |
+
147600.0,30228480000.0,13666.01562424,,,,,,1.3590145111083984,7.758402114116653e-05,0.00038792010570583264,0.07203567773103714,435343.6119807069,423719.12024743966,2176.7180599035346,225.77872111392054,4.0,78699872.0
|
| 278 |
+
147700.0,30248960000.0,13714.50671632,,,,,,1.3615138530731201,7.428552798272048e-05,0.0003714276399136024,0.07101307809352875,439988.7001436249,422478.60167705413,2199.9435007181246,228.18776545504093,4.0,78991294.0
|
| 279 |
+
147800.0,30269440000.0,13763.025004457,,,,,,1.3656411170959473,7.099298342880416e-05,0.00035496491714402076,0.0713404193520546,408680.19517839333,422351.8352789732,2043.4009758919667,211.95048984904884,4.0,79284669.0
|
| 280 |
+
147900.0,30289920000.0,13813.781147712,,,,,,1.3467583656311035,6.770635541133844e-05,0.0003385317770566922,0.07048042863607407,429649.2550855554,422114.7302125543,2148.2462754277767,222.82550305358401,4.0,79581884.0
|
| 281 |
+
148000.0,30310400000.0,13862.77697976,1.3658490180969238,1.3706481456756592,1.0,0.98828125,0.9947089552879333,1.3575608730316162,6.442561214933782e-05,0.00032212806074668907,0.0703752338886261,459295.3527939165,399983.17506156414,2296.4767639695824,238.20061788795246,4.0,79878144.0
|
| 282 |
+
148100.0,30330880000.0,13911.367607068,,,,,,1.3586753606796265,6.115072214532315e-05,0.00030575361072661573,0.07063267379999161,421082.03671922145,421849.04099133925,2105.4101835961073,218.3823561851736,4.0,80174223.0
|
| 283 |
+
148200.0,30351360000.0,13959.942673276,,,,,,1.3465564250946045,5.788165418179506e-05,0.0002894082709089753,0.07037075608968735,422420.75945831375,421487.05307281244,2112.1037972915688,219.07664708468442,4.0,80470687.0
|
| 284 |
+
148300.0,30371840000.0,14008.558590664,,,,,,1.3628695011138916,5.461837731776107e-05,0.00027309188658880535,0.0717124193906784,420215.63693483867,421621.49775153777,2101.0781846741934,217.93302230290683,4.0,80766401.0
|
| 285 |
+
148400.0,30392320000.0,14059.39652443,,,,,,1.3491278886795044,5.1360860885319516e-05,0.00025680430442659755,0.06974209100008011,396540.8171018878,421267.8580863033,1982.7040855094388,205.65474280739187,4.0,81060890.0
|
| 286 |
+
148500.0,30412800000.0,14108.327184185,1.364952802658081,1.3701776266098022,1.0,0.98828125,0.9947089552879333,1.3629809617996216,4.810907448629696e-05,0.00024054537243148482,0.07330505549907684,460764.18735383096,399356.8414629693,2303.8209367691547,238.9623876241766,4.0,81353633.0
|
| 287 |
+
148600.0,30433280000.0,14156.757601731,,,,,,1.357502818107605,4.4862987988937466e-05,0.0002243149399446873,0.0737026035785675,423890.5649334723,422401.9648223719,2119.4528246673617,219.83892035879475,4.0,81645120.0
|
| 288 |
+
148700.0,30453760000.0,14205.184793458,,,,,,1.3642513751983643,4.1622571524646845e-05,0.00020811285762323422,0.07009182870388031,420098.0851891067,422882.5338377033,2100.4904259455334,217.87205739591,4.0,81936657.0
|
| 289 |
+
148800.0,30474240000.0,14253.702038704,,,,,,1.3649667501449585,3.838779548478472e-05,0.00019193897742392362,0.07097198814153671,421025.899024575,422909.3810103961,2105.129495122875,218.35324194861482,4.0,82230138.0
|
| 290 |
+
148900.0,30494720000.0,14304.743696585,,,,,,1.3684968948364258,3.515863051750881e-05,0.00017579315258754402,0.07150883227586746,425875.0878528989,422125.13514802756,2129.3754392644946,220.86813735989148,4.0,82526406.0
|
| 291 |
+
149000.0,30515200000.0,14353.639119323,1.3646478652954102,1.3695862293243408,1.0,0.9921875,0.9947089552879333,1.353413462638855,3.193504752466747e-05,0.00015967523762333734,0.07039487361907959,458037.99302113283,397756.62039101275,2290.189965105664,237.54852360273355,4.0,82823561.0
|
| 292 |
+
149100.0,30535680000.0,14402.155800725,,,,,,1.3617790937423706,2.8717017658740084e-05,0.00014358508829370042,0.07006867229938507,416577.2122285499,422732.2609611963,2082.8860611427494,216.0460556530055,4.0,83119532.0
|
| 293 |
+
149200.0,30556160000.0,14450.553062826,,,,,,1.3672646284103394,2.550451231982599e-05,0.00012752256159912994,0.06906483322381973,431405.6998217111,422130.72365644533,2157.0284991085555,223.7364337192075,4.0,83415583.0
|
| 294 |
+
149300.0,30576640000.0,14499.01707315,,,,,,1.3549538850784302,2.2297503152678234e-05,0.00011148751576339117,0.07067563384771347,414968.47577874816,423171.2253671829,2074.8423788937407,215.21172973607514,4.0,83712124.0
|
| 295 |
+
149400.0,30597120000.0,14549.877216326,,,,,,1.3669202327728271,1.90959620437835e-05,9.54798102189175e-05,0.06957219541072845,435577.389963896,422589.53949703183,2177.88694981948,225.89996349032492,4.0,84007370.0
|
| 296 |
+
149500.0,30617600000.0,14598.677884978,1.3643076419830322,1.3690693378448486,1.0,0.98828125,0.9947089552879333,1.3553212881088257,1.5899861118488014e-05,7.949930559244006e-05,0.06893835961818695,459801.06852372753,399176.30721965246,2299.0053426186378,238.46289312889246,4.0,84302161.0
|
| 297 |
+
149600.0,30638080000.0,14646.978566302,,,,,,1.3657026290893555,1.2709172738163532e-05,6.354586369081767e-05,0.07446911931037903,419457.2305162098,423545.8009744014,2097.286152581049,217.5396961426732,4.0,84594857.0
|
| 298 |
+
149700.0,30658560000.0,14695.281415405,,,,,,1.3629206418991089,9.523869497422066e-06,4.761934748711033e-05,0.07178570330142975,429817.5884297628,424016.85240416304,2149.087942148814,222.91280440849093,4.0,84886810.0
|
| 299 |
+
149800.0,30679040000.0,14743.693143197,,,,,,1.3721765279769897,6.343924221366659e-06,3.1719621106833295e-05,0.06954678893089294,450475.3674627398,423998.41566528816,2252.376837313699,233.62638054183319,4.0,85180285.0
|
| 300 |
+
149900.0,30699520000.0,14794.868072576,,,,,,1.3562623262405396,3.1693099628879563e-06,1.584654981443978e-05,0.07242804765701294,419916.5436156801,423045.75355431193,2099.5827180784004,217.77790596437575,4.0,85475007.0
|
| 301 |
+
150000.0,30720000000.0,,1.3638588190078735,1.368669033050537,,,,,,,,,,,,,
|
training-curves/91m/anneal-T300000.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
training-curves/91m/trunk.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
training-curves/replay_to_wandb.py
ADDED
|
@@ -0,0 +1,154 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""Replay the published training curves into your own Weights & Biases project.
|
| 3 |
+
|
| 4 |
+
The CSVs next to this script are the full W&B history of every run in this repo. This
|
| 5 |
+
turns them back into real W&B runs in *your* account, so you can put your own training
|
| 6 |
+
next to ours on the same axes instead of eyeballing a PNG.
|
| 7 |
+
|
| 8 |
+
pip install wandb
|
| 9 |
+
python replay_to_wandb.py --project my-project
|
| 10 |
+
|
| 11 |
+
# just the runs you care about ("91m" means every 91M run)
|
| 12 |
+
python replay_to_wandb.py --project my-project --runs 91m/trunk 350m/anneal-T300000
|
| 13 |
+
python replay_to_wandb.py --project my-project --runs 91m
|
| 14 |
+
|
| 15 |
+
# log locally first, upload when you feel like it
|
| 16 |
+
WANDB_MODE=offline python replay_to_wandb.py --project my-project
|
| 17 |
+
wandb sync --sync-all
|
| 18 |
+
|
| 19 |
+
Each replayed run keeps its original step numbers, so an anneal branch starts at 0.8·T
|
| 20 |
+
rather than at 0 — it is a continuation of its trunk, not a fresh run. `tokens` is logged
|
| 21 |
+
as a metric too: pick it as the x-axis in the W&B UI to compare runs by data seen rather
|
| 22 |
+
than by step.
|
| 23 |
+
|
| 24 |
+
If you cloned the whole repo (not just `training-curves/`), each run's `config.json` is
|
| 25 |
+
found automatically and becomes the run's W&B config, so the config panel and W&B's
|
| 26 |
+
run-comparison filters work the way they would on a run you trained yourself.
|
| 27 |
+
|
| 28 |
+
No dependency but `wandb` — this is deliberately standalone, so it keeps working after
|
| 29 |
+
the rest of this repo has gone stale.
|
| 30 |
+
"""
|
| 31 |
+
|
| 32 |
+
from __future__ import annotations
|
| 33 |
+
|
| 34 |
+
import argparse
|
| 35 |
+
import csv
|
| 36 |
+
import json
|
| 37 |
+
import sys
|
| 38 |
+
from pathlib import Path
|
| 39 |
+
|
| 40 |
+
HERE = Path(__file__).resolve().parent
|
| 41 |
+
STEP_COLUMN = "step"
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
def discover(curves_dir: Path) -> list[tuple[str, Path]]:
|
| 45 |
+
"""Every published history, as (run key, csv path). Key is "<model>/<branch>"."""
|
| 46 |
+
found = []
|
| 47 |
+
for path in sorted(curves_dir.glob("*/*.csv")):
|
| 48 |
+
found.append((f"{path.parent.name}/{path.stem}", path))
|
| 49 |
+
return found
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
def selected(runs: list[tuple[str, Path]], wanted: list[str] | None) -> list[tuple[str, Path]]:
|
| 53 |
+
if not wanted:
|
| 54 |
+
return runs
|
| 55 |
+
keep = [(key, path) for key, path in runs if key in wanted or key.split("/")[0] in wanted]
|
| 56 |
+
unknown = set(wanted) - {k for k, _ in runs} - {k.split("/")[0] for k, _ in runs}
|
| 57 |
+
if unknown:
|
| 58 |
+
raise SystemExit(f"unknown run(s): {', '.join(sorted(unknown))}")
|
| 59 |
+
return keep
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
def config_for(repo_root: Path, key: str) -> dict:
|
| 63 |
+
"""The run's own config.json, if this is a full checkout of the repo.
|
| 64 |
+
|
| 65 |
+
`91m/trunk` lives at `91m/trunk/`, `91m/anneal-T018750` at `91m/anneal/T018750/` —
|
| 66 |
+
the CSV name flattens the checkpoint tree's two levels into one.
|
| 67 |
+
"""
|
| 68 |
+
model, branch = key.split("/", 1)
|
| 69 |
+
if branch == "trunk":
|
| 70 |
+
path = repo_root / model / "trunk" / "config.json"
|
| 71 |
+
else:
|
| 72 |
+
path = repo_root / model / "anneal" / branch.removeprefix("anneal-") / "config.json"
|
| 73 |
+
if not path.is_file():
|
| 74 |
+
return {}
|
| 75 |
+
raw = json.loads(path.read_text(encoding="utf-8"))
|
| 76 |
+
# Flatten the config sections into one namespace, as the training loop logged it.
|
| 77 |
+
flat: dict = {}
|
| 78 |
+
for section in ("model_config", "train_config", "hardware_config", "tokenizers_config"):
|
| 79 |
+
flat.update(raw.get(section, {}))
|
| 80 |
+
return flat
|
| 81 |
+
|
| 82 |
+
|
| 83 |
+
def rows_of(path: Path) -> list[dict]:
|
| 84 |
+
"""History rows, with unlogged cells dropped rather than sent as empty strings.
|
| 85 |
+
|
| 86 |
+
Two cadences share one table (evals every 500 steps, the rest every 100), so most
|
| 87 |
+
rows carry only the log-cadence metrics. Logging the blanks would put nulls in W&B
|
| 88 |
+
where the run simply did not measure anything.
|
| 89 |
+
"""
|
| 90 |
+
out = []
|
| 91 |
+
with path.open(newline="", encoding="utf-8") as handle:
|
| 92 |
+
for raw in csv.DictReader(handle):
|
| 93 |
+
row = {key: float(value) for key, value in raw.items() if value not in ("", None)}
|
| 94 |
+
if STEP_COLUMN in row:
|
| 95 |
+
out.append(row)
|
| 96 |
+
return out
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
def main(argv: list[str] | None = None) -> int:
|
| 100 |
+
parser = argparse.ArgumentParser(
|
| 101 |
+
description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter
|
| 102 |
+
)
|
| 103 |
+
parser.add_argument("--project", required=True, help="W&B project to log into.")
|
| 104 |
+
parser.add_argument("--entity", help="W&B entity (default: your default entity).")
|
| 105 |
+
parser.add_argument(
|
| 106 |
+
"--curves-dir", type=Path, default=HERE, help="Where the CSVs are (default: here)."
|
| 107 |
+
)
|
| 108 |
+
parser.add_argument(
|
| 109 |
+
"--runs",
|
| 110 |
+
nargs="+",
|
| 111 |
+
metavar="MODEL[/BRANCH]",
|
| 112 |
+
help='Limit to these runs, e.g. "91m/trunk" or "91m" for all 91M runs.',
|
| 113 |
+
)
|
| 114 |
+
parser.add_argument(
|
| 115 |
+
"--name-prefix",
|
| 116 |
+
default="",
|
| 117 |
+
help='Prepended to each run name, e.g. "ref-" -> "ref-91m-trunk".',
|
| 118 |
+
)
|
| 119 |
+
parser.add_argument(
|
| 120 |
+
"--dry-run", action="store_true", help="List what would be logged, log nothing."
|
| 121 |
+
)
|
| 122 |
+
args = parser.parse_args(argv)
|
| 123 |
+
|
| 124 |
+
runs = selected(discover(args.curves_dir), args.runs)
|
| 125 |
+
if not runs:
|
| 126 |
+
raise SystemExit(f"no curve CSVs under {args.curves_dir}")
|
| 127 |
+
|
| 128 |
+
if not args.dry_run:
|
| 129 |
+
import wandb
|
| 130 |
+
|
| 131 |
+
repo_root = args.curves_dir.parent
|
| 132 |
+
for key, path in runs:
|
| 133 |
+
rows = rows_of(path)
|
| 134 |
+
name = args.name_prefix + key.replace("/", "-")
|
| 135 |
+
print(f" {key:26} {len(rows):>6,} steps -> {name}", flush=True)
|
| 136 |
+
if args.dry_run:
|
| 137 |
+
continue
|
| 138 |
+
with wandb.init(
|
| 139 |
+
entity=args.entity,
|
| 140 |
+
project=args.project,
|
| 141 |
+
name=name,
|
| 142 |
+
config=config_for(repo_root, key),
|
| 143 |
+
tags=["chess-autocomplete-v1", "replay"],
|
| 144 |
+
) as run:
|
| 145 |
+
for row in rows:
|
| 146 |
+
step = int(row.pop(STEP_COLUMN))
|
| 147 |
+
run.log(row, step=step)
|
| 148 |
+
|
| 149 |
+
print(f"\n{len(runs)} run(s) {'listed' if args.dry_run else 'logged'}")
|
| 150 |
+
return 0
|
| 151 |
+
|
| 152 |
+
|
| 153 |
+
if __name__ == "__main__":
|
| 154 |
+
sys.exit(main())
|