Dataset
vtok101-attribution-baselines
by Lamsheeper Data Attribution lamsheeper-data-attribution/vtok101-attribution-baselines
Data-attribution scores over lamsheeper-data-attribution/Qwen3.5-4B-d0-vtok101-lora-seeds: 3 function counts x 7 document counts x 4 seeds, scored by 12 methods.
Dataset Card
By Lamsheeper Data Attribution, published under mit, revision 82107b33679b.
Data-attribution scores over lamsheeper-data-attribution/Qwen3.5-4B-d0-vtok101-lora-seeds: 3 function counts x 7 document counts x 4 seeds, scored by 12 methods.
Each training document defines one synthetic constant function, and each query asks for one function's value. The ground truth for a query is the set of documents describing its function, so a method is measured by how far up its ranking those documents come.
Every document in the pool describes some function, which is the easy case: real
attribution never has that luxury. The arm that removes it, one same-template hard
negative per document, is in
lamsheeper-data-attribution/vtok101-distr-attribution-baselines under the same
run/group paths.
Layout
{run}/{group}/scores.npz the primary method's [query, train] matrix
{run}/{group}/scores.{method}.npz the group's other methods
{run}/{group}/metrics.json AUC and Recall@R, overall and per function
{run}/{group}/config.json every argument the ranker was given
run is f{functions}_{docs}d_sd{seed}, matching the adapter repo's
subfolders. group is one of ekfac_margin, trak, logra_margin, tracin_margin, source_margin, bm25, embed.
Every method differentiates the margin on both sides. That is TRAK as published,
and an ablation for the others -- the influence-function derivation fixes the
training-side gradient to the training objective -- so those groups carry a
_margin suffix and the cross-entropy grid stays at {run}/{group}/. The
margin's advantage on this corpus is carried substantially by answer-token
identity rather than by function attribution; see filter/story/WHY_MARGIN_LATE_LAYERS.md
in the source repository before quoting these numbers.
The v2 rerun, under v2/
Everything above describes the original grid, which is at the top level and is
frozen. The active sweep is v2, under the v2/ prefix, and it is a rerun
rather than an extension: the numbers at the top level were produced before a
padding bug was found in Qwen's linear-attention layers, which let pad tokens
into per-sample gradients and moved the unprojected methods by +0.37 to +0.42
AUC when fixed. filter/story/padding_bug.md in the source repository is the
account of it, and filter/baselines/SWEEP_V2.md is the plan for the rerun.
Do not mix the two prefixes in one comparison.
v2/{run}/{group}/scores.{method}.{arm}.npz
v2/{run}/{group}/metrics.json keyed "method@arm"
v2/{run}/{group}/config.json every argument, plus provenance
Three things differ beyond the fix:
- Arms. Each job scores several training-side objectives in one pass,
sharing the query gradients and the curvature:
ce(cross-entropy),margin, andmargin_docw(the margin scaled per document by1 - mean_t p_t, TRAK's residual). The measurement side is always the margin. So a v2 file names both its method and its arm, where a v1 file named only its method and put the training loss in the directory suffix. - Groups. TRAK and LoGra are merged into
sketch, since they differ only in what is done with the same projected gradients and the arms made that pass the expensive half of both.{run}/logra_margin/scores.npzunder v1 isv2/{run}/sketch/scores.logra.margin.npzunder v2. - Conventions are pinned, not defaulted. Padding is trimmed dynamically at
collate time on every path, the curvature is fitted from cross-entropy, every
loss is oriented so that helpful is positive, and queries are capped at four
per function. v1 left these to the ranker's defaults, which is how a re-scored
cell could differ from its neighbours without anything recording it. Every v2
file now carries
convention,orientation,git_commitandgit_dirty, in the npz and inconfig.json.
The orientation matters for anyone reading v1 too: under v1 the margin was a
utility while cross-entropy was a loss, so a margin/cross-entropy pairing came
out inverted and consumers negated it by filename. Under v2 every kind is a
loss and nothing needs negating. A file with no convention field is v1 by
construction.
The v2 grid is a subset: documents per function in {1, 5, 10, 30, 50}, seeds 1001-1003, function counts 25 and 50 first (stage 1) and 100 after (stage 2).
What is in a scores.npz
scores float32 [n_query, n_train]
train_uids corpus uid of each column
train_func the function each training document describes
train_role "constant" for a real document, "distractor" for a decoy
train_source the function a decoy shadows, empty for a real document
query_uids query uid of each row
query_func the function each query asks about
query_correct whether the model answers that query correctly
float32 rather than float16, which was tried: an unprojected EK-FAC score is a dot product of two 10^8-dimensional gradients and runs past float16's 65,504 ceiling, which ties most of the matrix and reads as chance.
train_role and train_source are what let a decoy be scored as a third document
class -- signal, its own twin, everything else -- rather than merely as a negative.
metrics.json reports decoy_auc (a real document against the query's own decoys)
and decoy_top1 (how often a decoy takes the top rank) wherever there are decoys.
Methods
ekfacgroup: if-ekfac (EK-FAC influence functions), grad-dot (no curvature) and grad-sim (the cosine). One pass produces all three, since they differ only in what happens to the representation after it is computed.trakgroup: trak, in the dual form over factorised random projections.logragroup: logra, projected gradients with a block-diagonal Fisher.tracingroup: tracin and tracin-cos, the learning-rate-weighted sum of gradient dot products along the training run, on raw and unit-normalised gradients respectively.sourcegroup: source, the same trajectory with each segment preconditioned by the unrolled sum(1 - (1 - eta*lam)^T)/lamin the eigenbasis of a projected Fisher. That factor is TracIn's learning-rate weight at a segment width of one step and an inverse Fisher in the limit, so SOURCE sits between the two methods above it here, on the same gradients and the same checkpoints. After Bae et al., Training Data Attribution via Approximate Unrolled Differentiation.bm25group: bm25 and bm25-prompt, Okapi BM25 over the raw text, with and without the query's answer token.embedgroup: embed and embed-base, cosine similarity underBAAI/bge-base-en-v1.5and under this suite's own base model read at its last token.
Padding is excluded from the Fisher, and attention runs under sdpa. Both
choices, and why they matter more than they look, are in filter/DATTRI_PARITY.md
of the source repository.
The retrieval baselines saturate this benchmark
bm25 and embed are not attribution methods and should not be read as ones.
They are here to bound what the gradient methods are being credited for, and the
bound is not comfortable: BM25 scores 1.000 AUC and 1.000 recall@R on both
arms, including against the hard negatives.
It is a lookup, not a discovery. Every document describing <B01> contains the
token <B01> and no other document does, so the query names its own answer and
BM25 reads it off. The whole method is the tokenizer -- keeping <B01> whole
through glued punctuation is worth 0.999 AUC, and a plain whitespace split scores
0.500 and puts a decoy top for every query.
The embedding pair is the other end. Both sit at chance (0.51 and 0.53), because a dense vector of a 512-token document cannot preserve the identity of one rare token in it, whether or not the encoder has that token in its vocabulary.
So: a gradient method scoring below 1.0 here is being beaten by grep, and any
claim made from this grid has to be made against that rather than against chance.
The trajectory groups cover half the grid, and a sibling of each run
tracin and source score a trajectory rather than a finished model, and these
sweeps kept no mid-run checkpoints. The trajectories are a separate retrain
published under {run}/ckpt/ in the adapter repository, covering two of the
four seeds, so their cells exist only for seeds 1001 and 1002 and their figures
should be read against the other methods restricted to those seeds.
A retrain is a sibling of the published run, not its history: the recipe is not
reproducible run to run. What makes the comparison fair anyway is that the last
checkpoint of each trajectory is that trajectory's own final model, so these
methods attribute to a model that reaches the same accuracy by its own path. See
manifest["reproducible"] and models/v4/ckpt_arm.py in the source repository.
The bm25 and embed groups cover one seed, for the opposite reason: they
never load the model, so all four seeds of a cell would give the same matrix.
Contributing
Anyone in the lamsheeper-data-attribution organization can fill in gaps:
git clone <repo> && cd influence-benchmarking-hops && uv sync
hf auth login
.venv/bin/python filter/baselines/selftest.py --suite vtok101
filter/baselines/launch.sh --suite vtok101 0 1
Workers coordinate through this repository's file listing, so they do not need to know about each other.
Details
- Repository
- lamsheeper-data-attribution/vtok101-attribution-baselines
- Publisher
- Lamsheeper Data Attribution
- Task category
- Not stated by the source
- Tags
- data-attribution, influence-functions, interpretability
- Size category
- Not stated by the source
- Languages
- Not stated by the source
- Revision
- 82107b33679b2ab11dbd0180d3bca678b3bc4d2f
- Last updated
- 2026-09-24
Files
4,235 files, 52.7 GB in total.
Every file (first 3,000)
| File | Type | Size | SHA-256 |
|---|---|---|---|
| claims/f100_50d_sd1001__tracin_margin.1789672585.c22423bcd4.json | Data | 134 B | — |
| claims/f100_50d_sd1002__ekfac_margin.1789694687.46fc623d04.json | Data | 132 B | — |
| f100_10d_sd1001/bm25/config.json | Data | 903 B | — |
| f100_10d_sd1001/bm25/metrics.json | Data | 19.1 KB | — |
| f100_10d_sd1001/ekfac_margin/config.json | Data | 1.8 KB | — |
| f100_10d_sd1001/ekfac_margin/metrics.json | Data | 29.8 KB | — |
| f100_10d_sd1001/embed/config.json | Data | 995 B | — |
| f100_10d_sd1001/embed/metrics.json | Data | 20.5 KB | — |
| f100_10d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f100_10d_sd1001/logra_margin/metrics.json | Data | 10.4 KB | — |
| f100_10d_sd1001/source_margin/config.json | Data | 2.0 KB | — |
| f100_10d_sd1001/source_margin/metrics.json | Data | 8.8 KB | — |
| f100_10d_sd1001/tracin_margin/config.json | Data | 2.0 KB | — |
| f100_10d_sd1001/tracin_margin/metrics.json | Data | 17.4 KB | — |
| f100_10d_sd1001/trak/config.json | Data | 1.7 KB | — |
| f100_10d_sd1001/trak/metrics.json | Data | 10.6 KB | — |
| f100_10d_sd1002/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_10d_sd1002/ekfac_margin/metrics.json | Data | 29.8 KB | — |
| f100_10d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f100_10d_sd1002/logra_margin/metrics.json | Data | 10.4 KB | — |
| f100_10d_sd1002/source_margin/config.json | Data | 2.0 KB | — |
| f100_10d_sd1002/source_margin/metrics.json | Data | 10.5 KB | — |
| f100_10d_sd1002/tracin_margin/config.json | Data | 2.0 KB | — |
| f100_10d_sd1002/tracin_margin/metrics.json | Data | 19.8 KB | — |
| f100_10d_sd1002/trak/config.json | Data | 1.7 KB | — |
| f100_10d_sd1002/trak/metrics.json | Data | 10.8 KB | — |
| f100_10d_sd1003/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_10d_sd1003/ekfac_margin/metrics.json | Data | 29.7 KB | — |
| f100_10d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f100_10d_sd1003/logra_margin/metrics.json | Data | 10.1 KB | — |
| f100_10d_sd1003/trak/config.json | Data | 1.7 KB | — |
| f100_10d_sd1003/trak/metrics.json | Data | 10.6 KB | — |
| f100_10d_sd1004/ekfac_margin/config.json | Data | 1.8 KB | — |
| f100_10d_sd1004/ekfac_margin/metrics.json | Data | 29.9 KB | — |
| f100_10d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f100_10d_sd1004/logra_margin/metrics.json | Data | 10.4 KB | — |
| f100_10d_sd1004/trak/config.json | Data | 1.7 KB | — |
| f100_10d_sd1004/trak/metrics.json | Data | 10.7 KB | — |
| f100_1d_sd1001/bm25/config.json | Data | 900 B | — |
| f100_1d_sd1001/bm25/metrics.json | Data | 16.9 KB | — |
| f100_1d_sd1001/ekfac/config.json | Data | 1.7 KB | — |
| f100_1d_sd1001/ekfac/metrics.json | Data | 29.5 KB | — |
| f100_1d_sd1001/ekfac_margin/config.json | Data | 1.8 KB | — |
| f100_1d_sd1001/ekfac_margin/metrics.json | Data | 29.5 KB | — |
| f100_1d_sd1001/embed/config.json | Data | 992 B | — |
| f100_1d_sd1001/embed/metrics.json | Data | 19.4 KB | — |
| f100_1d_sd1001/logra/config.json | Data | 1.7 KB | — |
| f100_1d_sd1001/logra/metrics.json | Data | 10.0 KB | — |
| f100_1d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f100_1d_sd1001/logra_margin/metrics.json | Data | 8.8 KB | — |
| f100_1d_sd1001/source_margin/config.json | Data | 1.9 KB | — |
| f100_1d_sd1001/source_margin/metrics.json | Data | 8.8 KB | — |
| f100_1d_sd1001/tracin_margin/config.json | Data | 1.9 KB | — |
| f100_1d_sd1001/tracin_margin/metrics.json | Data | 17.6 KB | — |
| f100_1d_sd1001/trak/config.json | Data | 1.7 KB | — |
| f100_1d_sd1001/trak/metrics.json | Data | 8.8 KB | — |
| f100_1d_sd1002/ekfac/config.json | Data | 1.7 KB | — |
| f100_1d_sd1002/ekfac/metrics.json | Data | 29.6 KB | — |
| f100_1d_sd1002/ekfac_margin/config.json | Data | 1.8 KB | — |
| f100_1d_sd1002/ekfac_margin/metrics.json | Data | 29.6 KB | — |
| f100_1d_sd1002/logra/config.json | Data | 1.7 KB | — |
| f100_1d_sd1002/logra/metrics.json | Data | 10.0 KB | — |
| f100_1d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f100_1d_sd1002/logra_margin/metrics.json | Data | 9.4 KB | — |
| f100_1d_sd1002/source_margin/config.json | Data | 1.9 KB | — |
| f100_1d_sd1002/source_margin/metrics.json | Data | 8.9 KB | — |
| f100_1d_sd1002/tracin_margin/config.json | Data | 1.9 KB | — |
| f100_1d_sd1002/tracin_margin/metrics.json | Data | 17.8 KB | — |
| f100_1d_sd1002/trak/config.json | Data | 1.7 KB | — |
| f100_1d_sd1002/trak/metrics.json | Data | 9.3 KB | — |
| f100_1d_sd1003/ekfac/config.json | Data | 1.7 KB | — |
| f100_1d_sd1003/ekfac/metrics.json | Data | 29.6 KB | — |
| f100_1d_sd1003/ekfac_margin/config.json | Data | 1.8 KB | — |
| f100_1d_sd1003/ekfac_margin/metrics.json | Data | 29.5 KB | — |
| f100_1d_sd1003/logra/config.json | Data | 1.7 KB | — |
| f100_1d_sd1003/logra/metrics.json | Data | 9.9 KB | — |
| f100_1d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f100_1d_sd1003/logra_margin/metrics.json | Data | 8.5 KB | — |
| f100_1d_sd1003/trak/config.json | Data | 1.7 KB | — |
| f100_1d_sd1003/trak/metrics.json | Data | 8.5 KB | — |
| f100_1d_sd1004/ekfac/config.json | Data | 1.7 KB | — |
| f100_1d_sd1004/ekfac/metrics.json | Data | 29.6 KB | — |
| f100_1d_sd1004/ekfac_margin/config.json | Data | 1.8 KB | — |
| f100_1d_sd1004/ekfac_margin/metrics.json | Data | 29.6 KB | — |
| f100_1d_sd1004/logra/config.json | Data | 1.7 KB | — |
| f100_1d_sd1004/logra/metrics.json | Data | 10.0 KB | — |
| f100_1d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f100_1d_sd1004/logra_margin/metrics.json | Data | 8.7 KB | — |
| f100_1d_sd1004/trak/config.json | Data | 1.7 KB | — |
| f100_1d_sd1004/trak/metrics.json | Data | 8.6 KB | — |
| f100_20d_sd1001/bm25/config.json | Data | 903 B | — |
| f100_20d_sd1001/bm25/metrics.json | Data | 19.2 KB | — |
| f100_20d_sd1001/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_20d_sd1001/ekfac_margin/metrics.json | Data | 30.0 KB | — |
| f100_20d_sd1001/embed/config.json | Data | 995 B | — |
| f100_20d_sd1001/embed/metrics.json | Data | 20.5 KB | — |
| f100_20d_sd1001/logra_margin/config.json | Data | 2.0 KB | — |
| f100_20d_sd1001/logra_margin/metrics.json | Data | 9.7 KB | — |
| f100_20d_sd1001/source_margin/config.json | Data | 2.0 KB | — |
| f100_20d_sd1001/source_margin/metrics.json | Data | 9.8 KB | — |
| f100_20d_sd1001/tracin_margin/config.json | Data | 2.0 KB | — |
| f100_20d_sd1001/tracin_margin/metrics.json | Data | 18.6 KB | — |
| f100_20d_sd1001/trak/config.json | Data | 1.6 KB | — |
| f100_20d_sd1001/trak/metrics.json | Data | 10.7 KB | — |
| f100_20d_sd1002/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_20d_sd1002/ekfac_margin/metrics.json | Data | 30.0 KB | — |
| f100_20d_sd1002/logra_margin/config.json | Data | 1.6 KB | — |
| f100_20d_sd1002/logra_margin/metrics.json | Data | 9.5 KB | — |
| f100_20d_sd1002/source_margin/config.json | Data | 2.0 KB | — |
| f100_20d_sd1002/source_margin/metrics.json | Data | 9.3 KB | — |
| f100_20d_sd1002/tracin_margin/config.json | Data | 2.0 KB | — |
| f100_20d_sd1002/tracin_margin/metrics.json | Data | 18.6 KB | — |
| f100_20d_sd1002/trak/config.json | Data | 2.0 KB | — |
| f100_20d_sd1002/trak/metrics.json | Data | 10.6 KB | — |
| f100_20d_sd1003/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_20d_sd1003/ekfac_margin/metrics.json | Data | 30.1 KB | — |
| f100_20d_sd1003/logra_margin/config.json | Data | 1.6 KB | — |
| f100_20d_sd1003/logra_margin/metrics.json | Data | 10.6 KB | — |
| f100_20d_sd1003/trak/config.json | Data | 1.6 KB | — |
| f100_20d_sd1003/trak/metrics.json | Data | 10.6 KB | — |
| f100_20d_sd1004/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_20d_sd1004/ekfac_margin/metrics.json | Data | 30.2 KB | — |
| f100_20d_sd1004/logra_margin/config.json | Data | 1.6 KB | — |
| f100_20d_sd1004/logra_margin/metrics.json | Data | 9.5 KB | — |
| f100_20d_sd1004/trak/config.json | Data | 1.6 KB | — |
| f100_20d_sd1004/trak/metrics.json | Data | 10.7 KB | — |
| f100_30d_sd1001/bm25/config.json | Data | 903 B | — |
| f100_30d_sd1001/bm25/metrics.json | Data | 19.6 KB | — |
| f100_30d_sd1001/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_30d_sd1001/ekfac_margin/metrics.json | Data | 32.0 KB | — |
| f100_30d_sd1001/embed/config.json | Data | 995 B | — |
| f100_30d_sd1001/embed/metrics.json | Data | 22.0 KB | — |
| f100_30d_sd1001/logra_margin/config.json | Data | 2.0 KB | — |
| f100_30d_sd1001/logra_margin/metrics.json | Data | 11.1 KB | — |
| f100_30d_sd1001/source_margin/config.json | Data | 2.0 KB | — |
| f100_30d_sd1001/source_margin/metrics.json | Data | 11.3 KB | — |
| f100_30d_sd1001/tracin_margin/config.json | Data | 2.0 KB | — |
| f100_30d_sd1001/tracin_margin/metrics.json | Data | 22.2 KB | — |
| f100_30d_sd1001/trak/config.json | Data | 1.5 KB | — |
| f100_30d_sd1001/trak/metrics.json | Data | 11.2 KB | — |
| f100_30d_sd1002/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_30d_sd1002/ekfac_margin/metrics.json | Data | 31.6 KB | — |
| f100_30d_sd1002/logra_margin/config.json | Data | 2.0 KB | — |
| f100_30d_sd1002/logra_margin/metrics.json | Data | 9.0 KB | — |
| f100_30d_sd1002/source_margin/config.json | Data | 2.0 KB | — |
| f100_30d_sd1002/source_margin/metrics.json | Data | 9.9 KB | — |
| f100_30d_sd1002/tracin_margin/config.json | Data | 2.0 KB | — |
| f100_30d_sd1002/tracin_margin/metrics.json | Data | 19.2 KB | — |
| f100_30d_sd1002/trak/config.json | Data | 1.5 KB | — |
| f100_30d_sd1002/trak/metrics.json | Data | 11.3 KB | — |
| f100_30d_sd1003/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_30d_sd1003/ekfac_margin/metrics.json | Data | 31.8 KB | — |
| f100_30d_sd1003/logra_margin/config.json | Data | 2.0 KB | — |
| f100_30d_sd1003/logra_margin/metrics.json | Data | 9.7 KB | — |
| f100_30d_sd1003/trak/config.json | Data | 1.5 KB | — |
| f100_30d_sd1003/trak/metrics.json | Data | 11.1 KB | — |
| f100_30d_sd1004/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_30d_sd1004/ekfac_margin/metrics.json | Data | 32.1 KB | — |
| f100_30d_sd1004/logra_margin/config.json | Data | 2.0 KB | — |
| f100_30d_sd1004/logra_margin/metrics.json | Data | 9.4 KB | — |
| f100_30d_sd1004/trak/config.json | Data | 1.5 KB | — |
| f100_30d_sd1004/trak/metrics.json | Data | 11.3 KB | — |
| f100_40d_sd1001/bm25/config.json | Data | 903 B | — |
| f100_40d_sd1001/bm25/metrics.json | Data | 19.0 KB | — |
| f100_40d_sd1001/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_40d_sd1001/ekfac_margin/metrics.json | Data | 30.8 KB | — |
| f100_40d_sd1001/embed/config.json | Data | 995 B | — |
| f100_40d_sd1001/embed/metrics.json | Data | 20.7 KB | — |
| f100_40d_sd1001/logra/config.json | Data | 1.7 KB | — |
| f100_40d_sd1001/logra/metrics.json | Data | 10.7 KB | — |
| f100_40d_sd1001/logra_margin/config.json | Data | 1.6 KB | — |
| f100_40d_sd1001/logra_margin/metrics.json | Data | 8.6 KB | — |
| f100_40d_sd1001/source_margin/config.json | Data | 2.0 KB | — |
| f100_40d_sd1001/source_margin/metrics.json | Data | 10.3 KB | — |
| f100_40d_sd1001/tracin_margin/config.json | Data | 2.0 KB | — |
| f100_40d_sd1001/tracin_margin/metrics.json | Data | 19.2 KB | — |
| f100_40d_sd1001/trak/config.json | Data | 1.5 KB | — |
| f100_40d_sd1001/trak/metrics.json | Data | 10.7 KB | — |
| f100_40d_sd1002/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_40d_sd1002/ekfac_margin/metrics.json | Data | 30.3 KB | — |
| f100_40d_sd1002/logra/config.json | Data | 1.8 KB | — |
| f100_40d_sd1002/logra/metrics.json | Data | 10.6 KB | — |
| f100_40d_sd1002/logra_margin/config.json | Data | 2.0 KB | — |
| f100_40d_sd1002/logra_margin/metrics.json | Data | 8.8 KB | — |
| f100_40d_sd1002/tracin_margin/config.json | Data | 2.0 KB | — |
| f100_40d_sd1002/tracin_margin/metrics.json | Data | 19.7 KB | — |
| f100_40d_sd1002/trak/config.json | Data | 1.5 KB | — |
| f100_40d_sd1002/trak/metrics.json | Data | 10.7 KB | — |
| f100_40d_sd1003/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_40d_sd1003/ekfac_margin/metrics.json | Data | 30.6 KB | — |
| f100_40d_sd1003/logra/config.json | Data | 1.7 KB | — |
| f100_40d_sd1003/logra/metrics.json | Data | 10.6 KB | — |
| f100_40d_sd1003/logra_margin/config.json | Data | 1.6 KB | — |
| f100_40d_sd1003/logra_margin/metrics.json | Data | 10.4 KB | — |
| f100_40d_sd1003/trak/config.json | Data | 1.5 KB | — |
| f100_40d_sd1003/trak/metrics.json | Data | 10.6 KB | — |
| f100_40d_sd1004/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_40d_sd1004/ekfac_margin/metrics.json | Data | 30.2 KB | — |
| f100_40d_sd1004/logra/config.json | Data | 1.8 KB | — |
| f100_40d_sd1004/logra/metrics.json | Data | 10.6 KB | — |
| f100_40d_sd1004/logra_margin/config.json | Data | 1.6 KB | — |
| f100_40d_sd1004/logra_margin/metrics.json | Data | 10.1 KB | — |
| f100_40d_sd1004/trak/config.json | Data | 1.5 KB | — |
| f100_40d_sd1004/trak/metrics.json | Data | 10.7 KB | — |
| f100_50d_sd1001/bm25/config.json | Data | 903 B | — |
| f100_50d_sd1001/bm25/metrics.json | Data | 18.9 KB | — |
| f100_50d_sd1001/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_50d_sd1001/ekfac_margin/metrics.json | Data | 30.6 KB | — |
| f100_50d_sd1001/embed/config.json | Data | 995 B | — |
| f100_50d_sd1001/embed/metrics.json | Data | 20.7 KB | — |
| f100_50d_sd1001/logra/config.json | Data | 1.7 KB | — |
| f100_50d_sd1001/logra/metrics.json | Data | 10.6 KB | — |
| f100_50d_sd1001/logra_margin/config.json | Data | 1.6 KB | — |
| f100_50d_sd1001/logra_margin/metrics.json | Data | 9.3 KB | — |
| f100_50d_sd1001/trak/config.json | Data | 1.4 KB | — |
| f100_50d_sd1001/trak/metrics.json | Data | 10.6 KB | — |
| f100_50d_sd1002/logra/config.json | Data | 1.7 KB | — |
| f100_50d_sd1002/logra/metrics.json | Data | 10.7 KB | — |
| f100_50d_sd1002/logra_margin/config.json | Data | 1.6 KB | — |
| f100_50d_sd1002/logra_margin/metrics.json | Data | 10.3 KB | — |
| f100_50d_sd1002/tracin_margin/config.json | Data | 2.0 KB | — |
| f100_50d_sd1002/tracin_margin/metrics.json | Data | 19.0 KB | — |
| f100_50d_sd1002/trak/config.json | Data | 1.4 KB | — |
| f100_50d_sd1002/trak/metrics.json | Data | 10.6 KB | — |
| f100_50d_sd1003/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_50d_sd1003/ekfac_margin/metrics.json | Data | 30.6 KB | — |
| f100_50d_sd1003/logra/config.json | Data | 1.8 KB | — |
| f100_50d_sd1003/logra/metrics.json | Data | 10.6 KB | — |
| f100_50d_sd1003/logra_margin/config.json | Data | 1.6 KB | — |
| f100_50d_sd1003/logra_margin/metrics.json | Data | 9.0 KB | — |
| f100_50d_sd1003/trak/config.json | Data | 1.4 KB | — |
| f100_50d_sd1003/trak/metrics.json | Data | 10.6 KB | — |
| f100_50d_sd1004/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_50d_sd1004/ekfac_margin/metrics.json | Data | 30.3 KB | — |
| f100_50d_sd1004/logra/config.json | Data | 1.7 KB | — |
| f100_50d_sd1004/logra/metrics.json | Data | 10.8 KB | — |
| f100_50d_sd1004/logra_margin/config.json | Data | 1.6 KB | — |
| f100_50d_sd1004/logra_margin/metrics.json | Data | 8.9 KB | — |
| f100_50d_sd1004/trak/config.json | Data | 1.4 KB | — |
| f100_50d_sd1004/trak/metrics.json | Data | 10.5 KB | — |
| f100_5d_sd1001/bm25/config.json | Data | 900 B | — |
| f100_5d_sd1001/bm25/metrics.json | Data | 19.0 KB | — |
| f100_5d_sd1001/ekfac/config.json | Data | 1.7 KB | — |
| f100_5d_sd1001/ekfac/metrics.json | Data | 29.6 KB | — |
| f100_5d_sd1001/ekfac_margin/config.json | Data | 1.8 KB | — |
| f100_5d_sd1001/ekfac_margin/metrics.json | Data | 29.7 KB | — |
| f100_5d_sd1001/embed/config.json | Data | 992 B | — |
| f100_5d_sd1001/embed/metrics.json | Data | 20.3 KB | — |
| f100_5d_sd1001/logra/config.json | Data | 2.0 KB | — |
| f100_5d_sd1001/logra/metrics.json | Data | 10.1 KB | — |
| f100_5d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f100_5d_sd1001/logra_margin/metrics.json | Data | 9.8 KB | — |
| f100_5d_sd1001/source_margin/config.json | Data | 1.9 KB | — |
| f100_5d_sd1001/source_margin/metrics.json | Data | 10.3 KB | — |
| f100_5d_sd1001/tracin_margin/config.json | Data | 2.0 KB | — |
| f100_5d_sd1001/tracin_margin/metrics.json | Data | 20.1 KB | — |
| f100_5d_sd1001/trak/config.json | Data | 2.0 KB | — |
| f100_5d_sd1001/trak/metrics.json | Data | 10.3 KB | — |
| f100_5d_sd1002/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_5d_sd1002/ekfac_margin/metrics.json | Data | 29.8 KB | — |
| f100_5d_sd1002/logra/config.json | Data | 2.0 KB | — |
| f100_5d_sd1002/logra/metrics.json | Data | 10.1 KB | — |
| f100_5d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f100_5d_sd1002/logra_margin/metrics.json | Data | 9.7 KB | — |
| f100_5d_sd1002/source_margin/config.json | Data | 1.9 KB | — |
| f100_5d_sd1002/source_margin/metrics.json | Data | 9.6 KB | — |
| f100_5d_sd1002/tracin_margin/config.json | Data | 2.0 KB | — |
| f100_5d_sd1002/tracin_margin/metrics.json | Data | 18.8 KB | — |
| f100_5d_sd1002/trak/config.json | Data | 2.0 KB | — |
| f100_5d_sd1002/trak/metrics.json | Data | 10.5 KB | — |
| f100_5d_sd1003/ekfac/config.json | Data | 1.7 KB | — |
| f100_5d_sd1003/ekfac/metrics.json | Data | 29.6 KB | — |
| f100_5d_sd1003/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_5d_sd1003/ekfac_margin/metrics.json | Data | 29.6 KB | — |
| f100_5d_sd1003/logra/config.json | Data | 2.0 KB | — |
| f100_5d_sd1003/logra/metrics.json | Data | 10.1 KB | — |
| f100_5d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f100_5d_sd1003/logra_margin/metrics.json | Data | 9.0 KB | — |
| f100_5d_sd1003/trak/config.json | Data | 2.0 KB | — |
| f100_5d_sd1003/trak/metrics.json | Data | 9.9 KB | — |
| f100_5d_sd1004/ekfac_margin/config.json | Data | 2.2 KB | — |
| f100_5d_sd1004/ekfac_margin/metrics.json | Data | 29.7 KB | — |
| f100_5d_sd1004/logra/config.json | Data | 2.0 KB | — |
| f100_5d_sd1004/logra/metrics.json | Data | 10.2 KB | — |
| f100_5d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f100_5d_sd1004/logra_margin/metrics.json | Data | 10.0 KB | — |
| f100_5d_sd1004/trak/config.json | Data | 2.0 KB | — |
| f100_5d_sd1004/trak/metrics.json | Data | 10.3 KB | — |
| f25_10d_sd1001/bm25/config.json | Data | 899 B | — |
| f25_10d_sd1001/bm25/metrics.json | Data | 5.2 KB | — |
| f25_10d_sd1001/ekfac/config.json | Data | 1.7 KB | — |
| f25_10d_sd1001/ekfac/metrics.json | Data | 8.1 KB | — |
| f25_10d_sd1001/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_10d_sd1001/ekfac_margin/metrics.json | Data | 7.9 KB | — |
| f25_10d_sd1001/embed/config.json | Data | 991 B | — |
| f25_10d_sd1001/embed/metrics.json | Data | 5.5 KB | — |
| f25_10d_sd1001/logra/config.json | Data | 1.7 KB | — |
| f25_10d_sd1001/logra/metrics.json | Data | 2.9 KB | — |
| f25_10d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f25_10d_sd1001/logra_margin/metrics.json | Data | 2.9 KB | — |
| f25_10d_sd1001/source_margin/config.json | Data | 1.9 KB | — |
| f25_10d_sd1001/source_margin/metrics.json | Data | 2.8 KB | — |
| f25_10d_sd1001/tracin_margin/config.json | Data | 1.9 KB | — |
| f25_10d_sd1001/tracin_margin/metrics.json | Data | 5.5 KB | — |
| f25_10d_sd1001/trak/config.json | Data | 1.7 KB | — |
| f25_10d_sd1001/trak/metrics.json | Data | 2.9 KB | — |
| f25_10d_sd1002/ekfac/config.json | Data | 1.7 KB | — |
| f25_10d_sd1002/ekfac/metrics.json | Data | 7.9 KB | — |
| f25_10d_sd1002/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_10d_sd1002/ekfac_margin/metrics.json | Data | 7.9 KB | — |
| f25_10d_sd1002/logra/config.json | Data | 1.7 KB | — |
| f25_10d_sd1002/logra/metrics.json | Data | 2.9 KB | — |
| f25_10d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f25_10d_sd1002/logra_margin/metrics.json | Data | 2.8 KB | — |
| f25_10d_sd1002/source_margin/config.json | Data | 1.9 KB | — |
| f25_10d_sd1002/source_margin/metrics.json | Data | 2.9 KB | — |
| f25_10d_sd1002/tracin_margin/config.json | Data | 1.9 KB | — |
| f25_10d_sd1002/tracin_margin/metrics.json | Data | 5.6 KB | — |
| f25_10d_sd1002/trak/config.json | Data | 1.7 KB | — |
| f25_10d_sd1002/trak/metrics.json | Data | 3.0 KB | — |
| f25_10d_sd1003/ekfac/config.json | Data | 1.7 KB | — |
| f25_10d_sd1003/ekfac/metrics.json | Data | 8.0 KB | — |
| f25_10d_sd1003/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_10d_sd1003/ekfac_margin/metrics.json | Data | 7.9 KB | — |
| f25_10d_sd1003/logra/config.json | Data | 1.7 KB | — |
| f25_10d_sd1003/logra/metrics.json | Data | 2.9 KB | — |
| f25_10d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f25_10d_sd1003/logra_margin/metrics.json | Data | 2.9 KB | — |
| f25_10d_sd1003/trak/config.json | Data | 1.7 KB | — |
| f25_10d_sd1003/trak/metrics.json | Data | 2.9 KB | — |
| f25_10d_sd1004/ekfac/config.json | Data | 1.7 KB | — |
| f25_10d_sd1004/ekfac/metrics.json | Data | 8.0 KB | — |
| f25_10d_sd1004/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_10d_sd1004/ekfac_margin/metrics.json | Data | 8.0 KB | — |
| f25_10d_sd1004/logra/config.json | Data | 1.7 KB | — |
| f25_10d_sd1004/logra/metrics.json | Data | 2.9 KB | — |
| f25_10d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f25_10d_sd1004/logra_margin/metrics.json | Data | 3.0 KB | — |
| f25_10d_sd1004/trak/config.json | Data | 1.7 KB | — |
| f25_10d_sd1004/trak/metrics.json | Data | 2.9 KB | — |
| f25_1d_sd1001/bm25/config.json | Data | 896 B | — |
| f25_1d_sd1001/bm25/metrics.json | Data | 4.7 KB | — |
| f25_1d_sd1001/ekfac/config.json | Data | 1.7 KB | — |
| f25_1d_sd1001/ekfac/metrics.json | Data | 7.6 KB | — |
| f25_1d_sd1001/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_1d_sd1001/ekfac_margin/metrics.json | Data | 7.6 KB | — |
| f25_1d_sd1001/embed/config.json | Data | 988 B | — |
| f25_1d_sd1001/embed/metrics.json | Data | 5.1 KB | — |
| f25_1d_sd1001/logra/config.json | Data | 1.7 KB | — |
| f25_1d_sd1001/logra/metrics.json | Data | 2.6 KB | — |
| f25_1d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f25_1d_sd1001/logra_margin/metrics.json | Data | 2.6 KB | — |
| f25_1d_sd1001/source_margin/config.json | Data | 1.9 KB | — |
| f25_1d_sd1001/source_margin/metrics.json | Data | 2.5 KB | — |
| f25_1d_sd1001/tracin_margin/config.json | Data | 1.9 KB | — |
| f25_1d_sd1001/tracin_margin/metrics.json | Data | 4.7 KB | — |
| f25_1d_sd1001/trak/config.json | Data | 1.7 KB | — |
| f25_1d_sd1001/trak/metrics.json | Data | 2.6 KB | — |
| f25_1d_sd1002/ekfac/config.json | Data | 1.7 KB | — |
| f25_1d_sd1002/ekfac/metrics.json | Data | 7.6 KB | — |
| f25_1d_sd1002/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_1d_sd1002/ekfac_margin/metrics.json | Data | 7.6 KB | — |
| f25_1d_sd1002/logra/config.json | Data | 1.7 KB | — |
| f25_1d_sd1002/logra/metrics.json | Data | 2.7 KB | — |
| f25_1d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f25_1d_sd1002/logra_margin/metrics.json | Data | 2.5 KB | — |
| f25_1d_sd1002/source_margin/config.json | Data | 1.9 KB | — |
| f25_1d_sd1002/source_margin/metrics.json | Data | 2.5 KB | — |
| f25_1d_sd1002/tracin_margin/config.json | Data | 1.9 KB | — |
| f25_1d_sd1002/tracin_margin/metrics.json | Data | 4.8 KB | — |
| f25_1d_sd1002/trak/config.json | Data | 1.7 KB | — |
| f25_1d_sd1002/trak/metrics.json | Data | 2.5 KB | — |
| f25_1d_sd1003/ekfac/config.json | Data | 1.7 KB | — |
| f25_1d_sd1003/ekfac/metrics.json | Data | 7.6 KB | — |
| f25_1d_sd1003/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_1d_sd1003/ekfac_margin/metrics.json | Data | 7.6 KB | — |
| f25_1d_sd1003/logra/config.json | Data | 1.7 KB | — |
| f25_1d_sd1003/logra/metrics.json | Data | 2.7 KB | — |
| f25_1d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f25_1d_sd1003/logra_margin/metrics.json | Data | 2.4 KB | — |
| f25_1d_sd1003/trak/config.json | Data | 1.7 KB | — |
| f25_1d_sd1003/trak/metrics.json | Data | 2.5 KB | — |
| f25_1d_sd1004/ekfac/config.json | Data | 1.7 KB | — |
| f25_1d_sd1004/ekfac/metrics.json | Data | 7.6 KB | — |
| f25_1d_sd1004/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_1d_sd1004/ekfac_margin/metrics.json | Data | 7.6 KB | — |
| f25_1d_sd1004/logra/config.json | Data | 1.7 KB | — |
| f25_1d_sd1004/logra/metrics.json | Data | 2.7 KB | — |
| f25_1d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f25_1d_sd1004/logra_margin/metrics.json | Data | 2.5 KB | — |
| f25_1d_sd1004/trak/config.json | Data | 1.7 KB | — |
| f25_1d_sd1004/trak/metrics.json | Data | 2.5 KB | — |
| f25_20d_sd1001/bm25/config.json | Data | 899 B | — |
| f25_20d_sd1001/bm25/metrics.json | Data | 5.2 KB | — |
| f25_20d_sd1001/ekfac/config.json | Data | 1.7 KB | — |
| f25_20d_sd1001/ekfac/metrics.json | Data | 8.0 KB | — |
| f25_20d_sd1001/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_20d_sd1001/ekfac_margin/metrics.json | Data | 8.2 KB | — |
| f25_20d_sd1001/embed/config.json | Data | 991 B | — |
| f25_20d_sd1001/embed/metrics.json | Data | 5.6 KB | — |
| f25_20d_sd1001/logra/config.json | Data | 1.7 KB | — |
| f25_20d_sd1001/logra/metrics.json | Data | 2.8 KB | — |
| f25_20d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f25_20d_sd1001/logra_margin/metrics.json | Data | 2.9 KB | — |
| f25_20d_sd1001/source_margin/config.json | Data | 1.9 KB | — |
| f25_20d_sd1001/source_margin/metrics.json | Data | 3.0 KB | — |
| f25_20d_sd1001/tracin_margin/config.json | Data | 1.9 KB | — |
| f25_20d_sd1001/tracin_margin/metrics.json | Data | 5.5 KB | — |
| f25_20d_sd1001/trak/config.json | Data | 1.7 KB | — |
| f25_20d_sd1001/trak/metrics.json | Data | 2.9 KB | — |
| f25_20d_sd1002/ekfac/config.json | Data | 1.7 KB | — |
| f25_20d_sd1002/ekfac/metrics.json | Data | 8.0 KB | — |
| f25_20d_sd1002/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_20d_sd1002/ekfac_margin/metrics.json | Data | 8.1 KB | — |
| f25_20d_sd1002/logra/config.json | Data | 1.7 KB | — |
| f25_20d_sd1002/logra/metrics.json | Data | 2.9 KB | — |
| f25_20d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f25_20d_sd1002/logra_margin/metrics.json | Data | 2.9 KB | — |
| f25_20d_sd1002/source_margin/config.json | Data | 1.9 KB | — |
| f25_20d_sd1002/source_margin/metrics.json | Data | 2.9 KB | — |
| f25_20d_sd1002/tracin_margin/config.json | Data | 1.9 KB | — |
| f25_20d_sd1002/tracin_margin/metrics.json | Data | 5.2 KB | — |
| f25_20d_sd1002/trak/config.json | Data | 1.7 KB | — |
| f25_20d_sd1002/trak/metrics.json | Data | 2.9 KB | — |
| f25_20d_sd1003/ekfac/config.json | Data | 1.7 KB | — |
| f25_20d_sd1003/ekfac/metrics.json | Data | 8.2 KB | — |
| f25_20d_sd1003/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_20d_sd1003/ekfac_margin/metrics.json | Data | 8.1 KB | — |
| f25_20d_sd1003/logra/config.json | Data | 2.0 KB | — |
| f25_20d_sd1003/logra/metrics.json | Data | 2.9 KB | — |
| f25_20d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f25_20d_sd1003/logra_margin/metrics.json | Data | 2.9 KB | — |
| f25_20d_sd1003/trak/config.json | Data | 1.7 KB | — |
| f25_20d_sd1003/trak/metrics.json | Data | 2.9 KB | — |
| f25_20d_sd1004/ekfac/config.json | Data | 1.7 KB | — |
| f25_20d_sd1004/ekfac/metrics.json | Data | 8.0 KB | — |
| f25_20d_sd1004/ekfac_margin/config.json | Data | 2.2 KB | — |
| f25_20d_sd1004/ekfac_margin/metrics.json | Data | 8.1 KB | — |
| f25_20d_sd1004/logra/config.json | Data | 1.7 KB | — |
| f25_20d_sd1004/logra/metrics.json | Data | 2.8 KB | — |
| f25_20d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f25_20d_sd1004/logra_margin/metrics.json | Data | 2.9 KB | — |
| f25_20d_sd1004/trak/config.json | Data | 1.7 KB | — |
| f25_20d_sd1004/trak/metrics.json | Data | 3.0 KB | — |
| f25_30d_sd1001/bm25/config.json | Data | 899 B | — |
| f25_30d_sd1001/bm25/metrics.json | Data | 5.4 KB | — |
| f25_30d_sd1001/ekfac/config.json | Data | 1.8 KB | — |
| f25_30d_sd1001/ekfac/metrics.json | Data | 8.8 KB | — |
| f25_30d_sd1001/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_30d_sd1001/ekfac_margin/metrics.json | Data | 8.9 KB | — |
| f25_30d_sd1001/embed/config.json | Data | 991 B | — |
| f25_30d_sd1001/embed/metrics.json | Data | 5.9 KB | — |
| f25_30d_sd1001/logra/config.json | Data | 2.0 KB | — |
| f25_30d_sd1001/logra/metrics.json | Data | 3.1 KB | — |
| f25_30d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f25_30d_sd1001/logra_margin/metrics.json | Data | 3.1 KB | — |
| f25_30d_sd1001/source_margin/config.json | Data | 1.9 KB | — |
| f25_30d_sd1001/source_margin/metrics.json | Data | 3.1 KB | — |
| f25_30d_sd1001/tracin_margin/config.json | Data | 2.0 KB | — |
| f25_30d_sd1001/tracin_margin/metrics.json | Data | 5.9 KB | — |
| f25_30d_sd1001/trak/config.json | Data | 2.0 KB | — |
| f25_30d_sd1001/trak/metrics.json | Data | 3.1 KB | — |
| f25_30d_sd1002/ekfac/config.json | Data | 1.8 KB | — |
| f25_30d_sd1002/ekfac/metrics.json | Data | 8.8 KB | — |
| f25_30d_sd1002/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_30d_sd1002/ekfac_margin/metrics.json | Data | 8.8 KB | — |
| f25_30d_sd1002/logra/config.json | Data | 2.0 KB | — |
| f25_30d_sd1002/logra/metrics.json | Data | 3.1 KB | — |
| f25_30d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f25_30d_sd1002/logra_margin/metrics.json | Data | 3.1 KB | — |
| f25_30d_sd1002/source_margin/config.json | Data | 1.9 KB | — |
| f25_30d_sd1002/source_margin/metrics.json | Data | 3.1 KB | — |
| f25_30d_sd1002/tracin_margin/config.json | Data | 2.0 KB | — |
| f25_30d_sd1002/tracin_margin/metrics.json | Data | 6.0 KB | — |
| f25_30d_sd1002/trak/config.json | Data | 2.0 KB | — |
| f25_30d_sd1002/trak/metrics.json | Data | 3.1 KB | — |
| f25_30d_sd1003/ekfac_margin/config.json | Data | 2.2 KB | — |
| f25_30d_sd1003/ekfac_margin/metrics.json | Data | 8.7 KB | — |
| f25_30d_sd1003/logra/config.json | Data | 2.0 KB | — |
| f25_30d_sd1003/logra/metrics.json | Data | 3.1 KB | — |
| f25_30d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f25_30d_sd1003/logra_margin/metrics.json | Data | 3.1 KB | — |
| f25_30d_sd1003/trak/config.json | Data | 2.0 KB | — |
| f25_30d_sd1003/trak/metrics.json | Data | 3.1 KB | — |
| f25_30d_sd1004/ekfac/config.json | Data | 1.8 KB | — |
| f25_30d_sd1004/ekfac/metrics.json | Data | 8.9 KB | — |
| f25_30d_sd1004/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_30d_sd1004/ekfac_margin/metrics.json | Data | 8.8 KB | — |
| f25_30d_sd1004/logra/config.json | Data | 2.0 KB | — |
| f25_30d_sd1004/logra/metrics.json | Data | 3.1 KB | — |
| f25_30d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f25_30d_sd1004/logra_margin/metrics.json | Data | 3.1 KB | — |
| f25_30d_sd1004/trak/config.json | Data | 2.0 KB | — |
| f25_30d_sd1004/trak/metrics.json | Data | 3.1 KB | — |
| f25_40d_sd1001/bm25/config.json | Data | 899 B | — |
| f25_40d_sd1001/bm25/metrics.json | Data | 5.3 KB | — |
| f25_40d_sd1001/ekfac_margin/config.json | Data | 2.2 KB | — |
| f25_40d_sd1001/ekfac_margin/metrics.json | Data | 8.5 KB | — |
| f25_40d_sd1001/embed/config.json | Data | 991 B | — |
| f25_40d_sd1001/embed/metrics.json | Data | 5.6 KB | — |
| f25_40d_sd1001/logra/config.json | Data | 2.0 KB | — |
| f25_40d_sd1001/logra/metrics.json | Data | 3.0 KB | — |
| f25_40d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f25_40d_sd1001/logra_margin/metrics.json | Data | 3.0 KB | — |
| f25_40d_sd1001/source_margin/config.json | Data | 2.0 KB | — |
| f25_40d_sd1001/source_margin/metrics.json | Data | 3.0 KB | — |
| f25_40d_sd1001/tracin_margin/config.json | Data | 2.0 KB | — |
| f25_40d_sd1001/tracin_margin/metrics.json | Data | 5.5 KB | — |
| f25_40d_sd1001/trak/config.json | Data | 1.7 KB | — |
| f25_40d_sd1001/trak/metrics.json | Data | 3.0 KB | — |
| f25_40d_sd1002/ekfac_margin/config.json | Data | 2.2 KB | — |
| f25_40d_sd1002/ekfac_margin/metrics.json | Data | 8.3 KB | — |
| f25_40d_sd1002/logra/config.json | Data | 2.0 KB | — |
| f25_40d_sd1002/logra/metrics.json | Data | 2.9 KB | — |
| f25_40d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f25_40d_sd1002/logra_margin/metrics.json | Data | 2.8 KB | — |
| f25_40d_sd1002/source_margin/config.json | Data | 2.0 KB | — |
| f25_40d_sd1002/source_margin/metrics.json | Data | 2.9 KB | — |
| f25_40d_sd1002/tracin_margin/config.json | Data | 2.0 KB | — |
| f25_40d_sd1002/tracin_margin/metrics.json | Data | 5.6 KB | — |
| f25_40d_sd1002/trak/config.json | Data | 2.0 KB | — |
| f25_40d_sd1002/trak/metrics.json | Data | 3.0 KB | — |
| f25_40d_sd1003/ekfac_margin/config.json | Data | 2.2 KB | — |
| f25_40d_sd1003/ekfac_margin/metrics.json | Data | 8.2 KB | — |
| f25_40d_sd1003/logra/config.json | Data | 2.0 KB | — |
| f25_40d_sd1003/logra/metrics.json | Data | 3.0 KB | — |
| f25_40d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f25_40d_sd1003/logra_margin/metrics.json | Data | 2.9 KB | — |
| f25_40d_sd1003/trak/config.json | Data | 2.0 KB | — |
| f25_40d_sd1003/trak/metrics.json | Data | 2.9 KB | — |
| f25_40d_sd1004/ekfac_margin/config.json | Data | 2.2 KB | — |
| f25_40d_sd1004/ekfac_margin/metrics.json | Data | 8.3 KB | — |
| f25_40d_sd1004/logra/config.json | Data | 2.0 KB | — |
| f25_40d_sd1004/logra/metrics.json | Data | 3.0 KB | — |
| f25_40d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f25_40d_sd1004/logra_margin/metrics.json | Data | 2.9 KB | — |
| f25_40d_sd1004/trak/config.json | Data | 1.7 KB | — |
| f25_40d_sd1004/trak/metrics.json | Data | 2.9 KB | — |
| f25_50d_sd1001/bm25/config.json | Data | 899 B | — |
| f25_50d_sd1001/bm25/metrics.json | Data | 5.4 KB | — |
| f25_50d_sd1001/ekfac_margin/config.json | Data | 2.2 KB | — |
| f25_50d_sd1001/ekfac_margin/metrics.json | Data | 8.3 KB | — |
| f25_50d_sd1001/embed/config.json | Data | 991 B | — |
| f25_50d_sd1001/embed/metrics.json | Data | 5.6 KB | — |
| f25_50d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f25_50d_sd1001/logra_margin/metrics.json | Data | 2.9 KB | — |
| f25_50d_sd1001/source_margin/config.json | Data | 2.0 KB | — |
| f25_50d_sd1001/source_margin/metrics.json | Data | 3.0 KB | — |
| f25_50d_sd1001/tracin_margin/config.json | Data | 2.0 KB | — |
| f25_50d_sd1001/tracin_margin/metrics.json | Data | 5.7 KB | — |
| f25_50d_sd1001/trak/config.json | Data | 1.7 KB | — |
| f25_50d_sd1001/trak/metrics.json | Data | 2.9 KB | — |
| f25_50d_sd1002/ekfac_margin/config.json | Data | 2.2 KB | — |
| f25_50d_sd1002/ekfac_margin/metrics.json | Data | 8.2 KB | — |
| f25_50d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f25_50d_sd1002/logra_margin/metrics.json | Data | 2.9 KB | — |
| f25_50d_sd1002/source_margin/config.json | Data | 1.9 KB | — |
| f25_50d_sd1002/source_margin/metrics.json | Data | 3.0 KB | — |
| f25_50d_sd1002/tracin_margin/config.json | Data | 2.0 KB | — |
| f25_50d_sd1002/tracin_margin/metrics.json | Data | 5.3 KB | — |
| f25_50d_sd1002/trak/config.json | Data | 1.7 KB | — |
| f25_50d_sd1002/trak/metrics.json | Data | 2.8 KB | — |
| f25_50d_sd1003/ekfac_margin/config.json | Data | 2.2 KB | — |
| f25_50d_sd1003/ekfac_margin/metrics.json | Data | 8.1 KB | — |
| f25_50d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f25_50d_sd1003/logra_margin/metrics.json | Data | 3.0 KB | — |
| f25_50d_sd1003/trak/config.json | Data | 1.7 KB | — |
| f25_50d_sd1003/trak/metrics.json | Data | 2.9 KB | — |
| f25_50d_sd1004/ekfac_margin/config.json | Data | 2.2 KB | — |
| f25_50d_sd1004/ekfac_margin/metrics.json | Data | 8.1 KB | — |
| f25_50d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f25_50d_sd1004/logra_margin/metrics.json | Data | 2.9 KB | — |
| f25_50d_sd1004/trak/config.json | Data | 1.7 KB | — |
| f25_50d_sd1004/trak/metrics.json | Data | 2.9 KB | — |
| f25_5d_sd1001/bm25/config.json | Data | 896 B | — |
| f25_5d_sd1001/bm25/metrics.json | Data | 5.3 KB | — |
| f25_5d_sd1001/ekfac/config.json | Data | 1.7 KB | — |
| f25_5d_sd1001/ekfac/metrics.json | Data | 7.9 KB | — |
| f25_5d_sd1001/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_5d_sd1001/ekfac_margin/metrics.json | Data | 7.9 KB | — |
| f25_5d_sd1001/embed/config.json | Data | 988 B | — |
| f25_5d_sd1001/embed/metrics.json | Data | 5.4 KB | — |
| f25_5d_sd1001/logra/config.json | Data | 1.7 KB | — |
| f25_5d_sd1001/logra/metrics.json | Data | 2.8 KB | — |
| f25_5d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f25_5d_sd1001/logra_margin/metrics.json | Data | 2.8 KB | — |
| f25_5d_sd1001/source_margin/config.json | Data | 1.9 KB | — |
| f25_5d_sd1001/source_margin/metrics.json | Data | 2.9 KB | — |
| f25_5d_sd1001/tracin_margin/config.json | Data | 1.9 KB | — |
| f25_5d_sd1001/tracin_margin/metrics.json | Data | 5.4 KB | — |
| f25_5d_sd1001/trak/config.json | Data | 1.7 KB | — |
| f25_5d_sd1001/trak/metrics.json | Data | 2.9 KB | — |
| f25_5d_sd1002/ekfac/config.json | Data | 1.7 KB | — |
| f25_5d_sd1002/ekfac/metrics.json | Data | 7.8 KB | — |
| f25_5d_sd1002/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_5d_sd1002/ekfac_margin/metrics.json | Data | 7.8 KB | — |
| f25_5d_sd1002/logra/config.json | Data | 1.7 KB | — |
| f25_5d_sd1002/logra/metrics.json | Data | 2.8 KB | — |
| f25_5d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f25_5d_sd1002/logra_margin/metrics.json | Data | 2.8 KB | — |
| f25_5d_sd1002/source_margin/config.json | Data | 1.9 KB | — |
| f25_5d_sd1002/source_margin/metrics.json | Data | 2.9 KB | — |
| f25_5d_sd1002/tracin_margin/config.json | Data | 1.9 KB | — |
| f25_5d_sd1002/tracin_margin/metrics.json | Data | 5.3 KB | — |
| f25_5d_sd1002/trak/config.json | Data | 1.7 KB | — |
| f25_5d_sd1002/trak/metrics.json | Data | 2.9 KB | — |
| f25_5d_sd1003/ekfac/config.json | Data | 1.7 KB | — |
| f25_5d_sd1003/ekfac/metrics.json | Data | 7.9 KB | — |
| f25_5d_sd1003/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_5d_sd1003/ekfac_margin/metrics.json | Data | 8.0 KB | — |
| f25_5d_sd1003/logra/config.json | Data | 1.7 KB | — |
| f25_5d_sd1003/logra/metrics.json | Data | 2.8 KB | — |
| f25_5d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f25_5d_sd1003/logra_margin/metrics.json | Data | 2.8 KB | — |
| f25_5d_sd1003/trak/config.json | Data | 1.7 KB | — |
| f25_5d_sd1003/trak/metrics.json | Data | 2.9 KB | — |
| f25_5d_sd1004/ekfac/config.json | Data | 1.7 KB | — |
| f25_5d_sd1004/ekfac/metrics.json | Data | 7.8 KB | — |
| f25_5d_sd1004/ekfac_margin/config.json | Data | 1.8 KB | — |
| f25_5d_sd1004/ekfac_margin/metrics.json | Data | 7.8 KB | — |
| f25_5d_sd1004/logra/config.json | Data | 1.7 KB | — |
| f25_5d_sd1004/logra/metrics.json | Data | 2.8 KB | — |
| f25_5d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f25_5d_sd1004/logra_margin/metrics.json | Data | 2.8 KB | — |
| f25_5d_sd1004/trak/config.json | Data | 1.7 KB | — |
| f25_5d_sd1004/trak/metrics.json | Data | 2.9 KB | — |
| f50_10d_sd1001/bm25/config.json | Data | 899 B | — |
| f50_10d_sd1001/bm25/metrics.json | Data | 9.9 KB | — |
| f50_10d_sd1001/ekfac/config.json | Data | 1.8 KB | — |
| f50_10d_sd1001/ekfac/metrics.json | Data | 15.4 KB | — |
| f50_10d_sd1001/ekfac_margin/config.json | Data | 1.8 KB | — |
| f50_10d_sd1001/ekfac_margin/metrics.json | Data | 15.4 KB | — |
| f50_10d_sd1001/embed/config.json | Data | 991 B | — |
| f50_10d_sd1001/embed/metrics.json | Data | 10.5 KB | — |
| f50_10d_sd1001/logra/config.json | Data | 2.0 KB | — |
| f50_10d_sd1001/logra/metrics.json | Data | 5.4 KB | — |
| f50_10d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f50_10d_sd1001/logra_margin/metrics.json | Data | 5.4 KB | — |
| f50_10d_sd1001/source_margin/config.json | Data | 1.9 KB | — |
| f50_10d_sd1001/source_margin/metrics.json | Data | 5.4 KB | — |
| f50_10d_sd1001/tracin_margin/config.json | Data | 1.9 KB | — |
| f50_10d_sd1001/tracin_margin/metrics.json | Data | 10.0 KB | — |
| f50_10d_sd1001/trak/config.json | Data | 1.7 KB | — |
| f50_10d_sd1001/trak/metrics.json | Data | 5.5 KB | — |
| f50_10d_sd1002/ekfac_margin/config.json | Data | 1.8 KB | — |
| f50_10d_sd1002/ekfac_margin/metrics.json | Data | 15.4 KB | — |
| f50_10d_sd1002/logra/config.json | Data | 2.0 KB | — |
| f50_10d_sd1002/logra/metrics.json | Data | 5.4 KB | — |
| f50_10d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f50_10d_sd1002/logra_margin/metrics.json | Data | 5.4 KB | — |
| f50_10d_sd1002/source_margin/config.json | Data | 1.9 KB | — |
| f50_10d_sd1002/source_margin/metrics.json | Data | 5.2 KB | — |
| f50_10d_sd1002/tracin_margin/config.json | Data | 1.9 KB | — |
| f50_10d_sd1002/tracin_margin/metrics.json | Data | 10.0 KB | — |
| f50_10d_sd1002/trak/config.json | Data | 2.0 KB | — |
| f50_10d_sd1002/trak/metrics.json | Data | 5.5 KB | — |
| f50_10d_sd1003/ekfac/config.json | Data | 1.8 KB | — |
| f50_10d_sd1003/ekfac/metrics.json | Data | 15.3 KB | — |
| f50_10d_sd1003/ekfac_margin/config.json | Data | 1.8 KB | — |
| f50_10d_sd1003/ekfac_margin/metrics.json | Data | 15.3 KB | — |
| f50_10d_sd1003/logra/config.json | Data | 1.7 KB | — |
| f50_10d_sd1003/logra/metrics.json | Data | 5.4 KB | — |
| f50_10d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f50_10d_sd1003/logra_margin/metrics.json | Data | 5.6 KB | — |
| f50_10d_sd1003/trak/config.json | Data | 2.0 KB | — |
| f50_10d_sd1003/trak/metrics.json | Data | 5.4 KB | — |
| f50_10d_sd1004/ekfac/config.json | Data | 1.7 KB | — |
| f50_10d_sd1004/ekfac/metrics.json | Data | 15.3 KB | — |
| f50_10d_sd1004/ekfac_margin/config.json | Data | 1.8 KB | — |
| f50_10d_sd1004/ekfac_margin/metrics.json | Data | 15.5 KB | — |
| f50_10d_sd1004/logra/config.json | Data | 2.0 KB | — |
| f50_10d_sd1004/logra/metrics.json | Data | 5.4 KB | — |
| f50_10d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f50_10d_sd1004/logra_margin/metrics.json | Data | 5.4 KB | — |
| f50_10d_sd1004/trak/config.json | Data | 2.0 KB | — |
| f50_10d_sd1004/trak/metrics.json | Data | 5.5 KB | — |
| f50_1d_sd1001/bm25/config.json | Data | 896 B | — |
| f50_1d_sd1001/bm25/metrics.json | Data | 8.7 KB | — |
| f50_1d_sd1001/ekfac/config.json | Data | 1.7 KB | — |
| f50_1d_sd1001/ekfac/metrics.json | Data | 15.1 KB | — |
| f50_1d_sd1001/ekfac_margin/config.json | Data | 1.8 KB | — |
| f50_1d_sd1001/ekfac_margin/metrics.json | Data | 15.1 KB | — |
| f50_1d_sd1001/embed/config.json | Data | 988 B | — |
| f50_1d_sd1001/embed/metrics.json | Data | 9.9 KB | — |
| f50_1d_sd1001/logra/config.json | Data | 1.7 KB | — |
| f50_1d_sd1001/logra/metrics.json | Data | 5.2 KB | — |
| f50_1d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f50_1d_sd1001/logra_margin/metrics.json | Data | 4.6 KB | — |
| f50_1d_sd1001/source_margin/config.json | Data | 1.9 KB | — |
| f50_1d_sd1001/source_margin/metrics.json | Data | 4.6 KB | — |
| f50_1d_sd1001/tracin_margin/config.json | Data | 1.9 KB | — |
| f50_1d_sd1001/tracin_margin/metrics.json | Data | 8.9 KB | — |
| f50_1d_sd1001/trak/config.json | Data | 1.7 KB | — |
| f50_1d_sd1001/trak/metrics.json | Data | 4.7 KB | — |
| f50_1d_sd1002/ekfac/config.json | Data | 1.7 KB | — |
| f50_1d_sd1002/ekfac/metrics.json | Data | 15.1 KB | — |
| f50_1d_sd1002/ekfac_margin/config.json | Data | 1.8 KB | — |
| f50_1d_sd1002/ekfac_margin/metrics.json | Data | 15.1 KB | — |
| f50_1d_sd1002/logra/config.json | Data | 1.7 KB | — |
| f50_1d_sd1002/logra/metrics.json | Data | 5.2 KB | — |
| f50_1d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f50_1d_sd1002/logra_margin/metrics.json | Data | 4.7 KB | — |
| f50_1d_sd1002/source_margin/config.json | Data | 1.9 KB | — |
| f50_1d_sd1002/source_margin/metrics.json | Data | 4.7 KB | — |
| f50_1d_sd1002/tracin_margin/config.json | Data | 1.9 KB | — |
| f50_1d_sd1002/tracin_margin/metrics.json | Data | 9.3 KB | — |
| f50_1d_sd1002/trak/config.json | Data | 1.7 KB | — |
| f50_1d_sd1002/trak/metrics.json | Data | 4.8 KB | — |
| f50_1d_sd1003/ekfac/config.json | Data | 1.7 KB | — |
| f50_1d_sd1003/ekfac/metrics.json | Data | 15.1 KB | — |
| f50_1d_sd1003/ekfac_margin/config.json | Data | 1.8 KB | — |
| f50_1d_sd1003/ekfac_margin/metrics.json | Data | 15.1 KB | — |
| f50_1d_sd1003/logra/config.json | Data | 1.7 KB | — |
| f50_1d_sd1003/logra/metrics.json | Data | 5.2 KB | — |
| f50_1d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f50_1d_sd1003/logra_margin/metrics.json | Data | 4.6 KB | — |
| f50_1d_sd1003/trak/config.json | Data | 1.7 KB | — |
| f50_1d_sd1003/trak/metrics.json | Data | 4.5 KB | — |
| f50_1d_sd1004/ekfac/config.json | Data | 1.7 KB | — |
| f50_1d_sd1004/ekfac/metrics.json | Data | 15.1 KB | — |
| f50_1d_sd1004/ekfac_margin/config.json | Data | 1.8 KB | — |
| f50_1d_sd1004/ekfac_margin/metrics.json | Data | 15.1 KB | — |
| f50_1d_sd1004/logra/config.json | Data | 1.7 KB | — |
| f50_1d_sd1004/logra/metrics.json | Data | 5.2 KB | — |
| f50_1d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f50_1d_sd1004/logra_margin/metrics.json | Data | 4.5 KB | — |
| f50_1d_sd1004/trak/config.json | Data | 1.7 KB | — |
| f50_1d_sd1004/trak/metrics.json | Data | 4.5 KB | — |
| f50_20d_sd1001/bm25/config.json | Data | 899 B | — |
| f50_20d_sd1001/bm25/metrics.json | Data | 9.7 KB | — |
| f50_20d_sd1001/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_20d_sd1001/ekfac_margin/metrics.json | Data | 15.5 KB | — |
| f50_20d_sd1001/embed/config.json | Data | 991 B | — |
| f50_20d_sd1001/embed/metrics.json | Data | 10.5 KB | — |
| f50_20d_sd1001/logra/config.json | Data | 2.0 KB | — |
| f50_20d_sd1001/logra/metrics.json | Data | 5.5 KB | — |
| f50_20d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f50_20d_sd1001/logra_margin/metrics.json | Data | 5.4 KB | — |
| f50_20d_sd1001/source_margin/config.json | Data | 2.0 KB | — |
| f50_20d_sd1001/source_margin/metrics.json | Data | 4.7 KB | — |
| f50_20d_sd1001/tracin_margin/config.json | Data | 2.0 KB | — |
| f50_20d_sd1001/tracin_margin/metrics.json | Data | 9.3 KB | — |
| f50_20d_sd1001/trak/config.json | Data | 2.0 KB | — |
| f50_20d_sd1001/trak/metrics.json | Data | 5.5 KB | — |
| f50_20d_sd1002/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_20d_sd1002/ekfac_margin/metrics.json | Data | 15.5 KB | — |
| f50_20d_sd1002/logra/config.json | Data | 2.0 KB | — |
| f50_20d_sd1002/logra/metrics.json | Data | 5.4 KB | — |
| f50_20d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f50_20d_sd1002/logra_margin/metrics.json | Data | 5.5 KB | — |
| f50_20d_sd1002/source_margin/config.json | Data | 1.9 KB | — |
| f50_20d_sd1002/source_margin/metrics.json | Data | 5.6 KB | — |
| f50_20d_sd1002/tracin_margin/config.json | Data | 2.0 KB | — |
| f50_20d_sd1002/tracin_margin/metrics.json | Data | 10.3 KB | — |
| f50_20d_sd1002/trak/config.json | Data | 2.0 KB | — |
| f50_20d_sd1002/trak/metrics.json | Data | 5.5 KB | — |
| f50_20d_sd1003/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_20d_sd1003/ekfac_margin/metrics.json | Data | 15.6 KB | — |
| f50_20d_sd1003/logra/config.json | Data | 2.0 KB | — |
| f50_20d_sd1003/logra/metrics.json | Data | 5.6 KB | — |
| f50_20d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f50_20d_sd1003/logra_margin/metrics.json | Data | 5.5 KB | — |
| f50_20d_sd1003/trak/config.json | Data | 2.0 KB | — |
| f50_20d_sd1003/trak/metrics.json | Data | 5.5 KB | — |
| f50_20d_sd1004/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_20d_sd1004/ekfac_margin/metrics.json | Data | 15.6 KB | — |
| f50_20d_sd1004/logra/config.json | Data | 2.0 KB | — |
| f50_20d_sd1004/logra/metrics.json | Data | 5.4 KB | — |
| f50_20d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f50_20d_sd1004/logra_margin/metrics.json | Data | 5.6 KB | — |
| f50_20d_sd1004/trak/config.json | Data | 2.0 KB | — |
| f50_20d_sd1004/trak/metrics.json | Data | 5.5 KB | — |
| f50_30d_sd1001/bm25/config.json | Data | 899 B | — |
| f50_30d_sd1001/bm25/metrics.json | Data | 10.0 KB | — |
| f50_30d_sd1001/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_30d_sd1001/ekfac_margin/metrics.json | Data | 16.7 KB | — |
| f50_30d_sd1001/embed/config.json | Data | 991 B | — |
| f50_30d_sd1001/embed/metrics.json | Data | 11.4 KB | — |
| f50_30d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f50_30d_sd1001/logra_margin/metrics.json | Data | 5.8 KB | — |
| f50_30d_sd1001/source_margin/config.json | Data | 1.9 KB | — |
| f50_30d_sd1001/source_margin/metrics.json | Data | 5.9 KB | — |
| f50_30d_sd1001/tracin_margin/config.json | Data | 2.0 KB | — |
| f50_30d_sd1001/tracin_margin/metrics.json | Data | 11.3 KB | — |
| f50_30d_sd1001/trak/config.json | Data | 1.7 KB | — |
| f50_30d_sd1001/trak/metrics.json | Data | 5.9 KB | — |
| f50_30d_sd1002/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_30d_sd1002/ekfac_margin/metrics.json | Data | 16.6 KB | — |
| f50_30d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f50_30d_sd1002/logra_margin/metrics.json | Data | 5.9 KB | — |
| f50_30d_sd1002/source_margin/config.json | Data | 1.9 KB | — |
| f50_30d_sd1002/source_margin/metrics.json | Data | 5.6 KB | — |
| f50_30d_sd1002/tracin_margin/config.json | Data | 2.0 KB | — |
| f50_30d_sd1002/tracin_margin/metrics.json | Data | 10.5 KB | — |
| f50_30d_sd1002/trak/config.json | Data | 1.7 KB | — |
| f50_30d_sd1002/trak/metrics.json | Data | 5.8 KB | — |
| f50_30d_sd1003/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_30d_sd1003/ekfac_margin/metrics.json | Data | 16.7 KB | — |
| f50_30d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f50_30d_sd1003/logra_margin/metrics.json | Data | 5.8 KB | — |
| f50_30d_sd1003/trak/config.json | Data | 1.7 KB | — |
| f50_30d_sd1003/trak/metrics.json | Data | 5.7 KB | — |
| f50_30d_sd1004/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_30d_sd1004/ekfac_margin/metrics.json | Data | 16.8 KB | — |
| f50_30d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f50_30d_sd1004/logra_margin/metrics.json | Data | 5.8 KB | — |
| f50_30d_sd1004/trak/config.json | Data | 1.7 KB | — |
| f50_30d_sd1004/trak/metrics.json | Data | 5.8 KB | — |
| f50_40d_sd1001/bm25/config.json | Data | 899 B | — |
| f50_40d_sd1001/bm25/metrics.json | Data | 9.9 KB | — |
| f50_40d_sd1001/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_40d_sd1001/ekfac_margin/metrics.json | Data | 16.0 KB | — |
| f50_40d_sd1001/embed/config.json | Data | 991 B | — |
| f50_40d_sd1001/embed/metrics.json | Data | 10.6 KB | — |
| f50_40d_sd1001/logra_margin/config.json | Data | 2.0 KB | — |
| f50_40d_sd1001/logra_margin/metrics.json | Data | 5.5 KB | — |
| f50_40d_sd1001/source_margin/config.json | Data | 2.0 KB | — |
| f50_40d_sd1001/source_margin/metrics.json | Data | 5.2 KB | — |
| f50_40d_sd1001/tracin_margin/config.json | Data | 2.0 KB | — |
| f50_40d_sd1001/tracin_margin/metrics.json | Data | 10.1 KB | — |
| f50_40d_sd1001/trak/config.json | Data | 1.7 KB | — |
| f50_40d_sd1001/trak/metrics.json | Data | 5.5 KB | — |
| f50_40d_sd1002/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_40d_sd1002/ekfac_margin/metrics.json | Data | 15.7 KB | — |
| f50_40d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f50_40d_sd1002/logra_margin/metrics.json | Data | 5.7 KB | — |
| f50_40d_sd1002/source_margin/config.json | Data | 2.0 KB | — |
| f50_40d_sd1002/source_margin/metrics.json | Data | 5.6 KB | — |
| f50_40d_sd1002/tracin_margin/config.json | Data | 2.0 KB | — |
| f50_40d_sd1002/tracin_margin/metrics.json | Data | 10.2 KB | — |
| f50_40d_sd1002/trak/config.json | Data | 1.7 KB | — |
| f50_40d_sd1002/trak/metrics.json | Data | 5.6 KB | — |
| f50_40d_sd1003/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_40d_sd1003/ekfac_margin/metrics.json | Data | 16.0 KB | — |
| f50_40d_sd1003/logra_margin/config.json | Data | 2.0 KB | — |
| f50_40d_sd1003/logra_margin/metrics.json | Data | 5.6 KB | — |
| f50_40d_sd1003/trak/config.json | Data | 2.0 KB | — |
| f50_40d_sd1003/trak/metrics.json | Data | 5.5 KB | — |
| f50_40d_sd1004/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_40d_sd1004/ekfac_margin/metrics.json | Data | 15.8 KB | — |
| f50_40d_sd1004/logra_margin/config.json | Data | 2.0 KB | — |
| f50_40d_sd1004/logra_margin/metrics.json | Data | 5.6 KB | — |
| f50_40d_sd1004/trak/config.json | Data | 1.7 KB | — |
| f50_40d_sd1004/trak/metrics.json | Data | 5.5 KB | — |
| f50_50d_sd1001/bm25/config.json | Data | 899 B | — |
| f50_50d_sd1001/bm25/metrics.json | Data | 9.8 KB | — |
| f50_50d_sd1001/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_50d_sd1001/ekfac_margin/metrics.json | Data | 15.8 KB | — |
| f50_50d_sd1001/embed/config.json | Data | 991 B | — |
| f50_50d_sd1001/embed/metrics.json | Data | 10.7 KB | — |
| f50_50d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f50_50d_sd1001/logra_margin/metrics.json | Data | 5.6 KB | — |
| f50_50d_sd1001/source_margin/config.json | Data | 2.0 KB | — |
| f50_50d_sd1001/source_margin/metrics.json | Data | 5.6 KB | — |
| f50_50d_sd1001/tracin_margin/config.json | Data | 2.0 KB | — |
| f50_50d_sd1001/tracin_margin/metrics.json | Data | 10.2 KB | — |
| f50_50d_sd1001/trak/config.json | Data | 1.5 KB | — |
| f50_50d_sd1001/trak/metrics.json | Data | 5.5 KB | — |
| f50_50d_sd1002/ekfac_margin/config.json | Data | 1.8 KB | — |
| f50_50d_sd1002/ekfac_margin/metrics.json | Data | 15.8 KB | — |
| f50_50d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f50_50d_sd1002/logra_margin/metrics.json | Data | 5.6 KB | — |
| f50_50d_sd1002/source_margin/config.json | Data | 2.0 KB | — |
| f50_50d_sd1002/source_margin/metrics.json | Data | 5.4 KB | — |
| f50_50d_sd1002/trak/config.json | Data | 1.5 KB | — |
| f50_50d_sd1002/trak/metrics.json | Data | 5.5 KB | — |
| f50_50d_sd1003/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_50d_sd1003/ekfac_margin/metrics.json | Data | 15.7 KB | — |
| f50_50d_sd1003/logra_margin/config.json | Data | 2.0 KB | — |
| f50_50d_sd1003/logra_margin/metrics.json | Data | 5.0 KB | — |
| f50_50d_sd1003/trak/config.json | Data | 1.5 KB | — |
| f50_50d_sd1003/trak/metrics.json | Data | 5.6 KB | — |
| f50_50d_sd1004/ekfac_margin/config.json | Data | 2.2 KB | — |
| f50_50d_sd1004/ekfac_margin/metrics.json | Data | 15.9 KB | — |
| f50_50d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f50_50d_sd1004/logra_margin/metrics.json | Data | 5.7 KB | — |
| f50_50d_sd1004/trak/config.json | Data | 1.6 KB | — |
| f50_50d_sd1004/trak/metrics.json | Data | 5.5 KB | — |
| f50_5d_sd1001/bm25/config.json | Data | 896 B | — |
| f50_5d_sd1001/bm25/metrics.json | Data | 9.8 KB | — |
| f50_5d_sd1001/ekfac/config.json | Data | 1.7 KB | — |
| f50_5d_sd1001/ekfac/metrics.json | Data | 15.2 KB | — |
| f50_5d_sd1001/ekfac_margin/config.json | Data | 1.8 KB | — |
| f50_5d_sd1001/ekfac_margin/metrics.json | Data | 15.2 KB | — |
| f50_5d_sd1001/embed/config.json | Data | 988 B | — |
| f50_5d_sd1001/embed/metrics.json | Data | 10.5 KB | — |
| f50_5d_sd1001/logra/config.json | Data | 1.7 KB | — |
| f50_5d_sd1001/logra/metrics.json | Data | 5.3 KB | — |
| f50_5d_sd1001/logra_margin/config.json | Data | 1.7 KB | — |
| f50_5d_sd1001/logra_margin/metrics.json | Data | 5.4 KB | — |
| f50_5d_sd1001/source_margin/config.json | Data | 1.9 KB | — |
| f50_5d_sd1001/source_margin/metrics.json | Data | 5.5 KB | — |
| f50_5d_sd1001/tracin_margin/config.json | Data | 1.9 KB | — |
| f50_5d_sd1001/tracin_margin/metrics.json | Data | 10.5 KB | — |
| f50_5d_sd1001/trak/config.json | Data | 1.7 KB | — |
| f50_5d_sd1001/trak/metrics.json | Data | 5.4 KB | — |
| f50_5d_sd1002/ekfac/config.json | Data | 1.7 KB | — |
| f50_5d_sd1002/ekfac/metrics.json | Data | 15.2 KB | — |
| f50_5d_sd1002/ekfac_margin/config.json | Data | 1.8 KB | — |
| f50_5d_sd1002/ekfac_margin/metrics.json | Data | 15.2 KB | — |
| f50_5d_sd1002/logra/config.json | Data | 1.7 KB | — |
| f50_5d_sd1002/logra/metrics.json | Data | 5.3 KB | — |
| f50_5d_sd1002/logra_margin/config.json | Data | 1.7 KB | — |
| f50_5d_sd1002/logra_margin/metrics.json | Data | 5.4 KB | — |
| f50_5d_sd1002/source_margin/config.json | Data | 1.9 KB | — |
| f50_5d_sd1002/source_margin/metrics.json | Data | 5.5 KB | — |
| f50_5d_sd1002/tracin_margin/config.json | Data | 2.0 KB | — |
| f50_5d_sd1002/tracin_margin/metrics.json | Data | 10.4 KB | — |
| f50_5d_sd1002/trak/config.json | Data | 1.7 KB | — |
| f50_5d_sd1002/trak/metrics.json | Data | 5.4 KB | — |
| f50_5d_sd1003/ekfac/config.json | Data | 1.7 KB | — |
| f50_5d_sd1003/ekfac/metrics.json | Data | 15.3 KB | — |
| f50_5d_sd1003/ekfac_margin/config.json | Data | 1.8 KB | — |
| f50_5d_sd1003/ekfac_margin/metrics.json | Data | 15.4 KB | — |
| f50_5d_sd1003/logra/config.json | Data | 1.7 KB | — |
| f50_5d_sd1003/logra/metrics.json | Data | 5.2 KB | — |
| f50_5d_sd1003/logra_margin/config.json | Data | 1.7 KB | — |
| f50_5d_sd1003/logra_margin/metrics.json | Data | 5.3 KB | — |
| f50_5d_sd1003/trak/config.json | Data | 1.7 KB | — |
| f50_5d_sd1003/trak/metrics.json | Data | 5.2 KB | — |
| f50_5d_sd1004/ekfac/config.json | Data | 1.7 KB | — |
| f50_5d_sd1004/ekfac/metrics.json | Data | 15.3 KB | — |
| f50_5d_sd1004/ekfac_margin/config.json | Data | 1.8 KB | — |
| f50_5d_sd1004/ekfac_margin/metrics.json | Data | 15.3 KB | — |
| f50_5d_sd1004/logra/config.json | Data | 1.7 KB | — |
| f50_5d_sd1004/logra/metrics.json | Data | 5.3 KB | — |
| f50_5d_sd1004/logra_margin/config.json | Data | 1.7 KB | — |
| f50_5d_sd1004/logra_margin/metrics.json | Data | 5.5 KB | — |
| f50_5d_sd1004/trak/config.json | Data | 1.7 KB | — |
| f50_5d_sd1004/trak/metrics.json | Data | 5.5 KB | — |
| v2/claims/f100_1d_sd1001__ekfac.1790204090.328b3d230f.json | Data | 147 B | — |
| v2/claims/f100_30d_sd1001__ekfac.1790208347.c0f2048e99.json | Data | 146 B | — |
| v2/claims/f100_30d_sd1001__tracin.1790203417.2f9bc396d5.json | Data | 149 B | — |
| v2/claims/f100_30d_sd1002__ekfac.1790218787.b30a8bdf06.json | Data | 149 B | — |
| v2/claims/f100_30d_sd1002__tracin.1790218803.01a65f6912.json | Data | 149 B | — |
| v2/claims/f100_50d_sd1001__sketch.1790219101.eba2794f12.json | Data | 149 B | — |
| v2/claims/f100_50d_sd1002__ekfac.1790221528.a2bc9a5d28.json | Data | 149 B | — |
| v2/claims/f100_50d_sd1003__ekfac.1790220516.a1139683c3.json | Data | 149 B | — |
| v2/f100_10d_sd1001/bm25/config.json | Data | 1.1 KB | — |
| v2/f100_10d_sd1001/bm25/metrics.json | Data | 612 B | — |
| v2/f100_10d_sd1001/ekfac/config.json | Data | 2.9 KB | — |
| v2/f100_10d_sd1001/ekfac/metrics.json | Data | 132.3 KB | — |
| v2/f100_10d_sd1001/embed/config.json | Data | 1.2 KB | — |
| v2/f100_10d_sd1001/embed/metrics.json | Data | 614 B | — |
| v2/f100_10d_sd1001/sketch/config.json | Data | 2.6 KB | — |
| v2/f100_10d_sd1001/sketch/metrics.json | Data | 141.5 KB | — |
| v2/f100_10d_sd1001/source/config.json | Data | 2.6 KB | — |
| v2/f100_10d_sd1001/source/metrics.json | Data | 27.1 KB | — |
| v2/f100_10d_sd1001/tracin/config.json | Data | 2.7 KB | — |
| v2/f100_10d_sd1001/tracin/metrics.json | Data | 78.8 KB | — |
| v2/f100_10d_sd1002/ekfac/config.json | Data | 2.9 KB | — |
| v2/f100_10d_sd1002/ekfac/metrics.json | Data | 130.5 KB | — |
| v2/f100_10d_sd1002/sketch/config.json | Data | 2.6 KB | — |
| v2/f100_10d_sd1002/sketch/metrics.json | Data | 129.8 KB | — |
| v2/f100_10d_sd1002/source/config.json | Data | 2.9 KB | — |
| v2/f100_10d_sd1002/source/metrics.json | Data | 27.2 KB | — |
| v2/f100_10d_sd1002/tracin/config.json | Data | 2.9 KB | — |
| v2/f100_10d_sd1002/tracin/metrics.json | Data | 53.9 KB | — |
| v2/f100_10d_sd1003/ekfac/config.json | Data | 2.7 KB | — |
| v2/f100_10d_sd1003/ekfac/metrics.json | Data | 133.8 KB | — |
| v2/f100_10d_sd1003/sketch/config.json | Data | 2.6 KB | — |
| v2/f100_10d_sd1003/sketch/metrics.json | Data | 141.8 KB | — |
| v2/f100_1d_sd1001/bm25/config.json | Data | 1.1 KB | — |
| v2/f100_1d_sd1001/bm25/metrics.json | Data | 17.2 KB | — |
| v2/f100_1d_sd1001/ekfac/config.json | Data | 2.8 KB | — |
| v2/f100_1d_sd1001/ekfac/metrics.json | Data | 78.8 KB | — |
| v2/f100_1d_sd1001/embed/config.json | Data | 1.2 KB | — |
| v2/f100_1d_sd1001/embed/metrics.json | Data | 19.7 KB | — |
| v2/f100_1d_sd1001/sketch/config.json | Data | 2.9 KB | — |
| v2/f100_1d_sd1001/sketch/metrics.json | Data | 332.0 KB | — |
| v2/f100_1d_sd1001/source/config.json | Data | 2.9 KB | — |
| v2/f100_1d_sd1001/source/metrics.json | Data | 26.5 KB | — |
| v2/f100_1d_sd1001/tracin/config.json | Data | 3.0 KB | — |
| v2/f100_1d_sd1001/tracin/metrics.json | Data | 97.1 KB | — |
| v2/f100_1d_sd1002/ekfac/config.json | Data | 2.9 KB | — |
| v2/f100_1d_sd1002/ekfac/metrics.json | Data | 164.8 KB | — |
| v2/f100_1d_sd1002/sketch/config.json | Data | 2.9 KB | — |
| v2/f100_1d_sd1002/sketch/metrics.json | Data | 335.7 KB | — |
| v2/f100_1d_sd1002/source/config.json | Data | 2.9 KB | — |
| v2/f100_1d_sd1002/source/metrics.json | Data | 26.7 KB | — |
| v2/f100_1d_sd1002/tracin/config.json | Data | 2.9 KB | — |
| v2/f100_1d_sd1002/tracin/metrics.json | Data | 53.0 KB | — |
| v2/f100_1d_sd1003/ekfac/config.json | Data | 2.9 KB | — |
| v2/f100_1d_sd1003/ekfac/metrics.json | Data | 165.1 KB | — |
| v2/f100_1d_sd1003/sketch/config.json | Data | 2.9 KB | — |
| v2/f100_1d_sd1003/sketch/metrics.json | Data | 332.4 KB | — |
| v2/f100_30d_sd1001/bm25/config.json | Data | 1.1 KB | — |
| v2/f100_30d_sd1001/bm25/metrics.json | Data | 613 B | — |
| v2/f100_30d_sd1001/embed/config.json | Data | 1.1 KB | — |
| v2/f100_30d_sd1001/embed/metrics.json | Data | 614 B | — |
| v2/f100_30d_sd1001/sketch/config.json | Data | 2.6 KB | — |
| v2/f100_30d_sd1001/sketch/metrics.json | Data | 132.7 KB | — |
| v2/f100_30d_sd1001/source/config.json | Data | 3.0 KB | — |
| v2/f100_30d_sd1001/source/metrics.json | Data | 28.4 KB | — |
| v2/f100_30d_sd1002/sketch/config.json | Data | 2.6 KB | — |
| v2/f100_30d_sd1002/sketch/metrics.json | Data | 141.1 KB | — |
| v2/f100_30d_sd1002/source/config.json | Data | 2.6 KB | — |
| v2/f100_30d_sd1002/source/metrics.json | Data | 27.9 KB | — |
| v2/f100_30d_sd1003/ekfac/config.json | Data | 2.9 KB | — |
| v2/f100_30d_sd1003/ekfac/metrics.json | Data | 177.2 KB | — |
| v2/f100_30d_sd1003/sketch/config.json | Data | 2.6 KB | — |
| v2/f100_30d_sd1003/sketch/metrics.json | Data | 136.8 KB | — |
| v2/f100_50d_sd1001/bm25/config.json | Data | 1.1 KB | — |
| v2/f100_50d_sd1001/bm25/metrics.json | Data | 613 B | — |
| v2/f100_50d_sd1001/embed/config.json | Data | 1.2 KB | — |
| v2/f100_50d_sd1001/embed/metrics.json | Data | 21.1 KB | — |
| v2/f100_50d_sd1001/source/config.json | Data | 2.9 KB | — |
| v2/f100_50d_sd1001/source/metrics.json | Data | 27.2 KB | — |
| v2/f100_50d_sd1002/sketch/config.json | Data | 2.8 KB | — |
| v2/f100_50d_sd1002/sketch/metrics.json | Data | 129.5 KB | — |
| v2/f100_50d_sd1003/sketch/config.json | Data | 2.8 KB | — |
| v2/f100_50d_sd1003/sketch/metrics.json | Data | 128.5 KB | — |
| v2/f100_5d_sd1001/bm25/config.json | Data | 1.1 KB | — |
| v2/f100_5d_sd1001/bm25/metrics.json | Data | 19.3 KB | — |
| v2/f100_5d_sd1001/ekfac/config.json | Data | 2.7 KB | — |
| v2/f100_5d_sd1001/ekfac/metrics.json | Data | 129.7 KB | — |
| v2/f100_5d_sd1001/embed/config.json | Data | 1.2 KB | — |
| v2/f100_5d_sd1001/embed/metrics.json | Data | 20.5 KB | — |
| v2/f100_5d_sd1001/sketch/config.json | Data | 2.8 KB | — |
| v2/f100_5d_sd1001/sketch/metrics.json | Data | 134.8 KB | — |
| v2/f100_5d_sd1001/source/config.json | Data | 2.9 KB | — |
| v2/f100_5d_sd1001/source/metrics.json | Data | 27.2 KB | — |
| v2/f100_5d_sd1001/tracin/config.json | Data | 3.0 KB | — |
| v2/f100_5d_sd1001/tracin/metrics.json | Data | 98.0 KB | — |
| v2/f100_5d_sd1002/ekfac/config.json | Data | 2.8 KB | — |
| v2/f100_5d_sd1002/ekfac/metrics.json | Data | 79.9 KB | — |
| v2/f100_5d_sd1002/sketch/config.json | Data | 2.8 KB | — |
| v2/f100_5d_sd1002/sketch/metrics.json | Data | 134.3 KB | — |
| v2/f100_5d_sd1002/source/config.json | Data | 2.9 KB | — |
| v2/f100_5d_sd1002/source/metrics.json | Data | 27.0 KB | — |
| v2/f100_5d_sd1002/tracin/config.json | Data | 2.7 KB | — |
| v2/f100_5d_sd1002/tracin/metrics.json | Data | 81.3 KB | — |
| v2/f100_5d_sd1003/ekfac/config.json | Data | 2.8 KB | — |
| v2/f100_5d_sd1003/ekfac/metrics.json | Data | 79.9 KB | — |
| v2/f100_5d_sd1003/sketch/config.json | Data | 2.8 KB | — |
| v2/f100_5d_sd1003/sketch/metrics.json | Data | 125.4 KB | — |
| v2/f25_10d_sd1001/bm25/config.json | Data | 899 B | — |
| v2/f25_10d_sd1001/bm25/metrics.json | Data | 5.5 KB | — |
| v2/f25_10d_sd1001/ekfac/config.json | Data | 2.6 KB | — |
| v2/f25_10d_sd1001/ekfac/metrics.json | Data | 34.9 KB | — |
| v2/f25_10d_sd1001/embed/config.json | Data | 991 B | — |
| v2/f25_10d_sd1001/embed/metrics.json | Data | 5.8 KB | — |
| v2/f25_10d_sd1001/sketch/config.json | Data | 2.9 KB | — |
| v2/f25_10d_sd1001/sketch/metrics.json | Data | 93.1 KB | — |
| v2/f25_10d_sd1001/source/config.json | Data | 2.5 KB | — |
| v2/f25_10d_sd1001/source/metrics.json | Data | 7.7 KB | — |
| v2/f25_10d_sd1001/tracin/config.json | Data | 2.6 KB | — |
| v2/f25_10d_sd1001/tracin/metrics.json | Data | 21.3 KB | — |
| v2/f25_10d_sd1002/ekfac/config.json | Data | 2.6 KB | — |
| v2/f25_10d_sd1002/ekfac/metrics.json | Data | 35.0 KB | — |
| v2/f25_10d_sd1002/sketch/config.json | Data | 2.9 KB | — |
| v2/f25_10d_sd1002/sketch/metrics.json | Data | 95.7 KB | — |
| v2/f25_10d_sd1002/source/config.json | Data | 2.5 KB | — |
| v2/f25_10d_sd1002/source/metrics.json | Data | 7.7 KB | — |
| v2/f25_10d_sd1002/tracin/config.json | Data | 2.6 KB | — |
| v2/f25_10d_sd1002/tracin/metrics.json | Data | 21.4 KB | — |
| v2/f25_10d_sd1003/ekfac/config.json | Data | 2.6 KB | — |
| v2/f25_10d_sd1003/ekfac/metrics.json | Data | 34.8 KB | — |
| v2/f25_10d_sd1003/sketch/config.json | Data | 2.9 KB | — |
| v2/f25_10d_sd1003/sketch/metrics.json | Data | 93.9 KB | — |
| v2/f25_1d_sd1001/bm25/config.json | Data | 896 B | — |
| v2/f25_1d_sd1001/bm25/metrics.json | Data | 4.9 KB | — |
| v2/f25_1d_sd1001/ekfac/config.json | Data | 2.8 KB | — |
| v2/f25_1d_sd1001/ekfac/metrics.json | Data | 36.0 KB | — |
| v2/f25_1d_sd1001/embed/config.json | Data | 988 B | — |
| v2/f25_1d_sd1001/embed/metrics.json | Data | 5.4 KB | — |
| v2/f25_1d_sd1001/sketch/config.json | Data | 2.9 KB | — |
| v2/f25_1d_sd1001/sketch/metrics.json | Data | 91.7 KB | — |
| v2/f25_1d_sd1001/source/config.json | Data | 2.5 KB | — |
| v2/f25_1d_sd1001/source/metrics.json | Data | 7.6 KB | — |
| v2/f25_1d_sd1001/tracin/config.json | Data | 2.6 KB | — |
| v2/f25_1d_sd1001/tracin/metrics.json | Data | 21.2 KB | — |
| v2/f25_1d_sd1002/ekfac/config.json | Data | 2.8 KB | — |
| v2/f25_1d_sd1002/ekfac/metrics.json | Data | 34.4 KB | — |
| v2/f25_1d_sd1002/sketch/config.json | Data | 2.9 KB | — |
| v2/f25_1d_sd1002/sketch/metrics.json | Data | 87.4 KB | — |
| v2/f25_1d_sd1002/source/config.json | Data | 2.5 KB | — |
| v2/f25_1d_sd1002/source/metrics.json | Data | 7.6 KB | — |
| v2/f25_1d_sd1002/tracin/config.json | Data | 2.6 KB | — |
| v2/f25_1d_sd1002/tracin/metrics.json | Data | 21.1 KB | — |
| v2/f25_1d_sd1003/ekfac/config.json | Data | 2.8 KB | — |
| v2/f25_1d_sd1003/ekfac/metrics.json | Data | 34.7 KB | — |
| v2/f25_1d_sd1003/sketch/config.json | Data | 2.9 KB | — |
| v2/f25_1d_sd1003/sketch/metrics.json | Data | 88.4 KB | — |
| v2/f25_30d_sd1001/bm25/config.json | Data | 899 B | — |
| v2/f25_30d_sd1001/bm25/metrics.json | Data | 5.8 KB | — |
| v2/f25_30d_sd1001/ekfac/config.json | Data | 2.7 KB | — |
| v2/f25_30d_sd1001/ekfac/metrics.json | Data | 37.3 KB | — |
| v2/f25_30d_sd1001/embed/config.json | Data | 1.2 KB | — |
| v2/f25_30d_sd1001/embed/metrics.json | Data | 6.3 KB | — |
| v2/f25_30d_sd1001/sketch/config.json | Data | 2.6 KB | — |
| v2/f25_30d_sd1001/sketch/metrics.json | Data | 104.1 KB | — |
| v2/f25_30d_sd1001/source/config.json | Data | 2.9 KB | — |
| v2/f25_30d_sd1001/source/metrics.json | Data | 8.0 KB | — |
| v2/f25_30d_sd1001/tracin/config.json | Data | 2.6 KB | — |
| v2/f25_30d_sd1001/tracin/metrics.json | Data | 22.3 KB | — |
| v2/f25_30d_sd1002/ekfac/config.json | Data | 2.7 KB | — |
| v2/f25_30d_sd1002/ekfac/metrics.json | Data | 37.1 KB | — |
| v2/f25_30d_sd1002/sketch/config.json | Data | 2.9 KB | — |
| v2/f25_30d_sd1002/sketch/metrics.json | Data | 106.3 KB | — |
| v2/f25_30d_sd1002/source/config.json | Data | 2.6 KB | — |
| v2/f25_30d_sd1002/source/metrics.json | Data | 8.1 KB | — |
| v2/f25_30d_sd1002/tracin/config.json | Data | 2.7 KB | — |
| v2/f25_30d_sd1002/tracin/metrics.json | Data | 23.1 KB | — |
| v2/f25_30d_sd1003/ekfac/config.json | Data | 2.6 KB | — |
| v2/f25_30d_sd1003/ekfac/metrics.json | Data | 36.4 KB | — |
| v2/f25_30d_sd1003/sketch/config.json | Data | 2.6 KB | — |
| v2/f25_30d_sd1003/sketch/metrics.json | Data | 103.3 KB | — |
| v2/f25_50d_sd1001/bm25/config.json | Data | 1.1 KB | — |
| v2/f25_50d_sd1001/bm25/metrics.json | Data | 5.8 KB | — |
| v2/f25_50d_sd1001/ekfac/config.json | Data | 2.6 KB | — |
| v2/f25_50d_sd1001/ekfac/metrics.json | Data | 37.0 KB | — |
| v2/f25_50d_sd1001/embed/config.json | Data | 1.2 KB | — |
| v2/f25_50d_sd1001/embed/metrics.json | Data | 5.9 KB | — |
| v2/f25_50d_sd1001/sketch/config.json | Data | 2.9 KB | — |
| v2/f25_50d_sd1001/sketch/metrics.json | Data | 97.5 KB | — |
| v2/f25_50d_sd1001/source/config.json | Data | 2.9 KB | — |
| v2/f25_50d_sd1001/source/metrics.json | Data | 8.1 KB | — |
| v2/f25_50d_sd1001/tracin/config.json | Data | 2.6 KB | — |
| v2/f25_50d_sd1001/tracin/metrics.json | Data | 24.3 KB | — |
| v2/f25_50d_sd1002/ekfac/config.json | Data | 2.6 KB | — |
| v2/f25_50d_sd1002/ekfac/metrics.json | Data | 37.3 KB | — |
| v2/f25_50d_sd1002/sketch/config.json | Data | 2.9 KB | — |
| v2/f25_50d_sd1002/sketch/metrics.json | Data | 97.5 KB | — |
| v2/f25_50d_sd1002/source/config.json | Data | 2.6 KB | — |
| v2/f25_50d_sd1002/source/metrics.json | Data | 8.2 KB | — |
| v2/f25_50d_sd1002/tracin/config.json | Data | 2.7 KB | — |
| v2/f25_50d_sd1002/tracin/metrics.json | Data | 22.0 KB | — |
| v2/f25_50d_sd1003/ekfac/config.json | Data | 2.9 KB | — |
| v2/f25_50d_sd1003/ekfac/metrics.json | Data | 36.8 KB | — |
| v2/f25_50d_sd1003/sketch/config.json | Data | 2.6 KB | — |
| v2/f25_50d_sd1003/sketch/metrics.json | Data | 95.7 KB | — |
| v2/f25_5d_sd1001/bm25/config.json | Data | 896 B | — |
| v2/f25_5d_sd1001/bm25/metrics.json | Data | 5.5 KB | — |
| v2/f25_5d_sd1001/ekfac/config.json | Data | 2.8 KB | — |
| v2/f25_5d_sd1001/ekfac/metrics.json | Data | 34.7 KB | — |
| v2/f25_5d_sd1001/embed/config.json | Data | 988 B | — |
| v2/f25_5d_sd1001/embed/metrics.json | Data | 5.7 KB | — |
| v2/f25_5d_sd1001/sketch/config.json | Data | 2.9 KB | — |
| v2/f25_5d_sd1001/sketch/metrics.json | Data | 91.2 KB | — |
| v2/f25_5d_sd1001/source/config.json | Data | 2.5 KB | — |
| v2/f25_5d_sd1001/source/metrics.json | Data | 7.6 KB | — |
| v2/f25_5d_sd1001/tracin/config.json | Data | 2.6 KB | — |
| v2/f25_5d_sd1001/tracin/metrics.json | Data | 21.3 KB | — |
| v2/f25_5d_sd1002/ekfac/config.json | Data | 2.8 KB | — |
| v2/f25_5d_sd1002/ekfac/metrics.json | Data | 34.6 KB | — |
| v2/f25_5d_sd1002/sketch/config.json | Data | 2.9 KB | — |
| v2/f25_5d_sd1002/sketch/metrics.json | Data | 90.7 KB | — |
| v2/f25_5d_sd1002/source/config.json | Data | 2.5 KB | — |
| v2/f25_5d_sd1002/source/metrics.json | Data | 7.7 KB | — |
| v2/f25_5d_sd1002/tracin/config.json | Data | 2.6 KB | — |
| v2/f25_5d_sd1002/tracin/metrics.json | Data | 21.3 KB | — |
| v2/f25_5d_sd1003/ekfac/config.json | Data | 2.6 KB | — |
| v2/f25_5d_sd1003/ekfac/metrics.json | Data | 34.9 KB | — |
| v2/f25_5d_sd1003/sketch/config.json | Data | 2.9 KB | — |
| v2/f25_5d_sd1003/sketch/metrics.json | Data | 93.5 KB | — |
| v2/f50_10d_sd1001/bm25/config.json | Data | 899 B | — |
| v2/f50_10d_sd1001/bm25/metrics.json | Data | 10.2 KB | — |
| v2/f50_10d_sd1001/ekfac/config.json | Data | 2.7 KB | — |
| v2/f50_10d_sd1001/ekfac/metrics.json | Data | 67.0 KB | — |
| v2/f50_10d_sd1001/embed/config.json | Data | 1.2 KB | — |
| v2/f50_10d_sd1001/embed/metrics.json | Data | 10.8 KB | — |
| v2/f50_10d_sd1001/sketch/config.json | Data | 2.9 KB | — |
| v2/f50_10d_sd1001/sketch/metrics.json | Data | 181.2 KB | — |
| v2/f50_10d_sd1001/source/config.json | Data | 2.9 KB | — |
| v2/f50_10d_sd1001/source/metrics.json | Data | 14.2 KB | — |
| v2/f50_10d_sd1001/tracin/config.json | Data | 2.6 KB | — |
| v2/f50_10d_sd1001/tracin/metrics.json | Data | 40.5 KB | — |
| v2/f50_10d_sd1002/ekfac/config.json | Data | 2.7 KB | — |
| v2/f50_10d_sd1002/ekfac/metrics.json | Data | 67.0 KB | — |
| v2/f50_10d_sd1002/sketch/config.json | Data | 2.9 KB | — |
| v2/f50_10d_sd1002/sketch/metrics.json | Data | 184.9 KB | — |
| v2/f50_10d_sd1002/source/config.json | Data | 2.9 KB | — |
| v2/f50_10d_sd1002/source/metrics.json | Data | 14.3 KB | — |
| v2/f50_10d_sd1002/tracin/config.json | Data | 2.6 KB | — |
| v2/f50_10d_sd1002/tracin/metrics.json | Data | 40.5 KB | — |
| v2/f50_10d_sd1003/ekfac/config.json | Data | 2.9 KB | — |
| v2/f50_10d_sd1003/ekfac/metrics.json | Data | 67.1 KB | — |
| v2/f50_10d_sd1003/sketch/config.json | Data | 2.9 KB | — |
| v2/f50_10d_sd1003/sketch/metrics.json | Data | 189.2 KB | — |
| v2/f50_1d_sd1001/bm25/config.json | Data | 896 B | — |
| v2/f50_1d_sd1001/bm25/metrics.json | Data | 9.0 KB | — |
| v2/f50_1d_sd1001/ekfac/config.json | Data | 2.8 KB | — |
| v2/f50_1d_sd1001/ekfac/metrics.json | Data | 66.0 KB | — |
| v2/f50_1d_sd1001/embed/config.json | Data | 988 B | — |
| v2/f50_1d_sd1001/embed/metrics.json | Data | 10.2 KB | — |
| v2/f50_1d_sd1001/sketch/config.json | Data | 2.9 KB | — |
| v2/f50_1d_sd1001/sketch/metrics.json | Data | 170.2 KB | — |
| v2/f50_1d_sd1001/source/config.json | Data | 2.5 KB | — |
| v2/f50_1d_sd1001/source/metrics.json | Data | 14.0 KB | — |
| v2/f50_1d_sd1001/tracin/config.json | Data | 2.6 KB | — |
| v2/f50_1d_sd1001/tracin/metrics.json | Data | 40.2 KB | — |
| v2/f50_1d_sd1002/ekfac/config.json | Data | 2.6 KB | — |
| v2/f50_1d_sd1002/ekfac/metrics.json | Data | 66.0 KB | — |
| v2/f50_1d_sd1002/sketch/config.json | Data | 2.9 KB | — |
| v2/f50_1d_sd1002/sketch/metrics.json | Data | 173.8 KB | — |
| v2/f50_1d_sd1002/source/config.json | Data | 2.5 KB | — |
| v2/f50_1d_sd1002/source/metrics.json | Data | 14.1 KB | — |
| v2/f50_1d_sd1002/tracin/config.json | Data | 2.6 KB | — |
| v2/f50_1d_sd1002/tracin/metrics.json | Data | 40.4 KB | — |
| v2/f50_1d_sd1003/ekfac/config.json | Data | 2.6 KB | — |
| v2/f50_1d_sd1003/ekfac/metrics.json | Data | 65.9 KB | — |
| v2/f50_1d_sd1003/sketch/config.json | Data | 2.9 KB | — |
| v2/f50_1d_sd1003/sketch/metrics.json | Data | 169.9 KB | — |
| README.md | Documentation | 9.7 KB | — |
| f100_10d_sd1001/bm25/scores.bm25_prompt.npz | Other | 64.5 KB | 5d6f866d0a20 |
| f100_10d_sd1001/bm25/scores.npz | Other | 64.6 KB | 2a4cc97bc6a3 |
| f100_10d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 1.9 MB | 652931eb2ee8 |
| f100_10d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 1.9 MB | 459376c7f576 |
| f100_10d_sd1001/ekfac_margin/scores.npz | Other | 1.9 MB | 8819c2ff0372 |
| f100_10d_sd1001/embed/scores.embed_base.npz | Other | 1.8 MB | 72afbfaa9c70 |
| f100_10d_sd1001/embed/scores.npz | Other | 1.6 MB | 4896a9febeb0 |
| f100_10d_sd1001/logra_margin/scores.npz | Other | 1.9 MB | 714ba3d0fb67 |
| f100_10d_sd1001/source_margin/scores.npz | Other | 1.8 MB | 1bc0f3b57b72 |
| f100_10d_sd1001/tracin_margin/scores.npz | Other | 1.8 MB | ba153a0c90da |
| f100_10d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 1.8 MB | 0a267c51452d |
| f100_10d_sd1001/trak/scores.npz | Other | 1.9 MB | 3a5f47dcccb8 |
| f100_10d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 1.9 MB | 07922d0a5e0c |
| f100_10d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 1.9 MB | 8186ec1fcb8e |
| f100_10d_sd1002/ekfac_margin/scores.npz | Other | 1.9 MB | 9b69372783fb |
| f100_10d_sd1002/logra_margin/scores.npz | Other | 1.9 MB | a77290ca5548 |
| f100_10d_sd1002/source_margin/scores.npz | Other | 1.8 MB | 16243659756f |
| f100_10d_sd1002/tracin_margin/scores.npz | Other | 1.8 MB | 680a2b8168ad |
| f100_10d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 1.8 MB | 16d7b33c795c |
| f100_10d_sd1002/trak/scores.npz | Other | 1.9 MB | 0a101939034f |
| f100_10d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 1.9 MB | ef90664e1519 |
| f100_10d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 1.9 MB | 463b323e6b5c |
| f100_10d_sd1003/ekfac_margin/scores.npz | Other | 1.9 MB | f3d70ede26a4 |
| f100_10d_sd1003/logra_margin/scores.npz | Other | 1.9 MB | ff3c73112e40 |
| f100_10d_sd1003/trak/scores.npz | Other | 1.9 MB | 534e34cbed73 |
| f100_10d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 1.9 MB | 65af47b6e52b |
| f100_10d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 1.9 MB | df643feeb293 |
| f100_10d_sd1004/ekfac_margin/scores.npz | Other | 1.9 MB | 45c4b3a2fb3c |
| f100_10d_sd1004/logra_margin/scores.npz | Other | 1.9 MB | 9931c47c582a |
| f100_10d_sd1004/trak/scores.npz | Other | 1.9 MB | 8ab2e3de63d1 |
| f100_1d_sd1001/bm25/scores.bm25_prompt.npz | Other | 8.4 KB | 745570045223 |
| f100_1d_sd1001/bm25/scores.npz | Other | 8.4 KB | 923139e1f6c1 |
| f100_1d_sd1001/ekfac/scores.grad_dot.npz | Other | 196.2 KB | 27bb099ba713 |
| f100_1d_sd1001/ekfac/scores.grad_sim.npz | Other | 188.7 KB | a19a9d853cee |
| f100_1d_sd1001/ekfac/scores.npz | Other | 195.7 KB | a01a7ef43d3a |
| f100_1d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 188.9 KB | ea402ae54727 |
| f100_1d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 189.0 KB | 797c2b7ee735 |
| f100_1d_sd1001/ekfac_margin/scores.npz | Other | 189.8 KB | 86ce7af5ee95 |
| f100_1d_sd1001/embed/scores.embed_base.npz | Other | 186.2 KB | ea97e16e6661 |
| f100_1d_sd1001/embed/scores.npz | Other | 167.8 KB | d54a163d94fe |
| f100_1d_sd1001/logra/scores.npz | Other | 196.4 KB | 7b5a7eea8770 |
| f100_1d_sd1001/logra_margin/scores.npz | Other | 189.0 KB | 7f6ed86156ee |
| f100_1d_sd1001/source_margin/scores.npz | Other | 183.1 KB | 2bf69e21529f |
| f100_1d_sd1001/tracin_margin/scores.npz | Other | 184.0 KB | 25f0ff6a2521 |
| f100_1d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 183.6 KB | cca039d3dfc2 |
| f100_1d_sd1001/trak/scores.npz | Other | 189.3 KB | d0c7a8e02442 |
| f100_1d_sd1002/ekfac/scores.grad_dot.npz | Other | 195.5 KB | 6b1e1cf68d6f |
| f100_1d_sd1002/ekfac/scores.grad_sim.npz | Other | 188.5 KB | 3c4b207a4688 |
| f100_1d_sd1002/ekfac/scores.npz | Other | 195.9 KB | b71a21734b80 |
| f100_1d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 189.3 KB | f162aa19ca09 |
| f100_1d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 189.1 KB | 33ca838faef0 |
| f100_1d_sd1002/ekfac_margin/scores.npz | Other | 188.9 KB | a5796b831916 |
| f100_1d_sd1002/logra/scores.npz | Other | 196.0 KB | b2529ed6814d |
| f100_1d_sd1002/logra_margin/scores.npz | Other | 189.1 KB | b10921e4d99f |
| f100_1d_sd1002/source_margin/scores.npz | Other | 185.0 KB | b082c1afd820 |
| f100_1d_sd1002/tracin_margin/scores.npz | Other | 185.6 KB | b4c91f41e0bf |
| f100_1d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 184.9 KB | 9e4dfde0ee2f |
| f100_1d_sd1002/trak/scores.npz | Other | 189.4 KB | 313a3167f0d3 |
| f100_1d_sd1003/ekfac/scores.grad_dot.npz | Other | 197.1 KB | 93df262ecea2 |
| f100_1d_sd1003/ekfac/scores.grad_sim.npz | Other | 189.0 KB | f674b9fd0fc8 |
| f100_1d_sd1003/ekfac/scores.npz | Other | 197.3 KB | e2fd9c58a789 |
| f100_1d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 189.4 KB | 48aa8efa2af0 |
| f100_1d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 189.2 KB | 3fc89204f6b9 |
| f100_1d_sd1003/ekfac_margin/scores.npz | Other | 189.7 KB | ded975c0927d |
| f100_1d_sd1003/logra/scores.npz | Other | 197.0 KB | 2080b71129b3 |
| f100_1d_sd1003/logra_margin/scores.npz | Other | 188.8 KB | 579ecc57ac2e |
| f100_1d_sd1003/trak/scores.npz | Other | 189.5 KB | 36e29d93624e |
| f100_1d_sd1004/ekfac/scores.grad_dot.npz | Other | 196.4 KB | c5c65900cb75 |
| f100_1d_sd1004/ekfac/scores.grad_sim.npz | Other | 189.1 KB | 1d968adabd05 |
| f100_1d_sd1004/ekfac/scores.npz | Other | 196.5 KB | 8a8a4dc1ebbb |
| f100_1d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 189.4 KB | 44af2a21c69a |
| f100_1d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 189.2 KB | 01d2933ba03c |
| f100_1d_sd1004/ekfac_margin/scores.npz | Other | 189.6 KB | 8e07b03cc85b |
| f100_1d_sd1004/logra/scores.npz | Other | 196.5 KB | 1e123d8ff153 |
| f100_1d_sd1004/logra_margin/scores.npz | Other | 188.8 KB | 00ecbe6753f9 |
| f100_1d_sd1004/trak/scores.npz | Other | 189.4 KB | f3ae2b6da54a |
| f100_20d_sd1001/bm25/scores.bm25_prompt.npz | Other | 128.2 KB | acac7c0b83b0 |
| f100_20d_sd1001/bm25/scores.npz | Other | 128.3 KB | d869d80ff81b |
| f100_20d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 3.7 MB | 012a41b400a8 |
| f100_20d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 3.7 MB | 9d4b4b3ce727 |
| f100_20d_sd1001/ekfac_margin/scores.npz | Other | 3.7 MB | c25843a144d2 |
| f100_20d_sd1001/embed/scores.embed_base.npz | Other | 3.6 MB | ebc064fc6c1f |
| f100_20d_sd1001/embed/scores.npz | Other | 3.3 MB | 8e93aa02d3df |
| f100_20d_sd1001/logra_margin/scores.npz | Other | 3.7 MB | 21a829f5bc07 |
| f100_20d_sd1001/source_margin/scores.npz | Other | 3.6 MB | bfe72134bc7c |
| f100_20d_sd1001/tracin_margin/scores.npz | Other | 3.6 MB | ed03dcd6dcc5 |
| f100_20d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 3.6 MB | e3cd764a051e |
| f100_20d_sd1001/trak/scores.npz | Other | 1.9 MB | 717ac5848710 |
| f100_20d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 3.7 MB | 0e99762b0c85 |
| f100_20d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 3.7 MB | f356f5ed55a9 |
| f100_20d_sd1002/ekfac_margin/scores.npz | Other | 3.7 MB | c70b6bab1d71 |
| f100_20d_sd1002/logra_margin/scores.npz | Other | 3.7 MB | 966fc205e2ca |
| f100_20d_sd1002/source_margin/scores.npz | Other | 3.5 MB | 5aa5dffd35f8 |
| f100_20d_sd1002/tracin_margin/scores.npz | Other | 3.6 MB | f1a485c569ee |
| f100_20d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 3.6 MB | 88591446fd81 |
| f100_20d_sd1002/trak/scores.npz | Other | 3.7 MB | 810cfe82005f |
| f100_20d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 3.7 MB | d9924e77338e |
| f100_20d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 3.7 MB | 6eb9741768d1 |
| f100_20d_sd1003/ekfac_margin/scores.npz | Other | 3.7 MB | 3860a7314c38 |
| f100_20d_sd1003/logra_margin/scores.npz | Other | 3.7 MB | b334abfd8116 |
| f100_20d_sd1003/trak/scores.npz | Other | 1.9 MB | 8c8227476fbf |
| f100_20d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 3.7 MB | 644e8330cbf2 |
| f100_20d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 3.7 MB | 70b4251df561 |
| f100_20d_sd1004/ekfac_margin/scores.npz | Other | 3.7 MB | 0a698ae0b1cb |
| f100_20d_sd1004/logra_margin/scores.npz | Other | 3.7 MB | e64ffc1fb78b |
| f100_20d_sd1004/trak/scores.npz | Other | 1.9 MB | c80adce74b94 |
| f100_30d_sd1001/bm25/scores.bm25_prompt.npz | Other | 202.6 KB | e53d2c83fb53 |
| f100_30d_sd1001/bm25/scores.npz | Other | 202.7 KB | 541d822f8f77 |
| f100_30d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 5.6 MB | bcfac958e2a5 |
| f100_30d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 5.6 MB | 1ca8ef3f939f |
| f100_30d_sd1001/ekfac_margin/scores.npz | Other | 5.6 MB | 1744aca9bdde |
| f100_30d_sd1001/embed/scores.embed_base.npz | Other | 5.3 MB | 10426b33f1fb |
| f100_30d_sd1001/embed/scores.npz | Other | 4.9 MB | bfd9146915e5 |
| f100_30d_sd1001/logra_margin/scores.npz | Other | 5.6 MB | be42f0dd7ac3 |
| f100_30d_sd1001/source_margin/scores.npz | Other | 5.3 MB | 9230ff200a6b |
| f100_30d_sd1001/tracin_margin/scores.npz | Other | 5.4 MB | 0e67ad266797 |
| f100_30d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 5.3 MB | 7d8cebe7af8f |
| f100_30d_sd1001/trak/scores.npz | Other | 2.8 MB | a1c4b9655c6c |
| f100_30d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 5.6 MB | 48c13b388baa |
| f100_30d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 5.6 MB | 1976071bb8eb |
| f100_30d_sd1002/ekfac_margin/scores.npz | Other | 5.6 MB | e325fddc2f41 |
| f100_30d_sd1002/logra_margin/scores.npz | Other | 5.6 MB | 88ef3b9e5f0f |
| f100_30d_sd1002/source_margin/scores.npz | Other | 5.4 MB | 1b03f20a5c54 |
| f100_30d_sd1002/tracin_margin/scores.npz | Other | 5.4 MB | 63133f3a804d |
| f100_30d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 5.4 MB | 12ae31f5cb77 |
| f100_30d_sd1002/trak/scores.npz | Other | 2.8 MB | 442db70ce65a |
| f100_30d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 5.5 MB | 5f705413b4b4 |
| f100_30d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 5.5 MB | 24ced1c671b3 |
| f100_30d_sd1003/ekfac_margin/scores.npz | Other | 5.6 MB | a986c06dba92 |
| f100_30d_sd1003/logra_margin/scores.npz | Other | 5.6 MB | 6aaaf2372f75 |
| f100_30d_sd1003/trak/scores.npz | Other | 2.8 MB | 01f6b82e4281 |
| f100_30d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 5.5 MB | 3d90882025a7 |
| f100_30d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 5.5 MB | 4dd73bfdf0ef |
| f100_30d_sd1004/ekfac_margin/scores.npz | Other | 5.6 MB | d84106fbbd97 |
| f100_30d_sd1004/logra_margin/scores.npz | Other | 5.6 MB | 4aa40e41dd1b |
| f100_30d_sd1004/trak/scores.npz | Other | 2.8 MB | dafb12bbdfdc |
| f100_40d_sd1001/bm25/scores.bm25_prompt.npz | Other | 268.6 KB | 72c303edc986 |
| f100_40d_sd1001/bm25/scores.npz | Other | 268.8 KB | 5162ec700654 |
| f100_40d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 7.2 MB | e5e5e5ad0cb5 |
| f100_40d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 7.2 MB | 83139c9c7321 |
| f100_40d_sd1001/ekfac_margin/scores.npz | Other | 7.3 MB | b92b949e9dd0 |
| f100_40d_sd1001/embed/scores.embed_base.npz | Other | 7.1 MB | 85c8b40e7964 |
| f100_40d_sd1001/embed/scores.npz | Other | 6.5 MB | 7995c7afc1bb |
| f100_40d_sd1001/logra/scores.npz | Other | 3.9 MB | 9f1347c73b2a |
| f100_40d_sd1001/logra_margin/scores.npz | Other | 7.4 MB | c0d151449ffc |
| f100_40d_sd1001/source_margin/scores.npz | Other | 7.0 MB | 1b62e5917299 |
| f100_40d_sd1001/tracin_margin/scores.npz | Other | 7.2 MB | 420f6fe1bca6 |
| f100_40d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 7.1 MB | 9fc07b710f5b |
| f100_40d_sd1001/trak/scores.npz | Other | 3.7 MB | 06bbad096c90 |
| f100_40d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 7.4 MB | f9740ca7e384 |
| f100_40d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 7.4 MB | 98c810d9edca |
| f100_40d_sd1002/ekfac_margin/scores.npz | Other | 7.3 MB | bac009f1fa47 |
| f100_40d_sd1002/logra/scores.npz | Other | 3.9 MB | 8c4cf7704b42 |
| f100_40d_sd1002/logra_margin/scores.npz | Other | 7.5 MB | 2714e51c0412 |
| f100_40d_sd1002/tracin_margin/scores.npz | Other | 7.2 MB | c3a840101092 |
| f100_40d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 7.2 MB | 56c0ddd05be1 |
| f100_40d_sd1002/trak/scores.npz | Other | 3.7 MB | 17bc0239f11f |
| f100_40d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 7.4 MB | 94d932372f8f |
| f100_40d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 7.4 MB | d4337a806bc6 |
| f100_40d_sd1003/ekfac_margin/scores.npz | Other | 7.4 MB | fe73d5935464 |
| f100_40d_sd1003/logra/scores.npz | Other | 3.9 MB | 5203de025be2 |
| f100_40d_sd1003/logra_margin/scores.npz | Other | 7.4 MB | 8d4c6b4a5383 |
| f100_40d_sd1003/trak/scores.npz | Other | 3.7 MB | 08cbdbe24226 |
| f100_40d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 7.2 MB | 2dbeeec6e2aa |
| f100_40d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 7.0 MB | 1c9d3d1f4bc0 |
| f100_40d_sd1004/ekfac_margin/scores.npz | Other | 7.3 MB | 4f40bfbf3c40 |
| f100_40d_sd1004/logra/scores.npz | Other | 3.9 MB | c3965399618d |
| f100_40d_sd1004/logra_margin/scores.npz | Other | 7.5 MB | 49b5fa5d41ef |
| f100_40d_sd1004/trak/scores.npz | Other | 3.7 MB | c1ac801aa849 |
| f100_50d_sd1001/bm25/scores.bm25_prompt.npz | Other | 418.5 KB | fcdd9caf7897 |
| f100_50d_sd1001/bm25/scores.npz | Other | 418.9 KB | 6a2f4ab3ac73 |
| f100_50d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 9.3 MB | f356e3544e66 |
| f100_50d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 9.3 MB | 465d81ef0cc9 |
| f100_50d_sd1001/ekfac_margin/scores.npz | Other | 9.3 MB | f336aba3640b |
| f100_50d_sd1001/embed/scores.embed_base.npz | Other | 8.9 MB | fa3246a5bde3 |
| f100_50d_sd1001/embed/scores.npz | Other | 8.2 MB | adcc66e51059 |
| f100_50d_sd1001/logra/scores.npz | Other | 9.7 MB | 5ad5f272df7c |
| f100_50d_sd1001/logra_margin/scores.npz | Other | 9.3 MB | 1cfff2b069f4 |
| f100_50d_sd1001/trak/scores.npz | Other | 4.6 MB | d8d3f6c6b911 |
| f100_50d_sd1002/logra/scores.npz | Other | 9.6 MB | d6037acaa5ff |
| f100_50d_sd1002/logra_margin/scores.npz | Other | 9.3 MB | c5a51a9cebc4 |
| f100_50d_sd1002/tracin_margin/scores.npz | Other | 8.9 MB | 8af040c59f7d |
| f100_50d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 8.9 MB | 64981bac39ad |
| f100_50d_sd1002/trak/scores.npz | Other | 4.6 MB | be582116bae8 |
| f100_50d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 9.3 MB | b9a0b8490322 |
| f100_50d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 9.3 MB | a56ab40d4247 |
| f100_50d_sd1003/ekfac_margin/scores.npz | Other | 9.3 MB | 0a58feabceb7 |
| f100_50d_sd1003/logra/scores.npz | Other | 4.8 MB | e11435b22cca |
| f100_50d_sd1003/logra_margin/scores.npz | Other | 9.3 MB | 05a460d78add |
| f100_50d_sd1003/trak/scores.npz | Other | 4.6 MB | e85d074f418a |
| f100_50d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 9.2 MB | 3d5e8dc454f1 |
| f100_50d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 9.2 MB | db6768506475 |
| f100_50d_sd1004/ekfac_margin/scores.npz | Other | 9.3 MB | 07d7f60163da |
| f100_50d_sd1004/logra/scores.npz | Other | 9.6 MB | f0b0ae5a93cf |
| f100_50d_sd1004/logra_margin/scores.npz | Other | 9.3 MB | 5bf22f217243 |
| f100_50d_sd1004/trak/scores.npz | Other | 4.6 MB | 391eb603de86 |
| f100_5d_sd1001/bm25/scores.bm25_prompt.npz | Other | 32.8 KB | f13e20f26827 |
| f100_5d_sd1001/bm25/scores.npz | Other | 32.8 KB | a80bf14aa5eb |
| f100_5d_sd1001/ekfac/scores.grad_dot.npz | Other | 960.5 KB | 9941fa6bdc33 |
| f100_5d_sd1001/ekfac/scores.grad_sim.npz | Other | 929.5 KB | 018a18e631c7 |
| f100_5d_sd1001/ekfac/scores.npz | Other | 960.9 KB | 2528ed0b2a84 |
| f100_5d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 934.5 KB | 6acfe64197c9 |
| f100_5d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 934.1 KB | 51ca4f214dbc |
| f100_5d_sd1001/ekfac_margin/scores.npz | Other | 935.5 KB | 56b9ca0b6490 |
| f100_5d_sd1001/embed/scores.embed_base.npz | Other | 906.2 KB | 56614c082ce0 |
| f100_5d_sd1001/embed/scores.npz | Other | 823.0 KB | 5f87af68a204 |
| f100_5d_sd1001/logra/scores.npz | Other | 961.2 KB | 1051d2bef1fe |
| f100_5d_sd1001/logra_margin/scores.npz | Other | 933.9 KB | c6d01cc2a394 |
| f100_5d_sd1001/source_margin/scores.npz | Other | 931.3 KB | 27cf1e8d7512 |
| f100_5d_sd1001/tracin_margin/scores.npz | Other | 933.8 KB | 4ad33fbd8796 |
| f100_5d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 928.5 KB | 648da247b8cc |
| f100_5d_sd1001/trak/scores.npz | Other | 933.5 KB | 5d6f1962cd27 |
| f100_5d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 931.9 KB | b8218b50a175 |
| f100_5d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 923.2 KB | 6ac9134ecc66 |
| f100_5d_sd1002/ekfac_margin/scores.npz | Other | 933.6 KB | e18f670d3a79 |
| f100_5d_sd1002/logra/scores.npz | Other | 957.7 KB | 6ce697f9626c |
| f100_5d_sd1002/logra_margin/scores.npz | Other | 932.5 KB | 72d2dea4b0e8 |
| f100_5d_sd1002/source_margin/scores.npz | Other | 898.1 KB | 5607ae457d30 |
| f100_5d_sd1002/tracin_margin/scores.npz | Other | 899.5 KB | cae5711fe7bc |
| f100_5d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 901.7 KB | 1140fba2dfe1 |
| f100_5d_sd1002/trak/scores.npz | Other | 932.5 KB | 5cf6708dc479 |
| f100_5d_sd1003/ekfac/scores.grad_dot.npz | Other | 961.5 KB | f33c27c1079e |
| f100_5d_sd1003/ekfac/scores.grad_sim.npz | Other | 927.9 KB | 43401fef6df1 |
| f100_5d_sd1003/ekfac/scores.npz | Other | 961.5 KB | 9ad1807adaef |
| f100_5d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 935.7 KB | 00d6a3e81d26 |
| f100_5d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 931.0 KB | fa26de48a26e |
| f100_5d_sd1003/ekfac_margin/scores.npz | Other | 936.2 KB | 54afcefd0029 |
| f100_5d_sd1003/logra/scores.npz | Other | 961.4 KB | 51a6c5e3aab8 |
| f100_5d_sd1003/logra_margin/scores.npz | Other | 933.6 KB | 0dbeed90b406 |
| f100_5d_sd1003/trak/scores.npz | Other | 933.8 KB | 07b96b4d1349 |
| f100_5d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 937.2 KB | e1527141ca0a |
| f100_5d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 932.1 KB | ad3380726fb0 |
| f100_5d_sd1004/ekfac_margin/scores.npz | Other | 941.3 KB | 663fdea6db3e |
| f100_5d_sd1004/logra/scores.npz | Other | 958.4 KB | e37ca4609590 |
| f100_5d_sd1004/logra_margin/scores.npz | Other | 932.3 KB | 8cd24ca21ac9 |
| f100_5d_sd1004/trak/scores.npz | Other | 933.3 KB | 2d04d623209e |
| f25_10d_sd1001/bm25/scores.bm25_prompt.npz | Other | 8.9 KB | 5ed10d99cc80 |
| f25_10d_sd1001/bm25/scores.npz | Other | 8.9 KB | adc8ffbba5de |
| f25_10d_sd1001/ekfac/scores.grad_dot.npz | Other | 123.3 KB | 0631b23074ad |
| f25_10d_sd1001/ekfac/scores.grad_sim.npz | Other | 118.6 KB | 8f13df6cc8e0 |
| f25_10d_sd1001/ekfac/scores.npz | Other | 123.3 KB | c8798cb9514f |
| f25_10d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 118.8 KB | c0c289f1c40a |
| f25_10d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 118.5 KB | 9c7749059965 |
| f25_10d_sd1001/ekfac_margin/scores.npz | Other | 119.0 KB | 20378a2d7b3c |
| f25_10d_sd1001/embed/scores.embed_base.npz | Other | 115.7 KB | 6b4ca463a573 |
| f25_10d_sd1001/embed/scores.npz | Other | 105.6 KB | 529fd7af41a3 |
| f25_10d_sd1001/logra/scores.npz | Other | 123.4 KB | 9e92ad35f824 |
| f25_10d_sd1001/logra_margin/scores.npz | Other | 118.7 KB | 47e82792e0f3 |
| f25_10d_sd1001/source_margin/scores.npz | Other | 114.1 KB | b6f5c3ae29b0 |
| f25_10d_sd1001/tracin_margin/scores.npz | Other | 114.3 KB | 1050cef5feda |
| f25_10d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 114.2 KB | 8526ce1e1bce |
| f25_10d_sd1001/trak/scores.npz | Other | 119.1 KB | cce2326f8d23 |
| f25_10d_sd1002/ekfac/scores.grad_dot.npz | Other | 123.3 KB | cf4159c05c18 |
| f25_10d_sd1002/ekfac/scores.grad_sim.npz | Other | 118.3 KB | 37ac82e3be08 |
| f25_10d_sd1002/ekfac/scores.npz | Other | 123.2 KB | c588e2d0b6b5 |
| f25_10d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 118.2 KB | 4ee6f29c01ac |
| f25_10d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 117.8 KB | c1162d4b56a1 |
| f25_10d_sd1002/ekfac_margin/scores.npz | Other | 118.6 KB | 51d4753105ad |
| f25_10d_sd1002/logra/scores.npz | Other | 123.4 KB | 7475c6dea32d |
| f25_10d_sd1002/logra_margin/scores.npz | Other | 118.4 KB | 7f5ae984d54d |
| f25_10d_sd1002/source_margin/scores.npz | Other | 113.5 KB | 31f1d6b2fb40 |
| f25_10d_sd1002/tracin_margin/scores.npz | Other | 113.6 KB | f46ca00ec911 |
| f25_10d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 110.7 KB | 784a5c1021c3 |
| f25_10d_sd1002/trak/scores.npz | Other | 118.9 KB | 7a1857d252cb |
| f25_10d_sd1003/ekfac/scores.grad_dot.npz | Other | 123.5 KB | 907b38666222 |
| f25_10d_sd1003/ekfac/scores.grad_sim.npz | Other | 118.8 KB | 5521083c05ca |
| f25_10d_sd1003/ekfac/scores.npz | Other | 123.5 KB | 19983450222e |
| f25_10d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 118.7 KB | f7d8391577af |
| f25_10d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 118.5 KB | ff1a7655580b |
| f25_10d_sd1003/ekfac_margin/scores.npz | Other | 119.0 KB | 2bf89338a518 |
| f25_10d_sd1003/logra/scores.npz | Other | 123.7 KB | 6bb6f2dcf8c9 |
| f25_10d_sd1003/logra_margin/scores.npz | Other | 118.7 KB | e30787eb43d7 |
| f25_10d_sd1003/trak/scores.npz | Other | 119.1 KB | feaa0269070a |
| f25_10d_sd1004/ekfac/scores.grad_dot.npz | Other | 123.7 KB | b28b9c18a362 |
| f25_10d_sd1004/ekfac/scores.grad_sim.npz | Other | 118.6 KB | 01b0d3ea7301 |
| f25_10d_sd1004/ekfac/scores.npz | Other | 123.7 KB | 5ed4fbd93833 |
| f25_10d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 119.6 KB | 87e7ea010b3f |
| f25_10d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 119.4 KB | 632bc0d7d896 |
| f25_10d_sd1004/ekfac_margin/scores.npz | Other | 119.2 KB | da5a33fd7800 |
| f25_10d_sd1004/logra/scores.npz | Other | 123.7 KB | 6ec22d45053b |
| f25_10d_sd1004/logra_margin/scores.npz | Other | 118.8 KB | a2fc01d86a9f |
| f25_10d_sd1004/trak/scores.npz | Other | 119.1 KB | d9bab96bafb3 |
| f25_1d_sd1001/bm25/scores.bm25_prompt.npz | Other | 2.8 KB | 77c881283a77 |
| f25_1d_sd1001/bm25/scores.npz | Other | 2.8 KB | 7d745437ad37 |
| f25_1d_sd1001/ekfac/scores.grad_dot.npz | Other | 13.3 KB | a576618018fb |
| f25_1d_sd1001/ekfac/scores.grad_sim.npz | Other | 13.3 KB | a5d442a6b180 |
| f25_1d_sd1001/ekfac/scores.npz | Other | 13.3 KB | d958e5bf6efe |
| f25_1d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 13.5 KB | c9483e6f8657 |
| f25_1d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 13.4 KB | ed7914d1610d |
| f25_1d_sd1001/ekfac_margin/scores.npz | Other | 13.5 KB | 511d68dbf403 |
| f25_1d_sd1001/embed/scores.embed_base.npz | Other | 13.6 KB | 5fcf61ac1a8c |
| f25_1d_sd1001/embed/scores.npz | Other | 12.6 KB | 3943dea2c5e0 |
| f25_1d_sd1001/logra/scores.npz | Other | 13.5 KB | d581c71b5dc3 |
| f25_1d_sd1001/logra_margin/scores.npz | Other | 13.4 KB | b17feb3b3f94 |
| f25_1d_sd1001/source_margin/scores.npz | Other | 13.6 KB | 0c834600af6a |
| f25_1d_sd1001/tracin_margin/scores.npz | Other | 13.5 KB | 4c2c44d4327a |
| f25_1d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 13.6 KB | aa6ee95cce2a |
| f25_1d_sd1001/trak/scores.npz | Other | 13.5 KB | 0c5cdf7b2317 |
| f25_1d_sd1002/ekfac/scores.grad_dot.npz | Other | 13.9 KB | e2483dd74eb1 |
| f25_1d_sd1002/ekfac/scores.grad_sim.npz | Other | 13.4 KB | cbbfe5466a14 |
| f25_1d_sd1002/ekfac/scores.npz | Other | 13.9 KB | d1058e5563dd |
| f25_1d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 13.4 KB | 198d1b6dad47 |
| f25_1d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 13.4 KB | ea2ca176132a |
| f25_1d_sd1002/ekfac_margin/scores.npz | Other | 13.5 KB | b9e41a961ac2 |
| f25_1d_sd1002/logra/scores.npz | Other | 13.9 KB | 898cb0f14da1 |
| f25_1d_sd1002/logra_margin/scores.npz | Other | 13.4 KB | 4d564c0332ec |
| f25_1d_sd1002/source_margin/scores.npz | Other | 13.8 KB | 6f1d4b79a929 |
| f25_1d_sd1002/tracin_margin/scores.npz | Other | 13.8 KB | f83116adf93f |
| f25_1d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 13.8 KB | c07e705771c3 |
| f25_1d_sd1002/trak/scores.npz | Other | 13.5 KB | 087642fdd74b |
| f25_1d_sd1003/ekfac/scores.grad_dot.npz | Other | 14.0 KB | a2123985df0c |
| f25_1d_sd1003/ekfac/scores.grad_sim.npz | Other | 13.5 KB | 59a1a12348a3 |
| f25_1d_sd1003/ekfac/scores.npz | Other | 14.0 KB | 97e67a892f5d |
| f25_1d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 13.5 KB | 65d8257e00f5 |
| f25_1d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 13.5 KB | 5d184ca1c89b |
| f25_1d_sd1003/ekfac_margin/scores.npz | Other | 13.5 KB | 6a29df6c564f |
| f25_1d_sd1003/logra/scores.npz | Other | 14.0 KB | d8a746ee20d9 |
| f25_1d_sd1003/logra_margin/scores.npz | Other | 13.4 KB | 0ad133974332 |
| f25_1d_sd1003/trak/scores.npz | Other | 13.5 KB | d065110aaa6b |
| f25_1d_sd1004/ekfac/scores.grad_dot.npz | Other | 13.9 KB | 625f1767cee0 |
| f25_1d_sd1004/ekfac/scores.grad_sim.npz | Other | 13.3 KB | 64215f505c75 |
| f25_1d_sd1004/ekfac/scores.npz | Other | 13.9 KB | e7a3be5711d3 |
| f25_1d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 13.5 KB | edf229b204f6 |
| f25_1d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 13.4 KB | 24a1287a3ddf |
| f25_1d_sd1004/ekfac_margin/scores.npz | Other | 13.6 KB | f853b7086298 |
| f25_1d_sd1004/logra/scores.npz | Other | 14.0 KB | c49e55791d31 |
| f25_1d_sd1004/logra_margin/scores.npz | Other | 13.5 KB | c7573901573b |
| f25_1d_sd1004/trak/scores.npz | Other | 13.5 KB | 02f4c6bc9141 |
| f25_20d_sd1001/bm25/scores.bm25_prompt.npz | Other | 15.5 KB | b6b290754030 |
| f25_20d_sd1001/bm25/scores.npz | Other | 15.5 KB | 3e0cf5e7cc3f |
| f25_20d_sd1001/ekfac/scores.grad_dot.npz | Other | 242.8 KB | 945840bcd7d7 |
| f25_20d_sd1001/ekfac/scores.grad_sim.npz | Other | 235.5 KB | 9a88881c3f54 |
| f25_20d_sd1001/ekfac/scores.npz | Other | 243.3 KB | 922a8cb85e8f |
| f25_20d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 236.1 KB | 144a8411cbba |
| f25_20d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 235.5 KB | 487a0041b8bb |
| f25_20d_sd1001/ekfac_margin/scores.npz | Other | 237.0 KB | 133d4d11b6d0 |
| f25_20d_sd1001/embed/scores.embed_base.npz | Other | 227.2 KB | ed5222583167 |
| f25_20d_sd1001/embed/scores.npz | Other | 209.1 KB | 039d4db03faa |
| f25_20d_sd1001/logra/scores.npz | Other | 242.9 KB | 87547195544f |
| f25_20d_sd1001/logra_margin/scores.npz | Other | 236.0 KB | 6431938279f9 |
| f25_20d_sd1001/source_margin/scores.npz | Other | 225.5 KB | a5a6839acdca |
| f25_20d_sd1001/tracin_margin/scores.npz | Other | 227.6 KB | 30233ec8135f |
| f25_20d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 220.0 KB | 7bf9a510a0eb |
| f25_20d_sd1001/trak/scores.npz | Other | 236.0 KB | a774d3ff86c3 |
| f25_20d_sd1002/ekfac/scores.grad_dot.npz | Other | 241.6 KB | e4c90e99abb9 |
| f25_20d_sd1002/ekfac/scores.grad_sim.npz | Other | 234.8 KB | 234c9e64d583 |
| f25_20d_sd1002/ekfac/scores.npz | Other | 241.4 KB | 8bc4253b8128 |
| f25_20d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 236.4 KB | 44eab7122e26 |
| f25_20d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 235.8 KB | 2976ec2692bf |
| f25_20d_sd1002/ekfac_margin/scores.npz | Other | 237.1 KB | 931aa0643bd8 |
| f25_20d_sd1002/logra/scores.npz | Other | 242.7 KB | f525ba582067 |
| f25_20d_sd1002/logra_margin/scores.npz | Other | 235.9 KB | c9f659e23dfd |
| f25_20d_sd1002/source_margin/scores.npz | Other | 224.1 KB | 08680ed79650 |
| f25_20d_sd1002/tracin_margin/scores.npz | Other | 223.7 KB | 028581b03024 |
| f25_20d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 225.6 KB | 4dbddff86776 |
| f25_20d_sd1002/trak/scores.npz | Other | 236.0 KB | b7de0576ad7b |
| f25_20d_sd1003/ekfac/scores.grad_dot.npz | Other | 243.6 KB | 96779b4f0564 |
| f25_20d_sd1003/ekfac/scores.grad_sim.npz | Other | 235.5 KB | 2fd0b38868eb |
| f25_20d_sd1003/ekfac/scores.npz | Other | 243.6 KB | 9958758ceb14 |
| f25_20d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 236.8 KB | 9f5a273682a4 |
| f25_20d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 236.5 KB | c2e28e826b1a |
| f25_20d_sd1003/ekfac_margin/scores.npz | Other | 237.4 KB | c7edfadd7570 |
| f25_20d_sd1003/logra/scores.npz | Other | 244.6 KB | 416700fd9758 |
| f25_20d_sd1003/logra_margin/scores.npz | Other | 235.9 KB | e6648a9c3c0b |
| f25_20d_sd1003/trak/scores.npz | Other | 236.1 KB | cfaac9c53720 |
| f25_20d_sd1004/ekfac/scores.grad_dot.npz | Other | 244.1 KB | 77d937460831 |
| f25_20d_sd1004/ekfac/scores.grad_sim.npz | Other | 235.1 KB | 7b70aa7f02a7 |
| f25_20d_sd1004/ekfac/scores.npz | Other | 244.8 KB | 891ff61be566 |
| f25_20d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 234.9 KB | 4cc0225c6305 |
| f25_20d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 234.3 KB | d368899cbfc1 |
| f25_20d_sd1004/ekfac_margin/scores.npz | Other | 236.2 KB | 41db2d79543b |
| f25_20d_sd1004/logra/scores.npz | Other | 245.0 KB | 5708d8436d13 |
| f25_20d_sd1004/logra_margin/scores.npz | Other | 236.2 KB | 47a5214395f1 |
| f25_20d_sd1004/trak/scores.npz | Other | 236.0 KB | fcfebd4f75fa |
| f25_30d_sd1001/bm25/scores.bm25_prompt.npz | Other | 22.3 KB | 2ed897ae9c2a |
| f25_30d_sd1001/bm25/scores.npz | Other | 22.4 KB | 52e0cf92aac3 |
| f25_30d_sd1001/ekfac/scores.grad_dot.npz | Other | 365.6 KB | c89d0df2b09c |
| f25_30d_sd1001/ekfac/scores.grad_sim.npz | Other | 351.9 KB | 2825a6a91eee |
| f25_30d_sd1001/ekfac/scores.npz | Other | 365.9 KB | e8f1327a62c4 |
| f25_30d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 352.1 KB | 0048edc1da17 |
| f25_30d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 351.6 KB | f37efd6f6b26 |
| f25_30d_sd1001/ekfac_margin/scores.npz | Other | 354.5 KB | 3dd22bab1057 |
| f25_30d_sd1001/embed/scores.embed_base.npz | Other | 338.3 KB | f5aed331859c |
| f25_30d_sd1001/embed/scores.npz | Other | 312.1 KB | 3013254e8eb3 |
| f25_30d_sd1001/logra/scores.npz | Other | 367.2 KB | ef8fbb531174 |
| f25_30d_sd1001/logra_margin/scores.npz | Other | 353.0 KB | 0d8691b9c863 |
| f25_30d_sd1001/source_margin/scores.npz | Other | 333.0 KB | ee76f4bae165 |
| f25_30d_sd1001/tracin_margin/scores.npz | Other | 331.5 KB | da5da7465dd0 |
| f25_30d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 329.5 KB | 4b9d8f3b7aa0 |
| f25_30d_sd1001/trak/scores.npz | Other | 353.2 KB | e1247fd91d7c |
| f25_30d_sd1002/ekfac/scores.grad_dot.npz | Other | 367.5 KB | a89bf4f49046 |
| f25_30d_sd1002/ekfac/scores.grad_sim.npz | Other | 352.5 KB | 9e91a057a493 |
| f25_30d_sd1002/ekfac/scores.npz | Other | 367.7 KB | fffb122ad655 |
| f25_30d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 352.4 KB | 2928307d7a62 |
| f25_30d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 352.1 KB | e19e012b5b12 |
| f25_30d_sd1002/ekfac_margin/scores.npz | Other | 351.7 KB | 6b1c28f1e44c |
| f25_30d_sd1002/logra/scores.npz | Other | 367.4 KB | da292a6fdafe |
| f25_30d_sd1002/logra_margin/scores.npz | Other | 353.2 KB | 39c9ee1ae4b4 |
| f25_30d_sd1002/source_margin/scores.npz | Other | 336.9 KB | c8ec43bbe6d8 |
| f25_30d_sd1002/tracin_margin/scores.npz | Other | 337.5 KB | 1939e2beca34 |
| f25_30d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 328.5 KB | f5ca58613d77 |
| f25_30d_sd1002/trak/scores.npz | Other | 352.9 KB | 405c3d172894 |
| f25_30d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 353.0 KB | 23a82de2d3b6 |
| f25_30d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 352.8 KB | e91e61b57dbb |
| f25_30d_sd1003/ekfac_margin/scores.npz | Other | 354.2 KB | 0a0dc9e73571 |
| f25_30d_sd1003/logra/scores.npz | Other | 365.7 KB | 11152d4a8a37 |
| f25_30d_sd1003/logra_margin/scores.npz | Other | 352.6 KB | 4b6cf5dbdc8b |
| f25_30d_sd1003/trak/scores.npz | Other | 353.0 KB | d1100b2b0e4b |
| f25_30d_sd1004/ekfac/scores.grad_dot.npz | Other | 364.5 KB | 5c58686a9348 |
| f25_30d_sd1004/ekfac/scores.grad_sim.npz | Other | 352.4 KB | f5593eac874f |
| f25_30d_sd1004/ekfac/scores.npz | Other | 364.6 KB | 68f661331017 |
| f25_30d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 353.9 KB | 7c84ddc16d27 |
| f25_30d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 353.2 KB | a10fa253fdc5 |
| f25_30d_sd1004/ekfac_margin/scores.npz | Other | 353.9 KB | ce87fee3305c |
| f25_30d_sd1004/logra/scores.npz | Other | 365.2 KB | 41b144bae5d6 |
| f25_30d_sd1004/logra_margin/scores.npz | Other | 352.7 KB | 4a4f51df07e7 |
| f25_30d_sd1004/trak/scores.npz | Other | 353.1 KB | ca2203587543 |
| f25_40d_sd1001/bm25/scores.bm25_prompt.npz | Other | 28.9 KB | ca4a2538bb67 |
| f25_40d_sd1001/bm25/scores.npz | Other | 29.0 KB | 958ac470cbfa |
| f25_40d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 469.5 KB | 964d9fe10459 |
| f25_40d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 469.7 KB | fe1a1b2d9845 |
| f25_40d_sd1001/ekfac_margin/scores.npz | Other | 472.5 KB | 3ab992ac8e7f |
| f25_40d_sd1001/embed/scores.embed_base.npz | Other | 449.2 KB | 3733476a67d7 |
| f25_40d_sd1001/embed/scores.npz | Other | 415.3 KB | 2ffa2c0598b3 |
| f25_40d_sd1001/logra/scores.npz | Other | 489.1 KB | b6a25760fc6a |
| f25_40d_sd1001/logra_margin/scores.npz | Other | 469.7 KB | 6d0cab306c39 |
| f25_40d_sd1001/source_margin/scores.npz | Other | 445.1 KB | 8da5a0de3d86 |
| f25_40d_sd1001/tracin_margin/scores.npz | Other | 445.1 KB | 3e91e5e7afb6 |
| f25_40d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 440.0 KB | b7497c27ab00 |
| f25_40d_sd1001/trak/scores.npz | Other | 470.1 KB | 08f9ec2dc58d |
| f25_40d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 469.5 KB | 4620f03da849 |
| f25_40d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 470.0 KB | 42e480a5e251 |
| f25_40d_sd1002/ekfac_margin/scores.npz | Other | 470.9 KB | 36da4fbe46cd |
| f25_40d_sd1002/logra/scores.npz | Other | 488.2 KB | 09100ab71282 |
| f25_40d_sd1002/logra_margin/scores.npz | Other | 470.0 KB | 7a6a5f339cf9 |
| f25_40d_sd1002/source_margin/scores.npz | Other | 440.1 KB | 1afef7f968aa |
| f25_40d_sd1002/tracin_margin/scores.npz | Other | 440.4 KB | 7ab426d1326c |
| f25_40d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 437.2 KB | 753214d5df22 |
| f25_40d_sd1002/trak/scores.npz | Other | 470.3 KB | ede752ae604c |
| f25_40d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 470.3 KB | 8ab9e40c189b |
| f25_40d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 469.5 KB | 156b8747cc2e |
| f25_40d_sd1003/ekfac_margin/scores.npz | Other | 471.9 KB | bb3b189f1cb2 |
| f25_40d_sd1003/logra/scores.npz | Other | 488.9 KB | 9a76314b8d6a |
| f25_40d_sd1003/logra_margin/scores.npz | Other | 470.1 KB | 97ac8d9942ed |
| f25_40d_sd1003/trak/scores.npz | Other | 470.1 KB | 8f1fba47af59 |
| f25_40d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 466.8 KB | 06f27cbe473b |
| f25_40d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 465.0 KB | b721044922a4 |
| f25_40d_sd1004/ekfac_margin/scores.npz | Other | 469.7 KB | 483aac978dbd |
| f25_40d_sd1004/logra/scores.npz | Other | 484.4 KB | 8a01d0ed8652 |
| f25_40d_sd1004/logra_margin/scores.npz | Other | 469.9 KB | 54d740212495 |
| f25_40d_sd1004/trak/scores.npz | Other | 470.5 KB | 84f952366529 |
| f25_50d_sd1001/bm25/scores.bm25_prompt.npz | Other | 36.0 KB | deae23068ad7 |
| f25_50d_sd1001/bm25/scores.npz | Other | 36.1 KB | bb8246cb2711 |
| f25_50d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 586.6 KB | 75cbe337b93b |
| f25_50d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 585.7 KB | fc966fd97bb7 |
| f25_50d_sd1001/ekfac_margin/scores.npz | Other | 587.3 KB | 58bb9b55808e |
| f25_50d_sd1001/embed/scores.embed_base.npz | Other | 560.4 KB | de40bc473cb3 |
| f25_50d_sd1001/embed/scores.npz | Other | 518.5 KB | fc4cf21b8615 |
| f25_50d_sd1001/logra_margin/scores.npz | Other | 586.5 KB | 97ec8c49a6f1 |
| f25_50d_sd1001/source_margin/scores.npz | Other | 558.4 KB | 4f401c0f5099 |
| f25_50d_sd1001/tracin_margin/scores.npz | Other | 581.1 KB | 437718062d99 |
| f25_50d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 565.0 KB | ca57b8decc21 |
| f25_50d_sd1001/trak/scores.npz | Other | 586.8 KB | 6cd5f2de1a6b |
| f25_50d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 586.5 KB | 125bef1d91cc |
| f25_50d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 583.7 KB | 741ae771a042 |
| f25_50d_sd1002/ekfac_margin/scores.npz | Other | 587.5 KB | 022e959e469d |
| f25_50d_sd1002/logra_margin/scores.npz | Other | 587.0 KB | 139062f9bf14 |
| f25_50d_sd1002/source_margin/scores.npz | Other | 552.2 KB | aa855f2825b8 |
| f25_50d_sd1002/tracin_margin/scores.npz | Other | 550.5 KB | e484c3f127b5 |
| f25_50d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 545.3 KB | db9f752362bc |
| f25_50d_sd1002/trak/scores.npz | Other | 587.3 KB | c12edc355242 |
| f25_50d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 587.2 KB | 1bc113ccbd7b |
| f25_50d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 586.7 KB | 3b342362ef3e |
| f25_50d_sd1003/ekfac_margin/scores.npz | Other | 588.5 KB | ca0e90d6f539 |
| f25_50d_sd1003/logra_margin/scores.npz | Other | 586.5 KB | b0f3badbb192 |
| f25_50d_sd1003/trak/scores.npz | Other | 587.1 KB | 535752c6cb76 |
| f25_50d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 587.8 KB | c477dfce9792 |
| f25_50d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 587.2 KB | ffda6bb50c74 |
| f25_50d_sd1004/ekfac_margin/scores.npz | Other | 588.4 KB | b1853be55c9b |
| f25_50d_sd1004/logra_margin/scores.npz | Other | 586.4 KB | 27d22150f6b5 |
| f25_50d_sd1004/trak/scores.npz | Other | 587.2 KB | 63ca58af393e |
| f25_5d_sd1001/bm25/scores.bm25_prompt.npz | Other | 5.5 KB | c886c16c2214 |
| f25_5d_sd1001/bm25/scores.npz | Other | 5.5 KB | 35009de974ce |
| f25_5d_sd1001/ekfac/scores.grad_dot.npz | Other | 62.8 KB | 5906d881c3d4 |
| f25_5d_sd1001/ekfac/scores.grad_sim.npz | Other | 60.4 KB | e721c839910a |
| f25_5d_sd1001/ekfac/scores.npz | Other | 62.8 KB | f6d92ce51bd6 |
| f25_5d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 60.4 KB | dd2ebe90c5de |
| f25_5d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 60.2 KB | 4cbe427ac854 |
| f25_5d_sd1001/ekfac_margin/scores.npz | Other | 60.7 KB | 756e5ed0ce2e |
| f25_5d_sd1001/embed/scores.embed_base.npz | Other | 59.3 KB | aee0fdb63c93 |
| f25_5d_sd1001/embed/scores.npz | Other | 54.0 KB | 1d9a3a3266f8 |
| f25_5d_sd1001/logra/scores.npz | Other | 63.0 KB | 89db0a87aa98 |
| f25_5d_sd1001/logra_margin/scores.npz | Other | 60.3 KB | fcab3d3e9094 |
| f25_5d_sd1001/source_margin/scores.npz | Other | 58.1 KB | c23ca9b86545 |
| f25_5d_sd1001/tracin_margin/scores.npz | Other | 58.6 KB | ad57da826bf7 |
| f25_5d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 57.9 KB | f745ebf97196 |
| f25_5d_sd1001/trak/scores.npz | Other | 60.5 KB | ad69f9c1ad5e |
| f25_5d_sd1002/ekfac/scores.grad_dot.npz | Other | 62.6 KB | e1315a9461df |
| f25_5d_sd1002/ekfac/scores.grad_sim.npz | Other | 60.0 KB | 605b90ef61c1 |
| f25_5d_sd1002/ekfac/scores.npz | Other | 62.5 KB | 7bd9973eed10 |
| f25_5d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 60.2 KB | e87e70616898 |
| f25_5d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 59.8 KB | 76d37051aa75 |
| f25_5d_sd1002/ekfac_margin/scores.npz | Other | 60.1 KB | e09ff57baaa9 |
| f25_5d_sd1002/logra/scores.npz | Other | 62.6 KB | 7e7f287ff633 |
| f25_5d_sd1002/logra_margin/scores.npz | Other | 60.3 KB | d3b3c956a0a1 |
| f25_5d_sd1002/source_margin/scores.npz | Other | 57.6 KB | e1b0eda21793 |
| f25_5d_sd1002/tracin_margin/scores.npz | Other | 58.2 KB | e1e827d484ed |
| f25_5d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 57.5 KB | 0ef519bcbd5b |
| f25_5d_sd1002/trak/scores.npz | Other | 60.4 KB | 93210e683e5d |
| f25_5d_sd1003/ekfac/scores.grad_dot.npz | Other | 62.2 KB | bd883c606ee6 |
| f25_5d_sd1003/ekfac/scores.grad_sim.npz | Other | 59.7 KB | e2b60b74bceb |
| f25_5d_sd1003/ekfac/scores.npz | Other | 62.1 KB | 6d93c8622874 |
| f25_5d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 60.0 KB | 97938e400c7b |
| f25_5d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 59.8 KB | 23501ea226c5 |
| f25_5d_sd1003/ekfac_margin/scores.npz | Other | 60.3 KB | ad61a416ea1b |
| f25_5d_sd1003/logra/scores.npz | Other | 62.4 KB | 43eca09d62bd |
| f25_5d_sd1003/logra_margin/scores.npz | Other | 60.3 KB | 3584bdc77b52 |
| f25_5d_sd1003/trak/scores.npz | Other | 60.5 KB | 1661739a3df6 |
| f25_5d_sd1004/ekfac/scores.grad_dot.npz | Other | 62.4 KB | bfc75b2fb104 |
| f25_5d_sd1004/ekfac/scores.grad_sim.npz | Other | 60.2 KB | 0c57a17e8f26 |
| f25_5d_sd1004/ekfac/scores.npz | Other | 62.3 KB | 90a89cbf4928 |
| f25_5d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 60.2 KB | a7bb091b11b4 |
| f25_5d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 60.3 KB | 6c6d278512c6 |
| f25_5d_sd1004/ekfac_margin/scores.npz | Other | 60.3 KB | 3db9a8f22343 |
| f25_5d_sd1004/logra/scores.npz | Other | 62.4 KB | fd539e896187 |
| f25_5d_sd1004/logra_margin/scores.npz | Other | 60.3 KB | 121710787eb2 |
| f25_5d_sd1004/trak/scores.npz | Other | 60.5 KB | e34c3ff81966 |
| f50_10d_sd1001/bm25/scores.bm25_prompt.npz | Other | 22.1 KB | 394b12c9f0a1 |
| f50_10d_sd1001/bm25/scores.npz | Other | 22.1 KB | 330191518dea |
| f50_10d_sd1001/ekfac/scores.grad_dot.npz | Other | 485.0 KB | 562e063f6bdf |
| f50_10d_sd1001/ekfac/scores.grad_sim.npz | Other | 467.5 KB | cbc72f401763 |
| f50_10d_sd1001/ekfac/scores.npz | Other | 485.0 KB | 3f1bee43fe23 |
| f50_10d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 469.6 KB | da3aeaee3808 |
| f50_10d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 466.8 KB | 3e6e15f381d7 |
| f50_10d_sd1001/ekfac_margin/scores.npz | Other | 469.7 KB | 87774766af1e |
| f50_10d_sd1001/embed/scores.embed_base.npz | Other | 453.7 KB | 03635b791968 |
| f50_10d_sd1001/embed/scores.npz | Other | 412.8 KB | fe3a5104166c |
| f50_10d_sd1001/logra/scores.npz | Other | 484.7 KB | 4c3908c01cbc |
| f50_10d_sd1001/logra_margin/scores.npz | Other | 469.4 KB | 1a7881902082 |
| f50_10d_sd1001/source_margin/scores.npz | Other | 451.1 KB | 4b79def2996d |
| f50_10d_sd1001/tracin_margin/scores.npz | Other | 451.2 KB | e5fefd9ee46e |
| f50_10d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 450.0 KB | 3409f4d63180 |
| f50_10d_sd1001/trak/scores.npz | Other | 469.1 KB | 6f4b79a604f8 |
| f50_10d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 470.0 KB | e336b1bf587c |
| f50_10d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 469.4 KB | c1efbbb9a40f |
| f50_10d_sd1002/ekfac_margin/scores.npz | Other | 468.9 KB | 3b608117090f |
| f50_10d_sd1002/logra/scores.npz | Other | 483.7 KB | b9a6a8e3be6e |
| f50_10d_sd1002/logra_margin/scores.npz | Other | 468.9 KB | 0c04de94720f |
| f50_10d_sd1002/source_margin/scores.npz | Other | 453.6 KB | a13ac0a27468 |
| f50_10d_sd1002/tracin_margin/scores.npz | Other | 453.5 KB | 660be5a0016d |
| f50_10d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 452.5 KB | 00965bf5d7e7 |
| f50_10d_sd1002/trak/scores.npz | Other | 468.8 KB | cc2bb8808509 |
| f50_10d_sd1003/ekfac/scores.grad_dot.npz | Other | 480.3 KB | 465d3dc74405 |
| f50_10d_sd1003/ekfac/scores.grad_sim.npz | Other | 467.1 KB | b247a9e2a48a |
| f50_10d_sd1003/ekfac/scores.npz | Other | 480.7 KB | 0e0a52ccdaad |
| f50_10d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 468.8 KB | c91c5bf720a9 |
| f50_10d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 468.1 KB | e74badd3d141 |
| f50_10d_sd1003/ekfac_margin/scores.npz | Other | 468.9 KB | ea48070a09d0 |
| f50_10d_sd1003/logra/scores.npz | Other | 481.0 KB | 57ea8e88c064 |
| f50_10d_sd1003/logra_margin/scores.npz | Other | 468.8 KB | 8c5dc60b3cca |
| f50_10d_sd1003/trak/scores.npz | Other | 468.7 KB | 98c641788080 |
| f50_10d_sd1004/ekfac/scores.grad_dot.npz | Other | 482.4 KB | 00e5f85ab3ef |
| f50_10d_sd1004/ekfac/scores.grad_sim.npz | Other | 467.4 KB | 33bcc23279a0 |
| f50_10d_sd1004/ekfac/scores.npz | Other | 482.5 KB | 79f96bfb6d54 |
| f50_10d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 469.6 KB | 3315e389afdd |
| f50_10d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 468.7 KB | c71d565cfeb1 |
| f50_10d_sd1004/ekfac_margin/scores.npz | Other | 471.3 KB | 6fe10494ee2d |
| f50_10d_sd1004/logra/scores.npz | Other | 483.2 KB | b6cb62e337d4 |
| f50_10d_sd1004/logra_margin/scores.npz | Other | 468.9 KB | 082d16692552 |
| f50_10d_sd1004/trak/scores.npz | Other | 468.8 KB | 1527eb78ef97 |
| f50_1d_sd1001/bm25/scores.bm25_prompt.npz | Other | 4.4 KB | 4334217ed5c9 |
| f50_1d_sd1001/bm25/scores.npz | Other | 4.4 KB | 646952c1daa0 |
| f50_1d_sd1001/ekfac/scores.grad_dot.npz | Other | 51.1 KB | 5e5a03194c1a |
| f50_1d_sd1001/ekfac/scores.grad_sim.npz | Other | 48.9 KB | 9f8e5a21eb2d |
| f50_1d_sd1001/ekfac/scores.npz | Other | 51.2 KB | 5a7ec0db95bc |
| f50_1d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 48.7 KB | 01f33c8eb806 |
| f50_1d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 48.5 KB | c10a7c6f8f52 |
| f50_1d_sd1001/ekfac_margin/scores.npz | Other | 48.5 KB | 7c7fbf770d72 |
| f50_1d_sd1001/embed/scores.embed_base.npz | Other | 48.5 KB | 97b422b19a82 |
| f50_1d_sd1001/embed/scores.npz | Other | 43.8 KB | 14eb4b87ee8a |
| f50_1d_sd1001/logra/scores.npz | Other | 51.1 KB | 00052bffad78 |
| f50_1d_sd1001/logra_margin/scores.npz | Other | 48.9 KB | ebbf3dcdbb6c |
| f50_1d_sd1001/source_margin/scores.npz | Other | 48.4 KB | 7ff56c12ebd6 |
| f50_1d_sd1001/tracin_margin/scores.npz | Other | 48.4 KB | 1a62e2042d60 |
| f50_1d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 48.3 KB | 073eafe396bb |
| f50_1d_sd1001/trak/scores.npz | Other | 48.9 KB | 56af5da2e36c |
| f50_1d_sd1002/ekfac/scores.grad_dot.npz | Other | 50.2 KB | 7923e86feb90 |
| f50_1d_sd1002/ekfac/scores.grad_sim.npz | Other | 48.7 KB | a7d5aeef3532 |
| f50_1d_sd1002/ekfac/scores.npz | Other | 50.3 KB | fd6da20e283a |
| f50_1d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 48.9 KB | 3dfa46c4fdb8 |
| f50_1d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 48.8 KB | 05c7d52f5b53 |
| f50_1d_sd1002/ekfac_margin/scores.npz | Other | 49.1 KB | 1f81b6cf84cc |
| f50_1d_sd1002/logra/scores.npz | Other | 50.2 KB | ebf498cffa32 |
| f50_1d_sd1002/logra_margin/scores.npz | Other | 48.8 KB | 1f2f9e85a75e |
| f50_1d_sd1002/source_margin/scores.npz | Other | 48.8 KB | 06d62ae8702c |
| f50_1d_sd1002/tracin_margin/scores.npz | Other | 49.1 KB | cdc7fcc4dec5 |
| f50_1d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 48.8 KB | 9adec818ec1f |
| f50_1d_sd1002/trak/scores.npz | Other | 48.9 KB | d677173b6b86 |
| f50_1d_sd1003/ekfac/scores.grad_dot.npz | Other | 50.7 KB | 24b6063c563e |
| f50_1d_sd1003/ekfac/scores.grad_sim.npz | Other | 48.8 KB | 8fd4ba7577ce |
| f50_1d_sd1003/ekfac/scores.npz | Other | 50.8 KB | 1a9b5a580a79 |
| f50_1d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 48.9 KB | 07b98a586ff2 |
| f50_1d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 48.8 KB | 93b975c9e789 |
| f50_1d_sd1003/ekfac_margin/scores.npz | Other | 48.9 KB | 8fdcec8b6175 |
| f50_1d_sd1003/logra/scores.npz | Other | 50.8 KB | ead3c1a4b75d |
| f50_1d_sd1003/logra_margin/scores.npz | Other | 48.7 KB | 14d31c3c8a56 |
| f50_1d_sd1003/trak/scores.npz | Other | 48.9 KB | b39f40963906 |
| f50_1d_sd1004/ekfac/scores.grad_dot.npz | Other | 50.9 KB | c3cc067a0b9f |
| f50_1d_sd1004/ekfac/scores.grad_sim.npz | Other | 48.8 KB | 306b42ec17b9 |
| f50_1d_sd1004/ekfac/scores.npz | Other | 51.0 KB | 5880fc326b9a |
| f50_1d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 49.0 KB | 8a0448497272 |
| f50_1d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 48.8 KB | 6ecbb08cbde0 |
| f50_1d_sd1004/ekfac_margin/scores.npz | Other | 49.0 KB | 1020e8108253 |
| f50_1d_sd1004/logra/scores.npz | Other | 50.9 KB | 1d3fba065e2a |
| f50_1d_sd1004/logra_margin/scores.npz | Other | 48.8 KB | 8571cbac97e1 |
| f50_1d_sd1004/trak/scores.npz | Other | 49.0 KB | a0520e882aaf |
| f50_20d_sd1001/bm25/scores.bm25_prompt.npz | Other | 41.3 KB | b293f7955ee7 |
| f50_20d_sd1001/bm25/scores.npz | Other | 41.3 KB | bf1faef88a24 |
| f50_20d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 934.1 KB | 0d9f7d035672 |
| f50_20d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 926.9 KB | c4e985823ebe |
| f50_20d_sd1001/ekfac_margin/scores.npz | Other | 931.7 KB | cff5d8dfc22c |
| f50_20d_sd1001/embed/scores.embed_base.npz | Other | 899.5 KB | 4d8049c0f1be |
| f50_20d_sd1001/embed/scores.npz | Other | 822.3 KB | f3b93edb2a16 |
| f50_20d_sd1001/logra/scores.npz | Other | 966.8 KB | 4377a5a3a044 |
| f50_20d_sd1001/logra_margin/scores.npz | Other | 935.2 KB | 4605f07211dc |
| f50_20d_sd1001/source_margin/scores.npz | Other | 897.4 KB | 6d2e1b34385a |
| f50_20d_sd1001/tracin_margin/scores.npz | Other | 894.6 KB | 60e998d69e8c |
| f50_20d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 882.2 KB | 501e94203001 |
| f50_20d_sd1001/trak/scores.npz | Other | 935.8 KB | a4871977387a |
| f50_20d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 935.4 KB | bcc5e8cefd4e |
| f50_20d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 934.2 KB | 74d34c1a618d |
| f50_20d_sd1002/ekfac_margin/scores.npz | Other | 934.0 KB | 2fa6a943e389 |
| f50_20d_sd1002/logra/scores.npz | Other | 974.6 KB | 26aee7108c8c |
| f50_20d_sd1002/logra_margin/scores.npz | Other | 934.7 KB | 378f26c333c7 |
| f50_20d_sd1002/source_margin/scores.npz | Other | 891.4 KB | ac9127aaa508 |
| f50_20d_sd1002/tracin_margin/scores.npz | Other | 910.7 KB | e73b02298719 |
| f50_20d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 893.5 KB | 32b9e448d7ca |
| f50_20d_sd1002/trak/scores.npz | Other | 935.7 KB | d4ffcd553247 |
| f50_20d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 936.1 KB | 7790b752e86d |
| f50_20d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 934.3 KB | 3c535f15b4e7 |
| f50_20d_sd1003/ekfac_margin/scores.npz | Other | 938.3 KB | e86f4b45bc86 |
| f50_20d_sd1003/logra/scores.npz | Other | 969.6 KB | 209f52534725 |
| f50_20d_sd1003/logra_margin/scores.npz | Other | 935.4 KB | ec0a2d5ed38c |
| f50_20d_sd1003/trak/scores.npz | Other | 935.6 KB | ec1e56002096 |
| f50_20d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 930.9 KB | 70d9488c8ddc |
| f50_20d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 932.7 KB | ca34f23ae4bb |
| f50_20d_sd1004/ekfac_margin/scores.npz | Other | 937.5 KB | b6b43c36c8c2 |
| f50_20d_sd1004/logra/scores.npz | Other | 970.8 KB | 6dbf07d37e6e |
| f50_20d_sd1004/logra_margin/scores.npz | Other | 935.1 KB | 080c3933aa0b |
| f50_20d_sd1004/trak/scores.npz | Other | 935.8 KB | a07a166ebace |
| f50_30d_sd1001/bm25/scores.bm25_prompt.npz | Other | 61.8 KB | e72e8faffe68 |
| f50_30d_sd1001/bm25/scores.npz | Other | 61.9 KB | 741aad874320 |
| f50_30d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 1.4 MB | 73fd982dbc00 |
| f50_30d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 1.4 MB | 996a51892a34 |
| f50_30d_sd1001/ekfac_margin/scores.npz | Other | 1.4 MB | 074b6f3761fd |
| f50_30d_sd1001/embed/scores.embed_base.npz | Other | 1.3 MB | 7513812b3b25 |
| f50_30d_sd1001/embed/scores.npz | Other | 1.2 MB | f77a00b19268 |
| f50_30d_sd1001/logra_margin/scores.npz | Other | 1.4 MB | e075107af0a6 |
| f50_30d_sd1001/source_margin/scores.npz | Other | 1.3 MB | 71f79af94309 |
| f50_30d_sd1001/tracin_margin/scores.npz | Other | 1.3 MB | 78a4628072e8 |
| f50_30d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 1.3 MB | 26ac4475b2ad |
| f50_30d_sd1001/trak/scores.npz | Other | 1.4 MB | 76f386207d14 |
| f50_30d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 1.4 MB | fdffd9346be5 |
| f50_30d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 1.4 MB | 63e0140ecc92 |
| f50_30d_sd1002/ekfac_margin/scores.npz | Other | 1.4 MB | dfc70989e751 |
| f50_30d_sd1002/logra_margin/scores.npz | Other | 1.4 MB | 3e1c889e7937 |
| f50_30d_sd1002/source_margin/scores.npz | Other | 1.3 MB | 03578689fa2d |
| f50_30d_sd1002/tracin_margin/scores.npz | Other | 1.3 MB | 27fee8686125 |
| f50_30d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 1.3 MB | 5f81629eda99 |
| f50_30d_sd1002/trak/scores.npz | Other | 1.4 MB | 8727fa537252 |
| f50_30d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 1.4 MB | a9e352cca730 |
| f50_30d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 1.4 MB | 9f272cd12f93 |
| f50_30d_sd1003/ekfac_margin/scores.npz | Other | 1.4 MB | 4db0c71cefb0 |
| f50_30d_sd1003/logra_margin/scores.npz | Other | 1.4 MB | 7cb3faccf0c9 |
| f50_30d_sd1003/trak/scores.npz | Other | 1.4 MB | ae4c06d51395 |
| f50_30d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 1.4 MB | 6953d444e07d |
| f50_30d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 1.4 MB | c1413a1b5aa4 |
| f50_30d_sd1004/ekfac_margin/scores.npz | Other | 1.4 MB | 11247076b514 |
| f50_30d_sd1004/logra_margin/scores.npz | Other | 1.4 MB | dd3205ffa06a |
| f50_30d_sd1004/trak/scores.npz | Other | 1.4 MB | 160a36cf22f3 |
| f50_40d_sd1001/bm25/scores.bm25_prompt.npz | Other | 81.7 KB | e6a0c7c3ade9 |
| f50_40d_sd1001/bm25/scores.npz | Other | 81.8 KB | 90588c9eb9b8 |
| f50_40d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 1.8 MB | 825b5446e0f5 |
| f50_40d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 1.8 MB | 72cbbb6746ed |
| f50_40d_sd1001/ekfac_margin/scores.npz | Other | 1.9 MB | 073b28ea2f97 |
| f50_40d_sd1001/embed/scores.embed_base.npz | Other | 1.8 MB | ee309e5150bc |
| f50_40d_sd1001/embed/scores.npz | Other | 1.6 MB | e9ad620d218a |
| f50_40d_sd1001/logra_margin/scores.npz | Other | 1.9 MB | cce9dbe94a29 |
| f50_40d_sd1001/source_margin/scores.npz | Other | 1.8 MB | 8a175bc4789e |
| f50_40d_sd1001/tracin_margin/scores.npz | Other | 1.8 MB | be79968261d9 |
| f50_40d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 1.7 MB | 5de8f38fbbcd |
| f50_40d_sd1001/trak/scores.npz | Other | 1.9 MB | 474c912a451b |
| f50_40d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 1.9 MB | 310bcb281607 |
| f50_40d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 1.9 MB | 80840ec245ad |
| f50_40d_sd1002/ekfac_margin/scores.npz | Other | 1.9 MB | 53ac799f4f38 |
| f50_40d_sd1002/logra_margin/scores.npz | Other | 1.9 MB | 70b52fe2983a |
| f50_40d_sd1002/source_margin/scores.npz | Other | 1.7 MB | dea09832d61c |
| f50_40d_sd1002/tracin_margin/scores.npz | Other | 1.7 MB | 165875cbc2ff |
| f50_40d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 1.7 MB | df6b16871ec2 |
| f50_40d_sd1002/trak/scores.npz | Other | 1.9 MB | 313192eda773 |
| f50_40d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 1.9 MB | d1e7c904682c |
| f50_40d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 1.9 MB | 19946df10015 |
| f50_40d_sd1003/ekfac_margin/scores.npz | Other | 1.9 MB | 808a460bea7f |
| f50_40d_sd1003/logra_margin/scores.npz | Other | 1.9 MB | 366cfd2a2ac8 |
| f50_40d_sd1003/trak/scores.npz | Other | 1.9 MB | e5f7e61c8b4b |
| f50_40d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 1.9 MB | 7f2f435f4952 |
| f50_40d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 1.9 MB | 4c48a13cd450 |
| f50_40d_sd1004/ekfac_margin/scores.npz | Other | 1.9 MB | b327591b78f6 |
| f50_40d_sd1004/logra_margin/scores.npz | Other | 1.9 MB | ef935fe73e68 |
| f50_40d_sd1004/trak/scores.npz | Other | 1.9 MB | 591cb8f175ac |
| f50_50d_sd1001/bm25/scores.bm25_prompt.npz | Other | 103.3 KB | 7eafee1e8255 |
| f50_50d_sd1001/bm25/scores.npz | Other | 103.5 KB | 54a13603557c |
| f50_50d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 2.3 MB | 83899035efca |
| f50_50d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 2.3 MB | 3569512125df |
| f50_50d_sd1001/ekfac_margin/scores.npz | Other | 2.3 MB | 494908e836cc |
| f50_50d_sd1001/embed/scores.embed_base.npz | Other | 2.2 MB | 33389f407f35 |
| f50_50d_sd1001/embed/scores.npz | Other | 2.0 MB | 86233650ab15 |
| f50_50d_sd1001/logra_margin/scores.npz | Other | 2.3 MB | 4aa28169b5d3 |
| f50_50d_sd1001/source_margin/scores.npz | Other | 2.2 MB | 2294f9cfa6c3 |
| f50_50d_sd1001/tracin_margin/scores.npz | Other | 2.2 MB | b423c16e18ef |
| f50_50d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 2.2 MB | 34c5fbca9faf |
| f50_50d_sd1001/trak/scores.npz | Other | 1.2 MB | 184488eb36ba |
| f50_50d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 2.3 MB | 1fb4a9f0e8db |
| f50_50d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 2.3 MB | 0606c574ce27 |
| f50_50d_sd1002/ekfac_margin/scores.npz | Other | 2.3 MB | 1535aedf4b15 |
| f50_50d_sd1002/logra_margin/scores.npz | Other | 2.3 MB | ba4c1775962b |
| f50_50d_sd1002/source_margin/scores.npz | Other | 2.2 MB | 3c7c41967b93 |
| f50_50d_sd1002/trak/scores.npz | Other | 1.2 MB | 309cb63f1261 |
| f50_50d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 2.3 MB | 75875ea38fa9 |
| f50_50d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 2.3 MB | d603eae25784 |
| f50_50d_sd1003/ekfac_margin/scores.npz | Other | 2.3 MB | 8c1a7dfac941 |
| f50_50d_sd1003/logra_margin/scores.npz | Other | 2.3 MB | 0c2fe72a948f |
| f50_50d_sd1003/trak/scores.npz | Other | 1.2 MB | 6975c59a4887 |
| f50_50d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 2.3 MB | c7a613f20b9d |
| f50_50d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 2.3 MB | aff565f5d3cc |
| f50_50d_sd1004/ekfac_margin/scores.npz | Other | 2.3 MB | b365e7b61104 |
| f50_50d_sd1004/logra_margin/scores.npz | Other | 2.3 MB | 81bdadcbee47 |
| f50_50d_sd1004/trak/scores.npz | Other | 1.2 MB | 8ed19ae024e0 |
| f50_5d_sd1001/bm25/scores.bm25_prompt.npz | Other | 12.0 KB | c8153ec59b22 |
| f50_5d_sd1001/bm25/scores.npz | Other | 12.1 KB | 249db78d0972 |
| f50_5d_sd1001/ekfac/scores.grad_dot.npz | Other | 243.4 KB | ffac4e360ac2 |
| f50_5d_sd1001/ekfac/scores.grad_sim.npz | Other | 233.3 KB | 9e9bd6ba2e77 |
| f50_5d_sd1001/ekfac/scores.npz | Other | 243.2 KB | 9115ee6942c2 |
| f50_5d_sd1001/ekfac_margin/scores.grad_dot.npz | Other | 234.8 KB | 7b0ed816bbbd |
| f50_5d_sd1001/ekfac_margin/scores.grad_sim.npz | Other | 235.0 KB | 82b01d380632 |
| f50_5d_sd1001/ekfac_margin/scores.npz | Other | 235.8 KB | f19efb8cc815 |
| f50_5d_sd1001/embed/scores.embed_base.npz | Other | 229.6 KB | b47b0749e28d |
| f50_5d_sd1001/embed/scores.npz | Other | 207.9 KB | d5e0a8d21724 |
| f50_5d_sd1001/logra/scores.npz | Other | 244.8 KB | 9b9f03f896b6 |
| f50_5d_sd1001/logra_margin/scores.npz | Other | 235.3 KB | fccf3e905777 |
| f50_5d_sd1001/source_margin/scores.npz | Other | 227.7 KB | 56360114ea2f |
| f50_5d_sd1001/tracin_margin/scores.npz | Other | 227.8 KB | c6f953c8869b |
| f50_5d_sd1001/tracin_margin/scores.tracin_cos.npz | Other | 227.0 KB | 088e45485062 |
| f50_5d_sd1001/trak/scores.npz | Other | 235.7 KB | 8f57779a4935 |
| f50_5d_sd1002/ekfac/scores.grad_dot.npz | Other | 244.9 KB | fc62f7661738 |
| f50_5d_sd1002/ekfac/scores.grad_sim.npz | Other | 235.0 KB | cecffe3181d7 |
| f50_5d_sd1002/ekfac/scores.npz | Other | 245.1 KB | aafbcf510d16 |
| f50_5d_sd1002/ekfac_margin/scores.grad_dot.npz | Other | 235.1 KB | c4a2646b7e71 |
| f50_5d_sd1002/ekfac_margin/scores.grad_sim.npz | Other | 235.3 KB | 0691fb5ee6ec |
| f50_5d_sd1002/ekfac_margin/scores.npz | Other | 235.9 KB | b66b39d2ed24 |
| f50_5d_sd1002/logra/scores.npz | Other | 244.9 KB | c2634bdfb20c |
| f50_5d_sd1002/logra_margin/scores.npz | Other | 235.2 KB | 6b6aff3cdd2e |
| f50_5d_sd1002/source_margin/scores.npz | Other | 224.4 KB | e22b70c6360b |
| f50_5d_sd1002/tracin_margin/scores.npz | Other | 225.6 KB | 0fda5c59f38b |
| f50_5d_sd1002/tracin_margin/scores.tracin_cos.npz | Other | 222.4 KB | 425dd503a8f5 |
| f50_5d_sd1002/trak/scores.npz | Other | 235.8 KB | 78712fcbee11 |
| f50_5d_sd1003/ekfac/scores.grad_dot.npz | Other | 242.4 KB | a8d3164789b2 |
| f50_5d_sd1003/ekfac/scores.grad_sim.npz | Other | 235.2 KB | 78c7eb32b6e2 |
| f50_5d_sd1003/ekfac/scores.npz | Other | 242.8 KB | 7d4a975e061f |
| f50_5d_sd1003/ekfac_margin/scores.grad_dot.npz | Other | 234.7 KB | 60a058689543 |
| f50_5d_sd1003/ekfac_margin/scores.grad_sim.npz | Other | 234.7 KB | ead8eb1ad79c |
| f50_5d_sd1003/ekfac_margin/scores.npz | Other | 236.2 KB | 600d5b090f31 |
| f50_5d_sd1003/logra/scores.npz | Other | 242.9 KB | 4629950b8f51 |
| f50_5d_sd1003/logra_margin/scores.npz | Other | 235.2 KB | d1683f0b34b3 |
| f50_5d_sd1003/trak/scores.npz | Other | 235.7 KB | 0a59c6c2f7a0 |
| f50_5d_sd1004/ekfac/scores.grad_dot.npz | Other | 242.9 KB | 52f5ecd3df38 |
| f50_5d_sd1004/ekfac/scores.grad_sim.npz | Other | 235.6 KB | f7fb071eef14 |
| f50_5d_sd1004/ekfac/scores.npz | Other | 243.0 KB | 6468a201044d |
| f50_5d_sd1004/ekfac_margin/scores.grad_dot.npz | Other | 235.2 KB | dc603c0b0891 |
| f50_5d_sd1004/ekfac_margin/scores.grad_sim.npz | Other | 235.3 KB | fc26ec3e67f6 |
| f50_5d_sd1004/ekfac_margin/scores.npz | Other | 236.6 KB | ec310f95d776 |
| f50_5d_sd1004/logra/scores.npz | Other | 243.0 KB | bfbc4f1ae9a2 |
| f50_5d_sd1004/logra_margin/scores.npz | Other | 235.0 KB | bcab86d533a0 |
| f50_5d_sd1004/trak/scores.npz | Other | 235.7 KB | 5b20ae4a4354 |
| v2/f100_10d_sd1001/bm25/scores.bm25_prompt.npz | Other | 64.5 KB | 5d6f866d0a20 |
| v2/f100_10d_sd1001/bm25/scores.npz | Other | 64.6 KB | 2a4cc97bc6a3 |
| v2/f100_10d_sd1001/ekfac/scores.grad_dot.ce.npz | Other | 764.4 KB | 154636110ca6 |
| v2/f100_10d_sd1001/ekfac/scores.grad_dot.margin.npz | Other | 758.4 KB | 24595489dcfc |
| v2/f100_10d_sd1001/ekfac/scores.grad_dot.margin_docw.npz | Other | 1.2 MB | 8525c394cfd7 |
| v2/f100_10d_sd1001/ekfac/scores.grad_dot.margin_sum.npz | Other | 1.5 MB | 9725e622c87d |
| v2/f100_10d_sd1001/ekfac/scores.grad_dot.margin_top10.npz | Other | 1.4 MB | f5d4c948888d |
| v2/f100_10d_sd1001/ekfac/scores.grad_dot.margin_top3.npz | Other | 1.4 MB | d020ed2b82b9 |
| v2/f100_10d_sd1001/ekfac/scores.grad_sim.ce.npz | Other | 1.5 MB | 68b4d19f87c1 |
| v2/f100_10d_sd1001/ekfac/scores.grad_sim.margin.npz | Other | 1.5 MB | 20f9cf1327f1 |
| v2/f100_10d_sd1001/ekfac/scores.grad_sim.margin_docw.npz | Other | 1.5 MB | 49ee0cbe7ca4 |
| v2/f100_10d_sd1001/ekfac/scores.if_ekfac.margin.npz | Other | 768.2 KB | 0d6dea776564 |
| v2/f100_10d_sd1001/ekfac/scores.if_ekfac.margin_docw.npz | Other | 1.2 MB | dafd3a907155 |
| v2/f100_10d_sd1001/ekfac/scores.if_ekfac.margin_sum.npz | Other | 1.5 MB | 1fb3e6138a50 |
| v2/f100_10d_sd1001/ekfac/scores.if_ekfac.margin_top10.npz | Other | 1.4 MB | 2d50790ca58d |
| v2/f100_10d_sd1001/ekfac/scores.if_ekfac.margin_top3.npz | Other | 1.4 MB | e64dabd0658a |
| v2/f100_10d_sd1001/ekfac/scores.npz | Other | 766.9 KB | baf23753f37c |
| v2/f100_10d_sd1001/ekfac/tokens.grad_dot.ce.npz | Other | 375.7 MB | a1a59f10b3bf |
| v2/f100_10d_sd1001/ekfac/tokens.grad_dot.margin.npz | Other | 367.8 MB | dd5e07f85c97 |
| v2/f100_10d_sd1001/ekfac/tokens.if_ekfac.ce.npz | Other | 378.6 MB | fcf39a591782 |
| v2/f100_10d_sd1001/ekfac/tokens.if_ekfac.margin.npz | Other | 369.5 MB | 70885198922c |
| v2/f100_10d_sd1001/ekfac/tokens.meta.npz | Other | 700.6 KB | 535359bac687 |
| v2/f100_10d_sd1001/embed/scores.embed_base.npz | Other | 1.8 MB | e437e2c5f227 |
| v2/f100_10d_sd1001/embed/scores.npz | Other | 1.6 MB | 159f15d1f5a0 |
| v2/f100_10d_sd1001/sketch/scores.logra.ce.npz | Other | 1.5 MB | 7aee55a73712 |
| v2/f100_10d_sd1001/sketch/scores.logra.margin.npz | Other | 1.5 MB | c03cd62648c9 |
| v2/f100_10d_sd1001/sketch/scores.logra.margin_docw.npz | Other | 1.5 MB | ea10f1b7bdaa |
| v2/f100_10d_sd1001/sketch/scores.logra.margin_sum.npz | Other | 1.5 MB | 4002f63d431d |
| v2/f100_10d_sd1001/sketch/scores.logra.margin_top10.npz | Other | 1.4 MB | f5c88b92fa80 |
| v2/f100_10d_sd1001/sketch/scores.logra.margin_top3.npz | Other | 1.4 MB | ae9832ac9f1d |
| v2/f100_10d_sd1001/sketch/scores.logra_dot.ce.npz | Other | 1.5 MB | f48671826d6a |
| v2/f100_10d_sd1001/sketch/scores.logra_dot.margin.npz | Other | 1.5 MB | 4ab7c6391273 |
| v2/f100_10d_sd1001/sketch/scores.logra_dot.margin_docw.npz | Other | 1.5 MB | 1f00bc4e9f27 |
| v2/f100_10d_sd1001/sketch/scores.logra_dot.margin_sum.npz | Other | 1.5 MB | c1676f268b84 |
| v2/f100_10d_sd1001/sketch/scores.logra_dot.margin_top10.npz | Other | 1.4 MB | 83d418b85d05 |
| v2/f100_10d_sd1001/sketch/scores.logra_dot.margin_top3.npz | Other | 1.4 MB | 4a68f0b65c39 |
| v2/f100_10d_sd1001/sketch/scores.npz | Other | 1.5 MB | 209cc79dc296 |
| v2/f100_10d_sd1001/sketch/scores.trak.margin.npz | Other | 1.5 MB | 0df72df6fb27 |
| v2/f100_10d_sd1001/sketch/tokens.logra.margin.npz | Other | 367.9 MB | eca707c664d6 |
| v2/f100_10d_sd1001/sketch/tokens.logra_dot.ce.npz | Other | 375.7 MB | 1f993d884232 |
| v2/f100_10d_sd1001/sketch/tokens.logra_dot.margin.npz | Other | 367.6 MB | d3c923edbb09 |
| v2/f100_10d_sd1001/sketch/tokens.meta.npz | Other | 699.7 KB | c7aecd0cd1d5 |
| v2/f100_10d_sd1001/source/scores.npz | Other | 1.5 MB | 261d09dfacbc |
| v2/f100_10d_sd1001/source/scores.source.margin.npz | Other | 1.4 MB | 608edfcf305f |
| v2/f100_10d_sd1001/source/scores.source.margin_docw.npz | Other | 1.4 MB | 8212cea2e9d6 |
| v2/f100_10d_sd1001/tracin/scores.npz | Other | 1.5 MB | 06cdfb803eed |
| v2/f100_10d_sd1001/tracin/scores.tracin.margin.npz | Other | 1.4 MB | 2dd15e8fb600 |
| v2/f100_10d_sd1001/tracin/scores.tracin.margin_docw.npz | Other | 1.4 MB | 5825699fd3cc |
| v2/f100_10d_sd1001/tracin/scores.tracin.margin_sum.npz | Other | 1.4 MB | 7190ecf6ea42 |
| v2/f100_10d_sd1001/tracin/scores.tracin.margin_top10.npz | Other | 1.4 MB | 8b4b87ca7a3e |
| v2/f100_10d_sd1001/tracin/scores.tracin.margin_top3.npz | Other | 1.4 MB | c16b908dc20a |
| v2/f100_10d_sd1001/tracin/scores.tracin_cos.ce.npz | Other | 1.5 MB | 60197e14dccc |
| v2/f100_10d_sd1001/tracin/scores.tracin_cos.margin.npz | Other | 1.4 MB | 3f35df56a60a |
| v2/f100_10d_sd1001/tracin/scores.tracin_cos.margin_docw.npz | Other | 1.5 MB | 976cfac243a7 |
| v2/f100_10d_sd1001/tracin/tokens.meta.npz | Other | 701.1 KB | 0ff7861129d9 |
| v2/f100_10d_sd1001/tracin/tokens.tracin.ce.npz | Other | 370.2 MB | 476fa60ac70f |
| v2/f100_10d_sd1001/tracin/tokens.tracin.margin.npz | Other | 367.3 MB | a9c1d8785ed6 |
| v2/f100_10d_sd1002/ekfac/scores.grad_dot.ce.npz | Other | 765.0 KB | 512725687d43 |
| v2/f100_10d_sd1002/ekfac/scores.grad_dot.margin.npz | Other | 751.8 KB | 268e8304772a |
| v2/f100_10d_sd1002/ekfac/scores.grad_dot.margin_docw.npz | Other | 1.2 MB | 485e3aa857b0 |
| v2/f100_10d_sd1002/ekfac/scores.grad_dot.margin_sum.npz | Other | 1.5 MB | 4c341281f2a1 |
| v2/f100_10d_sd1002/ekfac/scores.grad_dot.margin_top10.npz | Other | 1.4 MB | f54e89994f99 |
| v2/f100_10d_sd1002/ekfac/scores.grad_dot.margin_top3.npz | Other | 1.4 MB | 72a3d9634e25 |
| v2/f100_10d_sd1002/ekfac/scores.grad_sim.ce.npz | Other | 1.5 MB | 24b31fe55b25 |
| v2/f100_10d_sd1002/ekfac/scores.grad_sim.margin.npz | Other | 1.5 MB | c2b6b9637172 |
| v2/f100_10d_sd1002/ekfac/scores.grad_sim.margin_docw.npz | Other | 1.5 MB | 0ee1f100bd24 |
| v2/f100_10d_sd1002/ekfac/scores.if_ekfac.margin.npz | Other | 765.7 KB | dde292a68cbc |
| v2/f100_10d_sd1002/ekfac/scores.if_ekfac.margin_docw.npz | Other | 1.2 MB | 61beac046f55 |
| v2/f100_10d_sd1002/ekfac/scores.if_ekfac.margin_sum.npz | Other | 1.5 MB | ba624014c2ca |
| v2/f100_10d_sd1002/ekfac/scores.if_ekfac.margin_top10.npz | Other | 1.4 MB | 6185389d1bff |
| v2/f100_10d_sd1002/ekfac/scores.if_ekfac.margin_top3.npz | Other | 1.4 MB | d8374f0b2317 |
| v2/f100_10d_sd1002/ekfac/scores.npz | Other | 760.9 KB | adcd4493208a |
| v2/f100_10d_sd1002/ekfac/tokens.grad_dot.ce.npz | Other | 375.9 MB | 729b9af5d767 |
| v2/f100_10d_sd1002/ekfac/tokens.grad_dot.margin.npz | Other | 367.9 MB | 75876f9c9135 |
| v2/f100_10d_sd1002/ekfac/tokens.if_ekfac.ce.npz | Other | 378.0 MB | 8c3cf4cb8445 |
| v2/f100_10d_sd1002/ekfac/tokens.if_ekfac.margin.npz | Other | 369.7 MB | a692b041a332 |
| v2/f100_10d_sd1002/ekfac/tokens.meta.npz | Other | 702.7 KB | b086fc4322ef |
| v2/f100_10d_sd1002/sketch/scores.logra.ce.npz | Other | 1.5 MB | 6f55c257ec61 |
| v2/f100_10d_sd1002/sketch/scores.logra.margin.npz | Other | 1.5 MB | 811eed76b97a |
| v2/f100_10d_sd1002/sketch/scores.logra.margin_docw.npz | Other | 1.5 MB | 6977c3e6137c |
| v2/f100_10d_sd1002/sketch/scores.logra.margin_sum.npz | Other | 1.5 MB | 09d4e51444fe |
| v2/f100_10d_sd1002/sketch/scores.logra.margin_top10.npz | Other | 1.4 MB | f6b7a4982216 |
| v2/f100_10d_sd1002/sketch/scores.logra.margin_top3.npz | Other | 1.4 MB | 346540d44ce8 |
| v2/f100_10d_sd1002/sketch/scores.logra_dot.ce.npz | Other | 1.5 MB | 09c01e827fe1 |
| v2/f100_10d_sd1002/sketch/scores.logra_dot.margin.npz | Other | 1.5 MB | 92df6ec0aadb |
| v2/f100_10d_sd1002/sketch/scores.logra_dot.margin_docw.npz | Other | 1.5 MB | 3a1875fa8f5b |
| v2/f100_10d_sd1002/sketch/scores.logra_dot.margin_sum.npz | Other | 1.5 MB | 95253408914b |
| v2/f100_10d_sd1002/sketch/scores.logra_dot.margin_top10.npz | Other | 1.4 MB | c86560ffef5b |
| v2/f100_10d_sd1002/sketch/scores.logra_dot.margin_top3.npz | Other | 1.4 MB | 0acd443cee95 |
| v2/f100_10d_sd1002/sketch/scores.npz | Other | 1.5 MB | c84d229a5de9 |
| v2/f100_10d_sd1002/sketch/scores.trak.margin.npz | Other | 1.5 MB | 8267580480c4 |
| v2/f100_10d_sd1002/sketch/tokens.logra.margin.npz | Other | 367.9 MB | 6779f25ee26b |
| v2/f100_10d_sd1002/sketch/tokens.logra_dot.ce.npz | Other | 375.9 MB | 48259d82274d |
| v2/f100_10d_sd1002/sketch/tokens.logra_dot.margin.npz | Other | 367.6 MB | 406bb787fac8 |
| v2/f100_10d_sd1002/sketch/tokens.meta.npz | Other | 701.6 KB | 25492a226598 |
| v2/f100_10d_sd1002/source/scores.npz | Other | 1.5 MB | 8b6945b7d5ee |
| v2/f100_10d_sd1002/source/scores.source.margin.npz | Other | 1.5 MB | 30df1eb414a0 |
| v2/f100_10d_sd1002/source/scores.source.margin_docw.npz | Other | 1.5 MB | c939eb91619a |
| v2/f100_10d_sd1002/tracin/scores.npz | Other | 1.5 MB | 3f425830b5dd |
| v2/f100_10d_sd1002/tracin/scores.tracin.margin.npz | Other | 1.5 MB | 5767bb77ecb3 |
| v2/f100_10d_sd1002/tracin/scores.tracin.margin_docw.npz | Other | 1.5 MB | 83f4ed6ff763 |
| v2/f100_10d_sd1002/tracin/scores.tracin_cos.ce.npz | Other | 1.5 MB | 95350b6c1bbc |
| v2/f100_10d_sd1002/tracin/scores.tracin_cos.margin.npz | Other | 1.5 MB | c88157cbd213 |
| v2/f100_10d_sd1002/tracin/scores.tracin_cos.margin_docw.npz | Other | 1.5 MB | a7aca4dc2092 |
| v2/f100_10d_sd1003/ekfac/scores.grad_dot.ce.npz | Other | 761.5 KB | e64aade3d9fd |
| v2/f100_10d_sd1003/ekfac/scores.grad_dot.margin.npz | Other | 759.4 KB | 6668f4af7f57 |
| v2/f100_10d_sd1003/ekfac/scores.grad_dot.margin_docw.npz | Other | 1.2 MB | 50c867d237d9 |
| v2/f100_10d_sd1003/ekfac/scores.grad_dot.margin_sum.npz | Other | 1.5 MB | 00442deb5d06 |
| v2/f100_10d_sd1003/ekfac/scores.grad_dot.margin_top10.npz | Other | 1.4 MB | 73af24088370 |
| v2/f100_10d_sd1003/ekfac/scores.grad_dot.margin_top3.npz | Other | 1.4 MB | 9f4f24d2c25c |
| v2/f100_10d_sd1003/ekfac/scores.grad_sim.ce.npz | Other | 1.5 MB | 809a1d0542bb |
| v2/f100_10d_sd1003/ekfac/scores.grad_sim.margin.npz | Other | 1.5 MB | 2fecfe8f53c1 |
| v2/f100_10d_sd1003/ekfac/scores.grad_sim.margin_docw.npz | Other | 1.5 MB | 191a50ca2adb |
| v2/f100_10d_sd1003/ekfac/scores.if_ekfac.margin.npz | Other | 764.9 KB | ae32fd36d3ec |
| v2/f100_10d_sd1003/ekfac/scores.if_ekfac.margin_docw.npz | Other | 1.2 MB | dcb47dd2fd27 |
| v2/f100_10d_sd1003/ekfac/scores.if_ekfac.margin_sum.npz | Other | 1.5 MB | 2004897db7b6 |
| v2/f100_10d_sd1003/ekfac/scores.if_ekfac.margin_top10.npz | Other | 1.4 MB | 1ae470805a32 |
| v2/f100_10d_sd1003/ekfac/scores.if_ekfac.margin_top3.npz | Other | 1.4 MB | 8244cd4f91e4 |
| v2/f100_10d_sd1003/ekfac/scores.npz | Other | 758.8 KB | 8b8aaa12f117 |
| v2/f100_10d_sd1003/ekfac/tokens.grad_dot.ce.npz | Other | 375.7 MB | b201da9ff412 |
| v2/f100_10d_sd1003/ekfac/tokens.grad_dot.margin.npz | Other | 367.4 MB | a34b559bc961 |
| v2/f100_10d_sd1003/ekfac/tokens.if_ekfac.ce.npz | Other | 376.1 MB | 817a5f0de165 |
| v2/f100_10d_sd1003/ekfac/tokens.if_ekfac.margin.npz | Other | 369.5 MB | b7713523894a |
| v2/f100_10d_sd1003/ekfac/tokens.meta.npz | Other | 701.8 KB | 55428f25457b |
| v2/f100_10d_sd1003/sketch/scores.logra.ce.npz | Other | 1.5 MB | 9e0173673f1d |
| v2/f100_10d_sd1003/sketch/scores.logra.margin.npz | Other | 1.5 MB | ac86016378db |
| v2/f100_10d_sd1003/sketch/scores.logra.margin_docw.npz | Other | 1.5 MB | c35a3bc73747 |
| v2/f100_10d_sd1003/sketch/scores.logra.margin_sum.npz | Other | 1.5 MB | a5b8e31d4810 |
| v2/f100_10d_sd1003/sketch/scores.logra.margin_top10.npz | Other | 1.4 MB | ef9c9d02017d |
| v2/f100_10d_sd1003/sketch/scores.logra.margin_top3.npz | Other | 1.4 MB | 983e6dae03f9 |
| v2/f100_10d_sd1003/sketch/scores.logra_dot.ce.npz | Other | 1.5 MB | 0ba69148c0cb |
| v2/f100_10d_sd1003/sketch/scores.logra_dot.margin.npz | Other | 1.5 MB | e8d61fc30e16 |
| v2/f100_10d_sd1003/sketch/scores.logra_dot.margin_docw.npz | Other | 1.5 MB | 4c37545a6065 |
| v2/f100_10d_sd1003/sketch/scores.logra_dot.margin_sum.npz | Other | 1.5 MB | 576f76207316 |
| v2/f100_10d_sd1003/sketch/scores.logra_dot.margin_top10.npz | Other | 1.4 MB | f4aca358602c |
| v2/f100_10d_sd1003/sketch/scores.logra_dot.margin_top3.npz | Other | 1.4 MB | d7e057112cdb |
| v2/f100_10d_sd1003/sketch/scores.npz | Other | 1.5 MB | d9bf3e083467 |
| v2/f100_10d_sd1003/sketch/scores.trak.margin.npz | Other | 1.5 MB | 89cb97bc9566 |
| v2/f100_10d_sd1003/sketch/tokens.logra.margin.npz | Other | 367.9 MB | b6b3d8b0f02f |
| v2/f100_10d_sd1003/sketch/tokens.logra_dot.ce.npz | Other | 375.7 MB | 20bf04a56e27 |
| v2/f100_10d_sd1003/sketch/tokens.logra_dot.margin.npz | Other | 367.5 MB | 313e50c90e59 |
| v2/f100_10d_sd1003/sketch/tokens.meta.npz | Other | 701.8 KB | 55428f25457b |
| v2/f100_1d_sd1001/bm25/scores.bm25_prompt.npz | Other | 8.4 KB | 745570045223 |
| v2/f100_1d_sd1001/bm25/scores.npz | Other | 8.4 KB | 923139e1f6c1 |
| v2/f100_1d_sd1001/ekfac/scores.grad_dot.ce.npz | Other | 81.3 KB | 83603027e065 |
| v2/f100_1d_sd1001/ekfac/scores.grad_dot.margin.npz | Other | 68.3 KB | a72f2464e69a |
| v2/f100_1d_sd1001/ekfac/scores.grad_dot.margin_docw.npz | Other | 107.8 KB | d4ea71e8e9aa |
| v2/f100_1d_sd1001/ekfac/scores.grad_sim.ce.npz | Other | 154.4 KB | 115b41f93cbd |
| v2/f100_1d_sd1001/ekfac/scores.grad_sim.margin.npz | Other | 146.3 KB | e2c31e75967f |
| v2/f100_1d_sd1001/ekfac/scores.grad_sim.margin_docw.npz | Other | 147.3 KB | 6b7f23ad27c9 |
| v2/f100_1d_sd1001/ekfac/scores.if_ekfac.margin.npz | Other | 72.4 KB | 16ae7835331d |
| v2/f100_1d_sd1001/ekfac/scores.if_ekfac.margin_docw.npz | Other | 113.0 KB | 9398eeb47d5b |
| v2/f100_1d_sd1001/ekfac/scores.npz | Other | 80.8 KB | 448c366d60c9 |
| v2/f100_1d_sd1001/embed/scores.embed_base.npz | Other | 186.1 KB | 2c27d6e9a6e1 |
| v2/f100_1d_sd1001/embed/scores.npz | Other | 167.7 KB | bacf72c4a501 |
| v2/f100_1d_sd1001/sketch/scores.logra.ce.npz | Other | 153.5 KB | 971bff533d50 |
| v2/f100_1d_sd1001/sketch/scores.logra.ce_top10.npz | Other | 147.7 KB | c633e2c4b20c |
| v2/f100_1d_sd1001/sketch/scores.logra.ce_top3.npz | Other | 148.5 KB | 41558d7158db |
| v2/f100_1d_sd1001/sketch/scores.logra.margin.npz | Other | 153.3 KB | c608d84dbd42 |
| v2/f100_1d_sd1001/sketch/scores.logra.margin_docw.npz | Other | 153.5 KB | f7dec29ce71f |
| v2/f100_1d_sd1001/sketch/scores.logra.margin_sum.npz | Other | 153.5 KB | fa8cd37f568d |
| v2/f100_1d_sd1001/sketch/scores.logra.margin_top10.npz | Other | 143.3 KB | d8008dc82de1 |
| v2/f100_1d_sd1001/sketch/scores.logra.margin_top3.npz | Other | 145.2 KB | 7ce9f2896067 |
| v2/f100_1d_sd1001/sketch/scores.logra_dot.ce.npz | Other | 154.0 KB | f71d17eafbfc |
| v2/f100_1d_sd1001/sketch/scores.logra_dot.ce_top10.npz | Other | 152.5 KB | d4b922a55284 |
| v2/f100_1d_sd1001/sketch/scores.logra_dot.ce_top3.npz | Other | 152.8 KB | 6f447f12a6f2 |
| v2/f100_1d_sd1001/sketch/scores.logra_dot.margin.npz | Other | 148.0 KB | 11266a4ac6db |
| v2/f100_1d_sd1001/sketch/scores.logra_dot.margin_docw.npz | Other | 148.5 KB | cf708b2131b7 |
| v2/f100_1d_sd1001/sketch/scores.logra_dot.margin_sum.npz | Other | 148.3 KB | f9a4c9fb8c5c |
| v2/f100_1d_sd1001/sketch/scores.logra_dot.margin_top10.npz | Other | 143.3 KB | 3106c333d0fd |
| v2/f100_1d_sd1001/sketch/scores.logra_dot.margin_top3.npz | Other | 146.0 KB | 7c38536c86c8 |
| v2/f100_1d_sd1001/sketch/scores.npz | Other | 146.6 KB | b7772f936070 |
| v2/f100_1d_sd1001/sketch/scores.trackstar.ce.npz | Other | 155.8 KB | 119a1e654312 |
| v2/f100_1d_sd1001/sketch/scores.trackstar.ce_top10.npz | Other | 148.5 KB | 3fb72d0cfd36 |
| v2/f100_1d_sd1001/sketch/scores.trackstar.ce_top3.npz | Other | 149.0 KB | e1005597bcd7 |
| v2/f100_1d_sd1001/sketch/scores.trackstar.margin.npz | Other | 155.6 KB | 24c2e46da45a |
| v2/f100_1d_sd1001/sketch/scores.trackstar.margin_docw.npz | Other | 156.3 KB | d5b1f608e1d4 |
| v2/f100_1d_sd1001/sketch/scores.trackstar.margin_top10.npz | Other | 142.2 KB | f7182a008a47 |
| v2/f100_1d_sd1001/sketch/scores.trackstar.margin_top3.npz | Other | 145.4 KB | b520e65cdf2b |
| v2/f100_1d_sd1001/sketch/scores.trak.ce_top10.npz | Other | 148.1 KB | d23f1b70dd2d |
| v2/f100_1d_sd1001/sketch/scores.trak.ce_top3.npz | Other | 147.8 KB | 12f217be592a |
| v2/f100_1d_sd1001/sketch/scores.trak.margin.npz | Other | 153.7 KB | 4c4727320849 |
| v2/f100_1d_sd1001/sketch/scores.trak.margin_sum.npz | Other | 154.6 KB | a180ce558af0 |
| v2/f100_1d_sd1001/sketch/scores.trak.margin_top10.npz | Other | 147.7 KB | d12919b1becb |
| v2/f100_1d_sd1001/sketch/scores.trak.margin_top3.npz | Other | 147.9 KB | 96bf5cc54b92 |
| v2/f100_1d_sd1001/sketch/scores.trak_nores.ce.npz | Other | 146.2 KB | a8e638dc2c2f |
| v2/f100_1d_sd1001/sketch/scores.trak_nores.ce_top10.npz | Other | 146.9 KB | fb7a5df0a276 |
| v2/f100_1d_sd1001/sketch/scores.trak_nores.ce_top3.npz | Other | 147.4 KB | 1c0e0917724e |
| v2/f100_1d_sd1001/sketch/scores.trak_nores.margin.npz | Other | 153.7 KB | b67a1bbb3adf |
| v2/f100_1d_sd1001/sketch/scores.trak_nores.margin_sum.npz | Other | 153.8 KB | edf9c3e1c385 |
| v2/f100_1d_sd1001/sketch/scores.trak_nores.margin_top10.npz | Other | 146.0 KB | 77dc415c0c05 |
| v2/f100_1d_sd1001/sketch/scores.trak_nores.margin_top3.npz | Other | 146.9 KB | 0332753eee53 |
| v2/f100_1d_sd1001/sketch/tokens.logra.ce.npz | Other | 37.8 MB | 7e4807504bb1 |
| v2/f100_1d_sd1001/sketch/tokens.logra.margin.npz | Other | 37.4 MB | 57487a7e4937 |
| v2/f100_1d_sd1001/sketch/tokens.logra_dot.ce.npz | Other | 37.8 MB | 9d9ac624980f |
| v2/f100_1d_sd1001/sketch/tokens.logra_dot.margin.npz | Other | 37.3 MB | 3031d96f2cef |
| v2/f100_1d_sd1001/sketch/tokens.meta.npz | Other | 66.9 KB | 5178856c8fd9 |
| v2/f100_1d_sd1001/sketch/tokens.trackstar.ce.npz | Other | 37.8 MB | 6a880ce270fc |
| v2/f100_1d_sd1001/sketch/tokens.trackstar.margin.npz | Other | 37.4 MB | 889ce78f22a7 |
| v2/f100_1d_sd1001/sketch/tokens.trak.ce.npz | Other | 37.9 MB | 7eb8b33e427a |
| v2/f100_1d_sd1001/sketch/tokens.trak.margin.npz | Other | 37.3 MB | bd725feb3e69 |
| v2/f100_1d_sd1001/source/scores.npz | Other | 153.7 KB | 9623aa4d8fd1 |
| v2/f100_1d_sd1001/source/scores.source.margin.npz | Other | 147.9 KB | 115d2480bab7 |
| v2/f100_1d_sd1001/source/scores.source.margin_docw.npz | Other | 148.7 KB | 6535d4cfb403 |
| v2/f100_1d_sd1001/tracin/scores.npz | Other | 154.3 KB | 38ad82b1c3e8 |
| v2/f100_1d_sd1001/tracin/scores.tracin.ce_top10.npz | Other | 147.8 KB | 6672f979c5ca |
| v2/f100_1d_sd1001/tracin/scores.tracin.ce_top3.npz | Other | 147.5 KB | a6eea66628a8 |
| v2/f100_1d_sd1001/tracin/scores.tracin.margin.npz | Other | 149.5 KB | b898ef6488d5 |
| v2/f100_1d_sd1001/tracin/scores.tracin.margin_docw.npz | Other | 150.4 KB | 8e584f9f494d |
| v2/f100_1d_sd1001/tracin/scores.tracin.margin_sum.npz | Other | 149.7 KB | 0818c4138924 |
| v2/f100_1d_sd1001/tracin/scores.tracin.margin_top10.npz | Other | 146.4 KB | 0235b75b9a02 |
| v2/f100_1d_sd1001/tracin/scores.tracin.margin_top3.npz | Other | 145.2 KB | 9bcdb42e8d0e |
| v2/f100_1d_sd1001/tracin/scores.tracin_cos.ce.npz | Other | 153.6 KB | c5741d7a1b6e |
| v2/f100_1d_sd1001/tracin/scores.tracin_cos.margin.npz | Other | 148.7 KB | ee7ea05e5b94 |
| v2/f100_1d_sd1001/tracin/scores.tracin_cos.margin_docw.npz | Other | 150.4 KB | a879cd88f6f0 |
| v2/f100_1d_sd1001/tracin/tokens.meta.npz | Other | 66.9 KB | 5178856c8fd9 |
| v2/f100_1d_sd1001/tracin/tokens.tracin.ce.npz | Other | 37.8 MB | 6a80d04474a2 |
| v2/f100_1d_sd1001/tracin/tokens.tracin.margin.npz | Other | 37.3 MB | cc4932b3990b |
| v2/f100_1d_sd1002/ekfac/scores.grad_dot.ce.npz | Other | 82.8 KB | 599826c1d17e |
| v2/f100_1d_sd1002/ekfac/scores.grad_dot.ce_top10.npz | Other | 152.8 KB | 5f330dad8638 |
| v2/f100_1d_sd1002/ekfac/scores.grad_dot.ce_top3.npz | Other | 153.0 KB | 40b44c0ad317 |
| v2/f100_1d_sd1002/ekfac/scores.grad_dot.margin.npz | Other | 74.6 KB | e5d98e26f366 |
| v2/f100_1d_sd1002/ekfac/scores.grad_dot.margin_docw.npz | Other | 114.8 KB | 8e4bd36b65d8 |
| v2/f100_1d_sd1002/ekfac/scores.grad_dot.margin_sum.npz | Other | 149.6 KB | 81c28ba186c9 |
| v2/f100_1d_sd1002/ekfac/scores.grad_dot.margin_top10.npz | Other | 144.8 KB | 2b97598c8299 |
| v2/f100_1d_sd1002/ekfac/scores.grad_dot.margin_top3.npz | Other | 147.0 KB | 66a0763821d7 |
| v2/f100_1d_sd1002/ekfac/scores.grad_sim.ce.npz | Other | 154.6 KB | dc4e1be10b4c |
| v2/f100_1d_sd1002/ekfac/scores.grad_sim.margin.npz | Other | 148.9 KB | 0116d19d5933 |
| v2/f100_1d_sd1002/ekfac/scores.grad_sim.margin_docw.npz | Other | 150.1 KB | b100e7706596 |
| v2/f100_1d_sd1002/ekfac/scores.if_ekfac.ce_top10.npz | Other | 145.8 KB | ce8da5dd1965 |
| v2/f100_1d_sd1002/ekfac/scores.if_ekfac.ce_top3.npz | Other | 147.2 KB | c1bb84842ce1 |
| v2/f100_1d_sd1002/ekfac/scores.if_ekfac.margin.npz | Other | 79.7 KB | b3f6e073fe74 |
| v2/f100_1d_sd1002/ekfac/scores.if_ekfac.margin_docw.npz | Other | 120.5 KB | 8600176a382c |
| v2/f100_1d_sd1002/ekfac/scores.if_ekfac.margin_sum.npz | Other | 153.0 KB | a16cca35f4f3 |
| v2/f100_1d_sd1002/ekfac/scores.if_ekfac.margin_top10.npz | Other | 147.3 KB | 3e6d8fded6e6 |
| v2/f100_1d_sd1002/ekfac/scores.if_ekfac.margin_top3.npz | Other | 148.0 KB | f89ceb1177dd |
| v2/f100_1d_sd1002/ekfac/scores.npz | Other | 80.9 KB | 1abef6efaede |
| v2/f100_1d_sd1002/ekfac/tokens.grad_dot.ce.npz | Other | 37.8 MB | 45cac4b559b5 |
| v2/f100_1d_sd1002/ekfac/tokens.grad_dot.margin.npz | Other | 37.3 MB | 2ed5db2fd3c2 |
| v2/f100_1d_sd1002/ekfac/tokens.if_ekfac.ce.npz | Other | 37.8 MB | 3f0c15abadfd |
| v2/f100_1d_sd1002/ekfac/tokens.if_ekfac.margin.npz | Other | 37.5 MB | 40349ad60db3 |
| v2/f100_1d_sd1002/ekfac/tokens.meta.npz | Other | 67.9 KB | d2243d3c7c52 |
| v2/f100_1d_sd1002/sketch/scores.logra.ce.npz | Other | 153.4 KB | efe0c9622095 |
| v2/f100_1d_sd1002/sketch/scores.logra.ce_top10.npz | Other | 148.1 KB | a1cafaa3d5ae |
| v2/f100_1d_sd1002/sketch/scores.logra.ce_top3.npz | Other | 148.6 KB | f95813e0113a |
| v2/f100_1d_sd1002/sketch/scores.logra.margin.npz | Other | 153.4 KB | 3daa730b04e4 |
| v2/f100_1d_sd1002/sketch/scores.logra.margin_docw.npz | Other | 153.9 KB | f6d7b43b1a41 |
| v2/f100_1d_sd1002/sketch/scores.logra.margin_sum.npz | Other | 153.6 KB | 0359bcc6fa04 |
| v2/f100_1d_sd1002/sketch/scores.logra.margin_top10.npz | Other | 145.2 KB | 7d9a03dd7f8b |
| v2/f100_1d_sd1002/sketch/scores.logra.margin_top3.npz | Other | 143.9 KB | aae2efe6b14a |
| v2/f100_1d_sd1002/sketch/scores.logra_dot.ce.npz | Other | 153.8 KB | a014a4651a13 |
| v2/f100_1d_sd1002/sketch/scores.logra_dot.ce_top10.npz | Other | 151.9 KB | b9cb426e9387 |
| v2/f100_1d_sd1002/sketch/scores.logra_dot.ce_top3.npz | Other | 152.3 KB | 22ba4f469731 |
| v2/f100_1d_sd1002/sketch/scores.logra_dot.margin.npz | Other | 149.5 KB | 7f3d8f2e5246 |
| v2/f100_1d_sd1002/sketch/scores.logra_dot.margin_docw.npz | Other | 150.7 KB | 8aee99b3bf3b |
| v2/f100_1d_sd1002/sketch/scores.logra_dot.margin_sum.npz | Other | 149.6 KB | 33d62e66f078 |
| v2/f100_1d_sd1002/sketch/scores.logra_dot.margin_top10.npz | Other | 144.8 KB | 6c1cb15b6131 |
| v2/f100_1d_sd1002/sketch/scores.logra_dot.margin_top3.npz | Other | 143.2 KB | 6afdf0840865 |
| v2/f100_1d_sd1002/sketch/scores.npz | Other | 148.6 KB | 2d6f0fa9da14 |
| v2/f100_1d_sd1002/sketch/scores.trackstar.ce.npz | Other | 155.9 KB | d4cd67da5f79 |
| v2/f100_1d_sd1002/sketch/scores.trackstar.ce_top10.npz | Other | 148.5 KB | 86e8b597e0be |
| v2/f100_1d_sd1002/sketch/scores.trackstar.ce_top3.npz | Other | 148.9 KB | aef883128391 |
| v2/f100_1d_sd1002/sketch/scores.trackstar.margin.npz | Other | 155.6 KB | a8568e9b5f6b |
| v2/f100_1d_sd1002/sketch/scores.trackstar.margin_docw.npz | Other | 156.2 KB | 8415204c575c |
| v2/f100_1d_sd1002/sketch/scores.trackstar.margin_top10.npz | Other | 142.1 KB | 196996803a85 |
| v2/f100_1d_sd1002/sketch/scores.trackstar.margin_top3.npz | Other | 144.0 KB | a19060b13b81 |
| v2/f100_1d_sd1002/sketch/scores.trak.ce_top10.npz | Other | 149.7 KB | 3ccadf86520e |
| v2/f100_1d_sd1002/sketch/scores.trak.ce_top3.npz | Other | 149.6 KB | 300866f9e386 |
| v2/f100_1d_sd1002/sketch/scores.trak.margin.npz | Other | 153.4 KB | 5a5f61abb405 |
| v2/f100_1d_sd1002/sketch/scores.trak.margin_sum.npz | Other | 154.3 KB | a05a28de01fd |
| v2/f100_1d_sd1002/sketch/scores.trak.margin_top10.npz | Other | 147.1 KB | 076f48bd6130 |
| v2/f100_1d_sd1002/sketch/scores.trak.margin_top3.npz | Other | 147.8 KB | e5bb19119c00 |
| v2/f100_1d_sd1002/sketch/scores.trak_nores.ce.npz | Other | 149.1 KB | 22932642ec54 |
| v2/f100_1d_sd1002/sketch/scores.trak_nores.ce_top10.npz | Other | 148.7 KB | 7a8a4810921f |
| v2/f100_1d_sd1002/sketch/scores.trak_nores.ce_top3.npz | Other | 148.8 KB | d065718ed26c |
| v2/f100_1d_sd1002/sketch/scores.trak_nores.margin.npz | Other | 154.0 KB | 54f6e6356e27 |
| v2/f100_1d_sd1002/sketch/scores.trak_nores.margin_sum.npz | Other | 154.0 KB | 5103de42b23f |
| v2/f100_1d_sd1002/sketch/scores.trak_nores.margin_top10.npz | Other | 146.9 KB | 46cab6c78dd2 |
| v2/f100_1d_sd1002/sketch/scores.trak_nores.margin_top3.npz | Other | 146.8 KB | 00637e02cc73 |
| v2/f100_1d_sd1002/sketch/tokens.logra.ce.npz | Other | 37.8 MB | 958c0921f00c |
| v2/f100_1d_sd1002/sketch/tokens.logra.margin.npz | Other | 37.4 MB | e81365ac2a51 |
| v2/f100_1d_sd1002/sketch/tokens.logra_dot.ce.npz | Other | 37.8 MB | f768f0e4d795 |
| v2/f100_1d_sd1002/sketch/tokens.logra_dot.margin.npz | Other | 37.3 MB | 4d54655d6f05 |
| v2/f100_1d_sd1002/sketch/tokens.meta.npz | Other | 67.8 KB | 4cc5b546d1ad |
| v2/f100_1d_sd1002/sketch/tokens.trackstar.ce.npz | Other | 37.8 MB | c82597316344 |
| v2/f100_1d_sd1002/sketch/tokens.trackstar.margin.npz | Other | 37.4 MB | bb5b7580443a |
| v2/f100_1d_sd1002/sketch/tokens.trak.ce.npz | Other | 37.8 MB | d0c9c4e56106 |
| v2/f100_1d_sd1002/sketch/tokens.trak.margin.npz | Other | 37.3 MB | 107d57436d33 |
| v2/f100_1d_sd1002/source/scores.npz | Other | 153.8 KB | 8f91763e77ef |
| v2/f100_1d_sd1002/source/scores.source.margin.npz | Other | 150.6 KB | b9c0055a987f |
| v2/f100_1d_sd1002/source/scores.source.margin_docw.npz | Other | 150.6 KB | e3c26bc95e8b |
| v2/f100_1d_sd1002/tracin/scores.npz | Other | 154.4 KB | ef4ed182595a |
| v2/f100_1d_sd1002/tracin/scores.tracin.margin.npz | Other | 151.3 KB | ee2660dba9d8 |
| v2/f100_1d_sd1002/tracin/scores.tracin.margin_docw.npz | Other | 151.9 KB | 6ba0b4291f8c |
| v2/f100_1d_sd1002/tracin/scores.tracin_cos.ce.npz | Other | 153.6 KB | 4d24256f3b0c |
| v2/f100_1d_sd1002/tracin/scores.tracin_cos.margin.npz | Other | 151.0 KB | fe6be8d499d3 |
| v2/f100_1d_sd1002/tracin/scores.tracin_cos.margin_docw.npz | Other | 152.1 KB | 9fbe665b2928 |
| v2/f100_1d_sd1003/ekfac/scores.grad_dot.ce.npz | Other | 80.6 KB | 8fe17a2bb606 |
| v2/f100_1d_sd1003/ekfac/scores.grad_dot.ce_top10.npz | Other | 153.9 KB | 9584b3372916 |
| v2/f100_1d_sd1003/ekfac/scores.grad_dot.ce_top3.npz | Other | 154.1 KB | 21c6ed34626f |
| v2/f100_1d_sd1003/ekfac/scores.grad_dot.margin.npz | Other | 66.4 KB | e8d929cedf42 |
| v2/f100_1d_sd1003/ekfac/scores.grad_dot.margin_docw.npz | Other | 107.5 KB | 437b99022281 |
| v2/f100_1d_sd1003/ekfac/scores.grad_dot.margin_sum.npz | Other | 147.0 KB | 718e1f6d23f0 |
| v2/f100_1d_sd1003/ekfac/scores.grad_dot.margin_top10.npz | Other | 144.8 KB | c02522f09682 |
| v2/f100_1d_sd1003/ekfac/scores.grad_dot.margin_top3.npz | Other | 146.6 KB | 173020e7ff73 |
| v2/f100_1d_sd1003/ekfac/scores.grad_sim.ce.npz | Other | 154.3 KB | 3155eb03a16b |
| v2/f100_1d_sd1003/ekfac/scores.grad_sim.margin.npz | Other | 146.4 KB | f802d505121e |
| v2/f100_1d_sd1003/ekfac/scores.grad_sim.margin_docw.npz | Other | 144.9 KB | 2058b9a601d0 |
| v2/f100_1d_sd1003/ekfac/scores.if_ekfac.ce_top10.npz | Other | 146.7 KB | 8b648b044a41 |
| v2/f100_1d_sd1003/ekfac/scores.if_ekfac.ce_top3.npz | Other | 147.7 KB | d1ec5f2734db |
| v2/f100_1d_sd1003/ekfac/scores.if_ekfac.margin.npz | Other | 71.9 KB | 5a8eb3eee8a0 |
| v2/f100_1d_sd1003/ekfac/scores.if_ekfac.margin_docw.npz | Other | 113.5 KB | d199d2d6df4d |
| v2/f100_1d_sd1003/ekfac/scores.if_ekfac.margin_sum.npz | Other | 148.6 KB | 6c4678f89a54 |
| v2/f100_1d_sd1003/ekfac/scores.if_ekfac.margin_top10.npz | Other | 147.9 KB | b7e9a1e684f9 |
| v2/f100_1d_sd1003/ekfac/scores.if_ekfac.margin_top3.npz | Other | 148.4 KB | 3d030b503541 |
| v2/f100_1d_sd1003/ekfac/scores.npz | Other | 80.2 KB | c4f5137bddea |
| v2/f100_1d_sd1003/ekfac/tokens.grad_dot.ce.npz | Other | 37.8 MB | a08ea6de2a1d |
| v2/f100_1d_sd1003/ekfac/tokens.grad_dot.margin.npz | Other | 37.4 MB | 016242e97b24 |
| v2/f100_1d_sd1003/ekfac/tokens.if_ekfac.ce.npz | Other | 37.7 MB | 77a75e296a16 |
| v2/f100_1d_sd1003/ekfac/tokens.if_ekfac.margin.npz | Other | 37.5 MB | d7f08937c0e6 |
| v2/f100_1d_sd1003/ekfac/tokens.meta.npz | Other | 69.9 KB | f55b0cd717d1 |
| v2/f100_1d_sd1003/sketch/scores.logra.ce.npz | Other | 153.5 KB | fad94e881059 |
| v2/f100_1d_sd1003/sketch/scores.logra.ce_top10.npz | Other | 148.2 KB | 3da850a91527 |
| v2/f100_1d_sd1003/sketch/scores.logra.ce_top3.npz | Other | 148.5 KB | 4b15357f8078 |
| v2/f100_1d_sd1003/sketch/scores.logra.margin.npz | Other | 152.0 KB | c13662569412 |
| v2/f100_1d_sd1003/sketch/scores.logra.margin_docw.npz | Other | 152.1 KB | 97e7cd0cdf45 |
| v2/f100_1d_sd1003/sketch/scores.logra.margin_sum.npz | Other | 152.2 KB | 8c71de230f3b |
| v2/f100_1d_sd1003/sketch/scores.logra.margin_top10.npz | Other | 145.6 KB | 8de0a50e85ed |
| v2/f100_1d_sd1003/sketch/scores.logra.margin_top3.npz | Other | 145.4 KB | ca9f8aad446c |
| v2/f100_1d_sd1003/sketch/scores.logra_dot.ce.npz | Other | 153.7 KB | 839d6c0afa60 |
| v2/f100_1d_sd1003/sketch/scores.logra_dot.ce_top10.npz | Other | 152.5 KB | b1b3fa711af7 |
| v2/f100_1d_sd1003/sketch/scores.logra_dot.ce_top3.npz | Other | 152.7 KB | ec2656274323 |
| v2/f100_1d_sd1003/sketch/scores.logra_dot.margin.npz | Other | 147.4 KB | fc4d9ead5423 |
| v2/f100_1d_sd1003/sketch/scores.logra_dot.margin_docw.npz | Other | 148.5 KB | 1619403adb2e |
| v2/f100_1d_sd1003/sketch/scores.logra_dot.margin_sum.npz | Other | 147.3 KB | 5394f9652d17 |
| v2/f100_1d_sd1003/sketch/scores.logra_dot.margin_top10.npz | Other | 146.2 KB | c5e1c15396fb |
| v2/f100_1d_sd1003/sketch/scores.logra_dot.margin_top3.npz | Other | 146.9 KB | 8f6f6bba4087 |
| v2/f100_1d_sd1003/sketch/scores.npz | Other | 146.6 KB | 3369fbb0bd96 |
| v2/f100_1d_sd1003/sketch/scores.trackstar.ce.npz | Other | 155.8 KB | b6929215906c |
| v2/f100_1d_sd1003/sketch/scores.trackstar.ce_top10.npz | Other | 148.5 KB | 4bb77470ff5e |
| v2/f100_1d_sd1003/sketch/scores.trackstar.ce_top3.npz | Other | 148.7 KB | f44cbdefd94a |
| v2/f100_1d_sd1003/sketch/scores.trackstar.margin.npz | Other | 154.3 KB | 1c10df43bc47 |
| v2/f100_1d_sd1003/sketch/scores.trackstar.margin_docw.npz | Other | 155.4 KB | edf77266fd7b |
| v2/f100_1d_sd1003/sketch/scores.trackstar.margin_top10.npz | Other | 142.4 KB | 1202c8513173 |
| v2/f100_1d_sd1003/sketch/scores.trackstar.margin_top3.npz | Other | 145.7 KB | 2958cc64b3fc |
| v2/f100_1d_sd1003/sketch/scores.trak.ce_top10.npz | Other | 148.2 KB | b8d45c2609d7 |
| v2/f100_1d_sd1003/sketch/scores.trak.ce_top3.npz | Other | 148.1 KB | c7228e5658be |
| v2/f100_1d_sd1003/sketch/scores.trak.margin.npz | Other | 153.8 KB | 805025feda72 |
| v2/f100_1d_sd1003/sketch/scores.trak.margin_sum.npz | Other | 154.6 KB | 142710411caf |
| v2/f100_1d_sd1003/sketch/scores.trak.margin_top10.npz | Other | 146.7 KB | 57c14ec5c189 |
| v2/f100_1d_sd1003/sketch/scores.trak.margin_top3.npz | Other | 147.0 KB | 5040a4880474 |
| v2/f100_1d_sd1003/sketch/scores.trak_nores.ce.npz | Other | 146.2 KB | 837aa0c07746 |
| v2/f100_1d_sd1003/sketch/scores.trak_nores.ce_top10.npz | Other | 147.1 KB | 755d72dfeff6 |
| v2/f100_1d_sd1003/sketch/scores.trak_nores.ce_top3.npz | Other | 147.3 KB | 2d6a9be3c93d |
| v2/f100_1d_sd1003/sketch/scores.trak_nores.margin.npz | Other | 153.8 KB | 5a8517128d75 |
| v2/f100_1d_sd1003/sketch/scores.trak_nores.margin_sum.npz | Other | 153.9 KB | a8edebc3998e |
| v2/f100_1d_sd1003/sketch/scores.trak_nores.margin_top10.npz | Other | 147.0 KB | 1f4b8335a04c |
| v2/f100_1d_sd1003/sketch/scores.trak_nores.margin_top3.npz | Other | 147.1 KB | dabd52621645 |
| v2/f100_1d_sd1003/sketch/tokens.logra.ce.npz | Other | 37.7 MB | 251530e0a3e5 |
| v2/f100_1d_sd1003/sketch/tokens.logra.margin.npz | Other | 37.4 MB | 9817b40552f4 |
| v2/f100_1d_sd1003/sketch/tokens.logra_dot.ce.npz | Other | 37.8 MB | 8843062639ac |
| v2/f100_1d_sd1003/sketch/tokens.logra_dot.margin.npz | Other | 37.3 MB | 7b24143779b5 |
| v2/f100_1d_sd1003/sketch/tokens.meta.npz | Other | 69.8 KB | 3e08e751042f |
| v2/f100_1d_sd1003/sketch/tokens.trackstar.ce.npz | Other | 37.7 MB | b23e4e466b62 |
| v2/f100_1d_sd1003/sketch/tokens.trackstar.margin.npz | Other | 37.3 MB | cafc3619a8ed |
| v2/f100_1d_sd1003/sketch/tokens.trak.ce.npz | Other | 37.8 MB | ffbce5302152 |
| v2/f100_1d_sd1003/sketch/tokens.trak.margin.npz | Other | 37.3 MB | 081ba7aaa005 |
| v2/f100_30d_sd1001/bm25/scores.bm25_prompt.npz | Other | 202.6 KB | e53d2c83fb53 |
| v2/f100_30d_sd1001/bm25/scores.npz | Other | 202.7 KB | 541d822f8f77 |
| v2/f100_30d_sd1001/embed/scores.embed_base.npz | Other | 5.3 MB | 01508fc23c90 |
| v2/f100_30d_sd1001/embed/scores.npz | Other | 4.9 MB | 95825fadbc27 |
| v2/f100_30d_sd1001/sketch/scores.logra.ce.npz | Other | 4.5 MB | 463573c65171 |
| v2/f100_30d_sd1001/sketch/scores.logra.margin.npz | Other | 4.4 MB | e73c5eda5478 |
| v2/f100_30d_sd1001/sketch/scores.logra.margin_docw.npz | Other | 4.4 MB | c78777310332 |
| v2/f100_30d_sd1001/sketch/scores.logra.margin_sum.npz | Other | 4.3 MB | 057cde77d476 |
| v2/f100_30d_sd1001/sketch/scores.logra.margin_top10.npz | Other | 4.2 MB | 59a1f6822e27 |
| v2/f100_30d_sd1001/sketch/scores.logra.margin_top3.npz | Other | 4.3 MB | 0dc7041122f3 |
| v2/f100_30d_sd1001/sketch/scores.logra_dot.ce.npz | Other | 4.5 MB | 33a3f873b144 |
| v2/f100_30d_sd1001/sketch/scores.logra_dot.margin.npz | Other | 4.4 MB | fbbcfe3b43f3 |
| v2/f100_30d_sd1001/sketch/scores.logra_dot.margin_docw.npz | Other | 4.4 MB | 58ddb3e868ef |
| v2/f100_30d_sd1001/sketch/scores.logra_dot.margin_sum.npz | Other | 4.3 MB | 1a3664696c55 |
| v2/f100_30d_sd1001/sketch/scores.logra_dot.margin_top10.npz | Other | 4.2 MB | d9bbab10f358 |
| v2/f100_30d_sd1001/sketch/scores.logra_dot.margin_top3.npz | Other | 4.2 MB | 237e8ab46873 |
| v2/f100_30d_sd1001/sketch/scores.npz | Other | 4.5 MB | 22692175c50f |
| v2/f100_30d_sd1001/sketch/scores.trak.margin.npz | Other | 4.5 MB | c23ef0feb1eb |
| v2/f100_30d_sd1001/sketch/tokens.logra.margin.npz | Other | 1.1 GB | 1d77772df342 |
| v2/f100_30d_sd1001/sketch/tokens.logra_dot.ce.npz | Other | 1.1 GB | 33043afbbdb2 |
| v2/f100_30d_sd1001/sketch/tokens.logra_dot.margin.npz | Other | 1.1 GB | 326b67fc7c27 |
| v2/f100_30d_sd1001/sketch/tokens.meta.npz | Other | 2.7 MB | d33b3a4ace7b |
| v2/f100_30d_sd1001/source/scores.npz | Other | 4.5 MB | 814ecd1a508b |
| v2/f100_30d_sd1001/source/scores.source.margin.npz | Other | 4.2 MB | 7ab367f9a9c2 |
| v2/f100_30d_sd1001/source/scores.source.margin_docw.npz | Other | 4.2 MB | 4dad9f3653d6 |
| v2/f100_30d_sd1002/sketch/scores.logra.ce.npz | Other | 4.5 MB | 93b8e55e4dcc |
| v2/f100_30d_sd1002/sketch/scores.logra.margin.npz | Other | 4.4 MB | b75995178994 |
| v2/f100_30d_sd1002/sketch/scores.logra.margin_docw.npz | Other | 4.4 MB | d0db8092c042 |
| v2/f100_30d_sd1002/sketch/scores.logra.margin_sum.npz | Other | 4.4 MB | e35856725df7 |
| v2/f100_30d_sd1002/sketch/scores.logra.margin_top10.npz | Other | 4.2 MB | 6ab0a57be7b0 |
| v2/f100_30d_sd1002/sketch/scores.logra.margin_top3.npz | Other | 4.3 MB | a5aaa078da66 |
| v2/f100_30d_sd1002/sketch/scores.logra_dot.ce.npz | Other | 4.5 MB | afcb69b5f1ae |
| v2/f100_30d_sd1002/sketch/scores.logra_dot.margin.npz | Other | 4.4 MB | f3e04c053442 |
| v2/f100_30d_sd1002/sketch/scores.logra_dot.margin_docw.npz | Other | 4.4 MB | 0369ac0413a8 |
| v2/f100_30d_sd1002/sketch/scores.logra_dot.margin_sum.npz | Other | 4.3 MB | 8bd39e796218 |
| v2/f100_30d_sd1002/sketch/scores.logra_dot.margin_top10.npz | Other | 4.2 MB | 96ac2fd68ccc |
| v2/f100_30d_sd1002/sketch/scores.logra_dot.margin_top3.npz | Other | 4.2 MB | 17c8b01a39bb |
| v2/f100_30d_sd1002/sketch/scores.npz | Other | 4.5 MB | bf5c45acad7d |
| v2/f100_30d_sd1002/sketch/scores.trak.margin.npz | Other | 4.5 MB | dd1c22b7b873 |
| v2/f100_30d_sd1002/sketch/tokens.logra.margin.npz | Other | 1.1 GB | 08aa8976970d |
| v2/f100_30d_sd1002/sketch/tokens.logra_dot.ce.npz | Other | 1.1 GB | b131b3bf3ca6 |
| v2/f100_30d_sd1002/sketch/tokens.logra_dot.margin.npz | Other | 1.1 GB | 58ea34c82fa9 |
| v2/f100_30d_sd1002/sketch/tokens.meta.npz | Other | 2.7 MB | dc460ee3a406 |
| v2/f100_30d_sd1002/source/scores.npz | Other | 4.5 MB | b4a57237e269 |
| v2/f100_30d_sd1002/source/scores.source.margin.npz | Other | 4.3 MB | 1945b6d8c807 |
| v2/f100_30d_sd1002/source/scores.source.margin_docw.npz | Other | 4.3 MB | 9075de50ea2a |
| v2/f100_30d_sd1003/ekfac/scores.grad_dot.ce.npz | Other | 2.2 MB | d27fae37d527 |
| v2/f100_30d_sd1003/ekfac/scores.grad_dot.ce_top10.npz | Other | 4.2 MB | 2ff42ae4f905 |
| v2/f100_30d_sd1003/ekfac/scores.grad_dot.ce_top3.npz | Other | 4.2 MB | fd643090f7bd |
| v2/f100_30d_sd1003/ekfac/scores.grad_dot.margin.npz | Other | 1.8 MB | 864a847c031a |
| v2/f100_30d_sd1003/ekfac/scores.grad_dot.margin_docw.npz | Other | 3.1 MB | c51a291d884d |
| v2/f100_30d_sd1003/ekfac/scores.grad_dot.margin_sum.npz | Other | 4.2 MB | 62b47bad0e94 |
| v2/f100_30d_sd1003/ekfac/scores.grad_dot.margin_top10.npz | Other | 4.2 MB | 13f85e968b9d |
| v2/f100_30d_sd1003/ekfac/scores.grad_dot.margin_top3.npz | Other | 4.2 MB | e7decd5d1982 |
| v2/f100_30d_sd1003/ekfac/scores.grad_sim.ce.npz | Other | 4.5 MB | 046f9eb5aa3a |
| v2/f100_30d_sd1003/ekfac/scores.grad_sim.margin.npz | Other | 4.3 MB | 642a28691202 |
| v2/f100_30d_sd1003/ekfac/scores.grad_sim.margin_docw.npz | Other | 4.3 MB | 691c8d5f7bce |
| v2/f100_30d_sd1003/ekfac/scores.if_ekfac.ce_top10.npz | Other | 4.2 MB | 586f55764b64 |
| v2/f100_30d_sd1003/ekfac/scores.if_ekfac.ce_top3.npz | Other | 4.3 MB | 850a8e823b8c |
| v2/f100_30d_sd1003/ekfac/scores.if_ekfac.margin.npz | Other | 2.1 MB | 4a9929cf6039 |
| v2/f100_30d_sd1003/ekfac/scores.if_ekfac.margin_docw.npz | Other | 3.4 MB | b29b8a46a69f |
| v2/f100_30d_sd1003/ekfac/scores.if_ekfac.margin_sum.npz | Other | 4.4 MB | 6263a3b09d4a |
| v2/f100_30d_sd1003/ekfac/scores.if_ekfac.margin_top10.npz | Other | 4.3 MB | 986717ddbfee |
| v2/f100_30d_sd1003/ekfac/scores.if_ekfac.margin_top3.npz | Other | 4.3 MB | 379249735c08 |
| v2/f100_30d_sd1003/ekfac/scores.npz | Other | 2.3 MB | 42603a589f3a |
| v2/f100_30d_sd1003/ekfac/tokens.grad_dot.ce.npz | Other | 1.1 GB | b419a082958d |
| v2/f100_30d_sd1003/ekfac/tokens.grad_dot.margin.npz | Other | 1.1 GB | 16ea18e90b43 |
| v2/f100_30d_sd1003/ekfac/tokens.if_ekfac.ce.npz | Other | 1.1 GB | 7590e14948cc |
| v2/f100_30d_sd1003/ekfac/tokens.if_ekfac.margin.npz | Other | 1.1 GB | 98a73d858f5f |
| v2/f100_30d_sd1003/ekfac/tokens.meta.npz | Other | 2.7 MB | ac727d72ce53 |
| v2/f100_30d_sd1003/sketch/scores.logra.ce.npz | Other | 4.5 MB | c12d999679e1 |
| v2/f100_30d_sd1003/sketch/scores.logra.margin.npz | Other | 4.4 MB | 2ec85fc01708 |
| v2/f100_30d_sd1003/sketch/scores.logra.margin_docw.npz | Other | 4.4 MB | 21a68395729e |
| v2/f100_30d_sd1003/sketch/scores.logra.margin_sum.npz | Other | 4.4 MB | 9838621e4b2a |
| v2/f100_30d_sd1003/sketch/scores.logra.margin_top10.npz | Other | 4.2 MB | 3600c8b2b2a2 |
| v2/f100_30d_sd1003/sketch/scores.logra.margin_top3.npz | Other | 4.3 MB | 88f02932b6fa |
| v2/f100_30d_sd1003/sketch/scores.logra_dot.ce.npz | Other | 4.5 MB | cba659ce4b8c |
| v2/f100_30d_sd1003/sketch/scores.logra_dot.margin.npz | Other | 4.4 MB | eb0c385a02b3 |
| v2/f100_30d_sd1003/sketch/scores.logra_dot.margin_docw.npz | Other | 4.4 MB | 2f7e87c0bd52 |
| v2/f100_30d_sd1003/sketch/scores.logra_dot.margin_sum.npz | Other | 4.3 MB | 7717ed29e933 |
| v2/f100_30d_sd1003/sketch/scores.logra_dot.margin_top10.npz | Other | 4.2 MB | 5c700c9860be |
| v2/f100_30d_sd1003/sketch/scores.logra_dot.margin_top3.npz | Other | 4.2 MB | a3fdc5c0731e |
| v2/f100_30d_sd1003/sketch/scores.npz | Other | 4.5 MB | 3b68cff5cec6 |
| v2/f100_30d_sd1003/sketch/scores.trak.margin.npz | Other | 4.5 MB | cd07c94457f6 |
| v2/f100_30d_sd1003/sketch/tokens.logra.margin.npz | Other | 1.1 GB | 2b5ee35196f8 |
| v2/f100_30d_sd1003/sketch/tokens.logra_dot.ce.npz | Other | 1.1 GB | d0e093454d80 |
| v2/f100_30d_sd1003/sketch/tokens.logra_dot.margin.npz | Other | 1.1 GB | c5eb66de4363 |
| v2/f100_30d_sd1003/sketch/tokens.meta.npz | Other | 2.7 MB | af064e0d25a8 |
| v2/f100_50d_sd1001/bm25/scores.bm25_prompt.npz | Other | 418.5 KB | fcdd9caf7897 |
| v2/f100_50d_sd1001/bm25/scores.npz | Other | 418.9 KB | 6a2f4ab3ac73 |
| v2/f100_50d_sd1001/embed/scores.embed_base.npz | Other | 8.9 MB | cc8db9c5a3c5 |
| v2/f100_50d_sd1001/embed/scores.npz | Other | 8.2 MB | daf5ee7f5868 |
| v2/f100_50d_sd1001/source/scores.npz | Other | 7.5 MB | 207aaf1a4b95 |
| v2/f100_50d_sd1001/source/scores.source.margin.npz | Other | 7.1 MB | 7654a6c7ced8 |
| v2/f100_50d_sd1001/source/scores.source.margin_docw.npz | Other | 7.1 MB | ab98463aa817 |
| v2/f100_50d_sd1002/sketch/scores.logra.ce.npz | Other | 7.5 MB | 7ccca9dfcc9c |
| v2/f100_50d_sd1002/sketch/scores.logra.margin.npz | Other | 7.1 MB | 4796b489a775 |
| v2/f100_50d_sd1002/sketch/scores.logra.margin_docw.npz | Other | 7.1 MB | 510095b36972 |
| v2/f100_50d_sd1002/sketch/scores.logra.margin_sum.npz | Other | 7.1 MB | 9737ffd3df68 |
| v2/f100_50d_sd1002/sketch/scores.logra.margin_top10.npz | Other | 7.1 MB | cf9a592b3d99 |
| v2/f100_50d_sd1002/sketch/scores.logra.margin_top3.npz | Other | 7.1 MB | 4c5598f394cd |
| v2/f100_50d_sd1002/sketch/scores.logra_dot.ce.npz | Other | 7.4 MB | 86d2a39d3ae4 |
| v2/f100_50d_sd1002/sketch/scores.logra_dot.margin.npz | Other | 7.1 MB | 887ed5feecaa |
| v2/f100_50d_sd1002/sketch/scores.logra_dot.margin_docw.npz | Other | 7.1 MB | 43c328ce356c |
| v2/f100_50d_sd1002/sketch/scores.logra_dot.margin_sum.npz | Other | 7.0 MB | d78db1b3581c |
| v2/f100_50d_sd1002/sketch/scores.logra_dot.margin_top10.npz | Other | 6.9 MB | 7da3c7a66698 |
| v2/f100_50d_sd1002/sketch/scores.logra_dot.margin_top3.npz | Other | 7.0 MB | 01704fb502dc |
| v2/f100_50d_sd1002/sketch/scores.npz | Other | 7.4 MB | d06c7b8445c3 |
| v2/f100_50d_sd1002/sketch/scores.trak.margin.npz | Other | 7.5 MB | 089087307be6 |
| v2/f100_50d_sd1002/sketch/tokens.logra.margin.npz | Other | 1.8 GB | 368b36404280 |
| v2/f100_50d_sd1002/sketch/tokens.logra_dot.ce.npz | Other | 1.8 GB | 14b7dbe9114f |
| v2/f100_50d_sd1002/sketch/tokens.logra_dot.margin.npz | Other | 1.8 GB | 987da5a17e23 |
| v2/f100_50d_sd1002/sketch/tokens.meta.npz | Other | 4.7 MB | dd7df3801adc |
| v2/f100_50d_sd1003/sketch/scores.logra.ce.npz | Other | 7.5 MB | 039b93998729 |
| v2/f100_50d_sd1003/sketch/scores.logra.margin.npz | Other | 7.1 MB | fab3857795ef |
| v2/f100_50d_sd1003/sketch/scores.logra.margin_docw.npz | Other | 7.1 MB | 7b16afd7e6fa |
| v2/f100_50d_sd1003/sketch/scores.logra.margin_sum.npz | Other | 7.0 MB | 49b2d2240189 |
| v2/f100_50d_sd1003/sketch/scores.logra.margin_top10.npz | Other | 7.1 MB | 604e7ea80316 |
| v2/f100_50d_sd1003/sketch/scores.logra.margin_top3.npz | Other | 7.0 MB | 9d1e3fb88632 |
| v2/f100_50d_sd1003/sketch/scores.logra_dot.ce.npz | Other | 7.4 MB | f6e50f232151 |
| v2/f100_50d_sd1003/sketch/scores.logra_dot.margin.npz | Other | 7.1 MB | a4924bfb407c |
| v2/f100_50d_sd1003/sketch/scores.logra_dot.margin_docw.npz | Other | 7.1 MB | 5852bd2c5cc9 |
| v2/f100_50d_sd1003/sketch/scores.logra_dot.margin_sum.npz | Other | 7.0 MB | 19bfd637611b |
| v2/f100_50d_sd1003/sketch/scores.logra_dot.margin_top10.npz | Other | 6.9 MB | 5aaad9a7e4ed |
| v2/f100_50d_sd1003/sketch/scores.logra_dot.margin_top3.npz | Other | 7.0 MB | c6964367d098 |
| v2/f100_50d_sd1003/sketch/scores.npz | Other | 7.4 MB | 0ffeda5db4c3 |
| v2/f100_50d_sd1003/sketch/scores.trak.margin.npz | Other | 7.5 MB | 0ef0073ac494 |
| v2/f100_50d_sd1003/sketch/tokens.logra.margin.npz | Other | 1.8 GB | 6af0735665d1 |
| v2/f100_50d_sd1003/sketch/tokens.logra_dot.ce.npz | Other | 1.8 GB | cb2949e6b4bd |
| v2/f100_50d_sd1003/sketch/tokens.logra_dot.margin.npz | Other | 1.8 GB | c8535c1062d1 |
| v2/f100_50d_sd1003/sketch/tokens.meta.npz | Other | 4.7 MB | af9fc8af30a1 |
| v2/f100_5d_sd1001/bm25/scores.bm25_prompt.npz | Other | 32.8 KB | f13e20f26827 |
| v2/f100_5d_sd1001/bm25/scores.npz | Other | 32.8 KB | a80bf14aa5eb |
| v2/f100_5d_sd1001/ekfac/scores.grad_dot.ce.npz | Other | 386.9 KB | 038d844ab788 |
| v2/f100_5d_sd1001/ekfac/scores.grad_dot.margin.npz | Other | 379.8 KB | 0f029edd7251 |
| v2/f100_5d_sd1001/ekfac/scores.grad_dot.margin_docw.npz | Other | 589.2 KB | d6cc673e4da0 |
| v2/f100_5d_sd1001/ekfac/scores.grad_dot.margin_sum.npz | Other | 740.0 KB | 9445b67ac209 |
| v2/f100_5d_sd1001/ekfac/scores.grad_dot.margin_top10.npz | Other | 708.0 KB | 25cfe78ecf02 |
| v2/f100_5d_sd1001/ekfac/scores.grad_dot.margin_top3.npz | Other | 715.5 KB | 84e74e482ab7 |
| v2/f100_5d_sd1001/ekfac/scores.grad_sim.ce.npz | Other | 751.1 KB | 7264981d5eac |
| v2/f100_5d_sd1001/ekfac/scores.grad_sim.margin.npz | Other | 748.3 KB | 7ee14a34f66a |
| v2/f100_5d_sd1001/ekfac/scores.grad_sim.margin_docw.npz | Other | 747.7 KB | 239aca31ceb0 |
| v2/f100_5d_sd1001/ekfac/scores.if_ekfac.margin.npz | Other | 383.5 KB | dea54a304825 |
| v2/f100_5d_sd1001/ekfac/scores.if_ekfac.margin_docw.npz | Other | 594.4 KB | 8eb35f656e97 |
| v2/f100_5d_sd1001/ekfac/scores.if_ekfac.margin_sum.npz | Other | 750.8 KB | b1e14934fb57 |
| v2/f100_5d_sd1001/ekfac/scores.if_ekfac.margin_top10.npz | Other | 713.6 KB | 0c2de0f05b3b |
| v2/f100_5d_sd1001/ekfac/scores.if_ekfac.margin_top3.npz | Other | 710.8 KB | 511f6122913b |
| v2/f100_5d_sd1001/ekfac/scores.npz | Other | 383.2 KB | 81ec0285106a |
| v2/f100_5d_sd1001/ekfac/tokens.grad_dot.ce.npz | Other | 189.2 MB | 4563064a2f6e |
| v2/f100_5d_sd1001/ekfac/tokens.grad_dot.margin.npz | Other | 186.3 MB | 668e5b33bb49 |
| v2/f100_5d_sd1001/ekfac/tokens.if_ekfac.ce.npz | Other | 189.0 MB | b931fa720081 |
| v2/f100_5d_sd1001/ekfac/tokens.if_ekfac.margin.npz | Other | 187.1 MB | fb8dcda3615d |
| v2/f100_5d_sd1001/ekfac/tokens.meta.npz | Other | 329.3 KB | 4e3a1167a034 |
| v2/f100_5d_sd1001/embed/scores.embed_base.npz | Other | 905.8 KB | 95a9e1e7157e |
| v2/f100_5d_sd1001/embed/scores.npz | Other | 822.9 KB | 4ec5e4a7e6a4 |
| v2/f100_5d_sd1001/sketch/scores.logra.ce.npz | Other | 749.4 KB | 3da66f505a92 |
| v2/f100_5d_sd1001/sketch/scores.logra.margin.npz | Other | 749.9 KB | f30754631da2 |
| v2/f100_5d_sd1001/sketch/scores.logra.margin_docw.npz | Other | 751.4 KB | 26dc592df757 |
| v2/f100_5d_sd1001/sketch/scores.logra.margin_sum.npz | Other | 749.3 KB | 41bc0ed86aad |
| v2/f100_5d_sd1001/sketch/scores.logra.margin_top10.npz | Other | 701.8 KB | 23d9cf804ead |
| v2/f100_5d_sd1001/sketch/scores.logra.margin_top3.npz | Other | 699.3 KB | 584b0cae4104 |
| v2/f100_5d_sd1001/sketch/scores.logra_dot.ce.npz | Other | 748.9 KB | a9ae4afae2e9 |
| v2/f100_5d_sd1001/sketch/scores.logra_dot.margin.npz | Other | 749.0 KB | b91d04291229 |
| v2/f100_5d_sd1001/sketch/scores.logra_dot.margin_docw.npz | Other | 751.6 KB | 991b50951319 |
| v2/f100_5d_sd1001/sketch/scores.logra_dot.margin_sum.npz | Other | 745.5 KB | da171dab8892 |
| v2/f100_5d_sd1001/sketch/scores.logra_dot.margin_top10.npz | Other | 693.9 KB | 9cac933a0123 |
| v2/f100_5d_sd1001/sketch/scores.logra_dot.margin_top3.npz | Other | 698.4 KB | 6c948c857808 |
| v2/f100_5d_sd1001/sketch/scores.npz | Other | 748.7 KB | 2ee6db97c0d2 |
| v2/f100_5d_sd1001/sketch/scores.trak.margin.npz | Other | 749.3 KB | a159cab9d3bc |
| v2/f100_5d_sd1001/sketch/tokens.logra.margin.npz | Other | 186.7 MB | 809e1c64a996 |
| v2/f100_5d_sd1001/sketch/tokens.logra_dot.ce.npz | Other | 189.2 MB | 790c5b96d7bf |
| v2/f100_5d_sd1001/sketch/tokens.logra_dot.margin.npz | Other | 186.4 MB | 3289c28f9194 |
| v2/f100_5d_sd1001/sketch/tokens.meta.npz | Other | 329.9 KB | ed980e508075 |
| v2/f100_5d_sd1001/source/scores.npz | Other | 750.1 KB | 5761bcbe0ce1 |
| v2/f100_5d_sd1001/source/scores.source.margin.npz | Other | 739.0 KB | 67fe35f8ddac |
| v2/f100_5d_sd1001/source/scores.source.margin_docw.npz | Other | 742.7 KB | 87fc5fe4831e |
| v2/f100_5d_sd1001/tracin/scores.npz | Other | 752.2 KB | 618be66e71ea |
| v2/f100_5d_sd1001/tracin/scores.tracin.ce_top10.npz | Other | 710.9 KB | 6d925ecf345f |
| v2/f100_5d_sd1001/tracin/scores.tracin.ce_top3.npz | Other | 717.6 KB | bd27ecb79c1a |
| v2/f100_5d_sd1001/tracin/scores.tracin.margin.npz | Other | 738.8 KB | eadf327bb103 |
| v2/f100_5d_sd1001/tracin/scores.tracin.margin_docw.npz | Other | 741.1 KB | 61ed682632b2 |
| v2/f100_5d_sd1001/tracin/scores.tracin.margin_sum.npz | Other | 735.5 KB | 3cfa82d80d78 |
| v2/f100_5d_sd1001/tracin/scores.tracin.margin_top10.npz | Other | 696.6 KB | 1500da81a9e2 |
| v2/f100_5d_sd1001/tracin/scores.tracin.margin_top3.npz | Other | 714.1 KB | b47365078c43 |
| v2/f100_5d_sd1001/tracin/scores.tracin_cos.ce.npz | Other | 748.7 KB | 82b85b31e545 |
| v2/f100_5d_sd1001/tracin/scores.tracin_cos.margin.npz | Other | 739.6 KB | a1b27da2ae8b |
| v2/f100_5d_sd1001/tracin/scores.tracin_cos.margin_docw.npz | Other | 738.4 KB | fd7e0d814549 |
| v2/f100_5d_sd1001/tracin/tokens.meta.npz | Other | 330.3 KB | d91bf48a19f2 |
| v2/f100_5d_sd1001/tracin/tokens.tracin.ce.npz | Other | 187.9 MB | 0fb79ef9a319 |
| v2/f100_5d_sd1001/tracin/tokens.tracin.margin.npz | Other | 186.3 MB | 832c0719271d |
| v2/f100_5d_sd1002/ekfac/scores.grad_dot.ce.npz | Other | 384.2 KB | f4c54917ef37 |
| v2/f100_5d_sd1002/ekfac/scores.grad_dot.margin.npz | Other | 376.9 KB | b4aa6960c26b |
| v2/f100_5d_sd1002/ekfac/scores.grad_dot.margin_docw.npz | Other | 585.5 KB | a86a878a66c1 |
| v2/f100_5d_sd1002/ekfac/scores.grad_sim.ce.npz | Other | 752.3 KB | 85b1c7131ab3 |
| v2/f100_5d_sd1002/ekfac/scores.grad_sim.margin.npz | Other | 745.1 KB | ca07e64d371f |
| v2/f100_5d_sd1002/ekfac/scores.grad_sim.margin_docw.npz | Other | 745.7 KB | 71290302502a |
| v2/f100_5d_sd1002/ekfac/scores.if_ekfac.margin.npz | Other | 383.6 KB | c35f3fc806d9 |
| v2/f100_5d_sd1002/ekfac/scores.if_ekfac.margin_docw.npz | Other | 595.4 KB | ecfe7a85aa2a |
| v2/f100_5d_sd1002/ekfac/scores.npz | Other | 381.5 KB | 82ef7021cc0f |
| v2/f100_5d_sd1002/sketch/scores.logra.ce.npz | Other | 748.3 KB | 059906d26a73 |
| v2/f100_5d_sd1002/sketch/scores.logra.margin.npz | Other | 748.6 KB | e3e0e2ec92aa |
| v2/f100_5d_sd1002/sketch/scores.logra.margin_docw.npz | Other | 751.8 KB | 3ca816f69623 |
| v2/f100_5d_sd1002/sketch/scores.logra.margin_sum.npz | Other | 747.6 KB | adc946dbe9ae |
| v2/f100_5d_sd1002/sketch/scores.logra.margin_top10.npz | Other | 707.2 KB | 399b62352508 |
| v2/f100_5d_sd1002/sketch/scores.logra.margin_top3.npz | Other | 712.6 KB | 07100f1c2a79 |
| v2/f100_5d_sd1002/sketch/scores.logra_dot.ce.npz | Other | 749.0 KB | 12f95866a94c |
| v2/f100_5d_sd1002/sketch/scores.logra_dot.margin.npz | Other | 748.0 KB | 01fc8a12fdec |
| v2/f100_5d_sd1002/sketch/scores.logra_dot.margin_docw.npz | Other | 750.1 KB | f10e11e85605 |
| v2/f100_5d_sd1002/sketch/scores.logra_dot.margin_sum.npz | Other | 745.2 KB | 9f7455e21427 |
| v2/f100_5d_sd1002/sketch/scores.logra_dot.margin_top10.npz | Other | 696.0 KB | f4a5ce0e3086 |
| v2/f100_5d_sd1002/sketch/scores.logra_dot.margin_top3.npz | Other | 698.8 KB | 4a19b355f262 |
| v2/f100_5d_sd1002/sketch/scores.npz | Other | 749.4 KB | 9bff1c4fa02b |
| v2/f100_5d_sd1002/sketch/scores.trak.margin.npz | Other | 749.2 KB | 8edff69747fe |
| v2/f100_5d_sd1002/sketch/tokens.logra.margin.npz | Other | 186.7 MB | c4d4a571aa00 |
| v2/f100_5d_sd1002/sketch/tokens.logra_dot.ce.npz | Other | 189.2 MB | e3499639724d |
| v2/f100_5d_sd1002/sketch/tokens.logra_dot.margin.npz | Other | 186.5 MB | 6ad895f9a641 |
| v2/f100_5d_sd1002/sketch/tokens.meta.npz | Other | 339.9 KB | 3afb65e73210 |
| v2/f100_5d_sd1002/source/scores.npz | Other | 749.8 KB | ea541a289e5f |
| v2/f100_5d_sd1002/source/scores.source.margin.npz | Other | 728.2 KB | 5177c12c9e94 |
| v2/f100_5d_sd1002/source/scores.source.margin_docw.npz | Other | 733.8 KB | d68c687fe271 |
| v2/f100_5d_sd1002/tracin/scores.npz | Other | 755.1 KB | 2c65b9e20ae7 |
| v2/f100_5d_sd1002/tracin/scores.tracin.margin.npz | Other | 729.1 KB | 5b57e0cbba87 |
| v2/f100_5d_sd1002/tracin/scores.tracin.margin_docw.npz | Other | 727.3 KB | 5ef0f08145d8 |
| v2/f100_5d_sd1002/tracin/scores.tracin.margin_sum.npz | Other | 726.2 KB | 3727502ef8c2 |
| v2/f100_5d_sd1002/tracin/scores.tracin.margin_top10.npz | Other | 699.6 KB | 426b44e4659f |
| v2/f100_5d_sd1002/tracin/scores.tracin.margin_top3.npz | Other | 715.9 KB | 6e0beaa99091 |
| v2/f100_5d_sd1002/tracin/scores.tracin_cos.ce.npz | Other | 749.0 KB | 909c9263ce8c |
| v2/f100_5d_sd1002/tracin/scores.tracin_cos.margin.npz | Other | 722.7 KB | 13356c941918 |
| v2/f100_5d_sd1002/tracin/scores.tracin_cos.margin_docw.npz | Other | 728.6 KB | 7ff3b3f933b7 |
| v2/f100_5d_sd1002/tracin/tokens.meta.npz | Other | 340.2 KB | 0154a8002912 |
| v2/f100_5d_sd1002/tracin/tokens.tracin.ce.npz | Other | 188.2 MB | 55de3d3b4eba |
| v2/f100_5d_sd1002/tracin/tokens.tracin.margin.npz | Other | 186.3 MB | e7cb7f09cd63 |
| v2/f100_5d_sd1003/ekfac/scores.grad_dot.ce.npz | Other | 386.8 KB | ddea1232c791 |
| v2/f100_5d_sd1003/ekfac/scores.grad_dot.margin.npz | Other | 380.8 KB | 1f4cc7d1a7aa |
| v2/f100_5d_sd1003/ekfac/scores.grad_dot.margin_docw.npz | Other | 588.1 KB | 941034b5521d |
| v2/f100_5d_sd1003/ekfac/scores.grad_sim.ce.npz | Other | 752.3 KB | 9ad51c8d9031 |
| v2/f100_5d_sd1003/ekfac/scores.grad_sim.margin.npz | Other | 748.0 KB | d08b55547f6b |
| v2/f100_5d_sd1003/ekfac/scores.grad_sim.margin_docw.npz | Other | 749.9 KB | 0f9d93e15ca4 |
| v2/f100_5d_sd1003/ekfac/scores.if_ekfac.margin.npz | Other | 386.7 KB | f6c96377dc36 |
| v2/f100_5d_sd1003/ekfac/scores.if_ekfac.margin_docw.npz | Other | 597.7 KB | ad4528af8334 |
| v2/f100_5d_sd1003/ekfac/scores.npz | Other | 382.3 KB | 8263ca551c8d |
| v2/f100_5d_sd1003/sketch/scores.logra.ce.npz | Other | 749.2 KB | b5cbfd166bad |
| v2/f100_5d_sd1003/sketch/scores.logra.margin.npz | Other | 750.3 KB | c09546e8123b |
| v2/f100_5d_sd1003/sketch/scores.logra.margin_docw.npz | Other | 751.5 KB | 533e1830ed1f |
| v2/f100_5d_sd1003/sketch/scores.logra.margin_sum.npz | Other | 750.2 KB | 6e9f1ebbc6e7 |
| v2/f100_5d_sd1003/sketch/scores.logra.margin_top10.npz | Other | 699.0 KB | 237e38b67719 |
| v2/f100_5d_sd1003/sketch/scores.logra.margin_top3.npz | Other | 703.0 KB | 00115fa97c3b |
| v2/f100_5d_sd1003/sketch/scores.logra_dot.ce.npz | Other | 748.5 KB | 283e76ef0aba |
| v2/f100_5d_sd1003/sketch/scores.logra_dot.margin.npz | Other | 748.8 KB | 2f3b32ec4d02 |
| v2/f100_5d_sd1003/sketch/scores.logra_dot.margin_docw.npz | Other | 751.4 KB | c14c37e05bc5 |
| v2/f100_5d_sd1003/sketch/scores.logra_dot.margin_sum.npz | Other | 748.1 KB | 4f1c76cf11ea |
| v2/f100_5d_sd1003/sketch/scores.logra_dot.margin_top10.npz | Other | 693.8 KB | ca2d652fbe64 |
| v2/f100_5d_sd1003/sketch/scores.logra_dot.margin_top3.npz | Other | 703.5 KB | 249dc939fb62 |
| v2/f100_5d_sd1003/sketch/scores.npz | Other | 749.1 KB | 62a714814834 |
| v2/f100_5d_sd1003/sketch/scores.trak.margin.npz | Other | 749.4 KB | 75da0f6dc5dc |
| v2/f100_5d_sd1003/sketch/tokens.logra.margin.npz | Other | 186.8 MB | 368a9cebe868 |
| v2/f100_5d_sd1003/sketch/tokens.logra_dot.ce.npz | Other | 189.2 MB | 89f68c76e5ad |
| v2/f100_5d_sd1003/sketch/tokens.logra_dot.margin.npz | Other | 186.5 MB | 64c436b9104f |
| v2/f100_5d_sd1003/sketch/tokens.meta.npz | Other | 336.0 KB | 07ae4aec76aa |
| v2/f25_10d_sd1001/bm25/scores.bm25_prompt.npz | Other | 8.9 KB | 5ed10d99cc80 |
| v2/f25_10d_sd1001/bm25/scores.npz | Other | 8.9 KB | adc8ffbba5de |
| v2/f25_10d_sd1001/ekfac/scores.grad_dot.ce.npz | Other | 52.7 KB | adef1f1fc1f5 |
| v2/f25_10d_sd1001/ekfac/scores.grad_dot.margin.npz | Other | 52.6 KB | 42004bb61429 |
| v2/f25_10d_sd1001/ekfac/scores.grad_dot.margin_docw.npz | Other | 91.3 KB | cba34fe5a394 |
| v2/f25_10d_sd1001/ekfac/scores.grad_dot.margin_sum.npz | Other | 97.9 KB | c49fc029be81 |
| v2/f25_10d_sd1001/ekfac/scores.grad_dot.margin_top10.npz | Other | 93.5 KB | 963d82aa23ae |
| v2/f25_10d_sd1001/ekfac/scores.grad_dot.margin_top3.npz | Other | 93.7 KB | ebd514673dc5 |
| v2/f25_10d_sd1001/ekfac/scores.grad_sim.ce.npz | Other | 97.5 KB | dcf0ef3e1bca |
| v2/f25_10d_sd1001/ekfac/scores.grad_sim.margin.npz | Other | 97.7 KB | f0cd7387e1fa |
| v2/f25_10d_sd1001/ekfac/scores.grad_sim.margin_docw.npz | Other | 98.8 KB | c87756f7c709 |
| v2/f25_10d_sd1001/ekfac/scores.if_ekfac.margin.npz | Other | 53.2 KB | dd161d537d09 |
| v2/f25_10d_sd1001/ekfac/scores.if_ekfac.margin_docw.npz | Other | 91.6 KB | 67e605a8ead0 |
| v2/f25_10d_sd1001/ekfac/scores.if_ekfac.margin_sum.npz | Other | 98.4 KB | 185ce0b0a35c |
| v2/f25_10d_sd1001/ekfac/scores.if_ekfac.margin_top10.npz | Other | 94.0 KB | 94cda84ccb48 |
| v2/f25_10d_sd1001/ekfac/scores.if_ekfac.margin_top3.npz | Other | 94.2 KB | fcb309b69c6b |
| v2/f25_10d_sd1001/ekfac/scores.npz | Other | 52.8 KB | 3620412d9088 |
| v2/f25_10d_sd1001/ekfac/tokens.grad_dot.ce.npz | Other | 24.5 MB | 3cecfa381fe6 |
| v2/f25_10d_sd1001/ekfac/tokens.grad_dot.margin.npz | Other | 24.2 MB | e0b2808c21c0 |
| v2/f25_10d_sd1001/ekfac/tokens.if_ekfac.ce.npz | Other | 24.5 MB | 24472d27829f |
| v2/f25_10d_sd1001/ekfac/tokens.if_ekfac.margin.npz | Other | 24.3 MB | 96b22a1faf2a |
| v2/f25_10d_sd1001/ekfac/tokens.meta.npz | Other | 167.2 KB | 9862601ddd59 |
| v2/f25_10d_sd1001/embed/scores.embed_base.npz | Other | 115.7 KB | 6b4ca463a573 |
| v2/f25_10d_sd1001/embed/scores.npz | Other | 105.6 KB | 529fd7af41a3 |
| v2/f25_10d_sd1001/sketch/scores.logra.ce.npz | Other | 97.3 KB | f76ab98f834b |
| v2/f25_10d_sd1001/sketch/scores.logra.ce_top10.npz | Other | 94.9 KB | 021628ec3867 |
| v2/f25_10d_sd1001/sketch/scores.logra.ce_top3.npz | Other | 94.8 KB | cc89488a155f |
| v2/f25_10d_sd1001/sketch/scores.logra.margin.npz | Other | 97.6 KB | 4b43bd8e6b72 |
| v2/f25_10d_sd1001/sketch/scores.logra.margin_docw.npz | Other | 98.5 KB | 823e3efeca73 |
| v2/f25_10d_sd1001/sketch/scores.logra.margin_sum.npz | Other | 97.8 KB | edee643cd705 |
| v2/f25_10d_sd1001/sketch/scores.logra.margin_top10.npz | Other | 91.1 KB | c308d3130f4d |
| v2/f25_10d_sd1001/sketch/scores.logra.margin_top3.npz | Other | 91.8 KB | f10c13fe93fb |
| v2/f25_10d_sd1001/sketch/scores.logra_dot.ce.npz | Other | 97.3 KB | cb110b42e5b7 |
| v2/f25_10d_sd1001/sketch/scores.logra_dot.ce_top10.npz | Other | 95.4 KB | 4e025ce96254 |
| v2/f25_10d_sd1001/sketch/scores.logra_dot.ce_top3.npz | Other | 95.4 KB | 07da09729bbf |
| v2/f25_10d_sd1001/sketch/scores.logra_dot.margin.npz | Other | 97.4 KB | f125cf49683b |
| v2/f25_10d_sd1001/sketch/scores.logra_dot.margin_docw.npz | Other | 98.7 KB | 55bde7eb5736 |
| v2/f25_10d_sd1001/sketch/scores.logra_dot.margin_sum.npz | Other | 97.5 KB | 4f091981fb94 |
| v2/f25_10d_sd1001/sketch/scores.logra_dot.margin_top10.npz | Other | 91.1 KB | 19503f8cf9cc |
| v2/f25_10d_sd1001/sketch/scores.logra_dot.margin_top3.npz | Other | 92.8 KB | 0bf12d7a17c5 |
| v2/f25_10d_sd1001/sketch/scores.npz | Other | 97.4 KB | b713ce3fc6c8 |
| v2/f25_10d_sd1001/sketch/scores.trackstar.ce.npz | Other | 99.1 KB | 168ad015c9f8 |
| v2/f25_10d_sd1001/sketch/scores.trackstar.ce_top10.npz | Other | 95.0 KB | fce0e9917a86 |
| v2/f25_10d_sd1001/sketch/scores.trackstar.ce_top3.npz | Other | 94.6 KB | 8cb578169c41 |
| v2/f25_10d_sd1001/sketch/scores.trackstar.margin.npz | Other | 99.4 KB | 895f47fd6956 |
| v2/f25_10d_sd1001/sketch/scores.trackstar.margin_docw.npz | Other | 100.3 KB | 252acad16fc1 |
| v2/f25_10d_sd1001/sketch/scores.trackstar.margin_top10.npz | Other | 93.5 KB | 28c5ec5a6b4d |
| v2/f25_10d_sd1001/sketch/scores.trackstar.margin_top3.npz | Other | 91.9 KB | d26fd3466558 |
| v2/f25_10d_sd1001/sketch/scores.trak.ce_top10.npz | Other | 97.0 KB | 2c5cb66be1a1 |
| v2/f25_10d_sd1001/sketch/scores.trak.ce_top3.npz | Other | 97.0 KB | a21e631a71cc |
| v2/f25_10d_sd1001/sketch/scores.trak.margin.npz | Other | 97.4 KB | 03faed630dbf |
| v2/f25_10d_sd1001/sketch/scores.trak.margin_sum.npz | Other | 98.8 KB | 0106adef6faa |
| v2/f25_10d_sd1001/sketch/scores.trak.margin_top10.npz | Other | 94.4 KB | 8eac5304cb7c |
| v2/f25_10d_sd1001/sketch/scores.trak.margin_top3.npz | Other | 94.5 KB | d9918188012e |
| v2/f25_10d_sd1001/sketch/scores.trak_nores.ce.npz | Other | 97.7 KB | 7f8ca29efc18 |
| v2/f25_10d_sd1001/sketch/scores.trak_nores.ce_top10.npz | Other | 95.7 KB | 0eba1808fbe1 |
| v2/f25_10d_sd1001/sketch/scores.trak_nores.ce_top3.npz | Other | 95.8 KB | 89f7c41176ed |
| v2/f25_10d_sd1001/sketch/scores.trak_nores.margin.npz | Other | 97.7 KB | 87671fe8354b |
| v2/f25_10d_sd1001/sketch/scores.trak_nores.margin_sum.npz | Other | 97.8 KB | 58325fb6ffb7 |
| v2/f25_10d_sd1001/sketch/scores.trak_nores.margin_top10.npz | Other | 92.8 KB | e1c42857a690 |
| v2/f25_10d_sd1001/sketch/scores.trak_nores.margin_top3.npz | Other | 93.3 KB | 098696d4d8c0 |
| v2/f25_10d_sd1001/sketch/tokens.logra.ce.npz | Other | 24.5 MB | d26d0bbd8842 |
| v2/f25_10d_sd1001/sketch/tokens.logra.margin.npz | Other | 24.2 MB | 21dd8d5d47b9 |
| v2/f25_10d_sd1001/sketch/tokens.logra_dot.ce.npz | Other | 24.5 MB | f27be24cc48f |
| v2/f25_10d_sd1001/sketch/tokens.logra_dot.margin.npz | Other | 24.2 MB | 7f147c39ef7e |
| v2/f25_10d_sd1001/sketch/tokens.meta.npz | Other | 167.7 KB | 980b954ed782 |
| v2/f25_10d_sd1001/sketch/tokens.trackstar.ce.npz | Other | 24.5 MB | 79bcd509163b |
| v2/f25_10d_sd1001/sketch/tokens.trackstar.margin.npz | Other | 24.2 MB | fb93bcde5cad |
| v2/f25_10d_sd1001/sketch/tokens.trak.ce.npz | Other | 24.5 MB | aeeccb49901b |
| v2/f25_10d_sd1001/sketch/tokens.trak.margin.npz | Other | 24.2 MB | dc73dde266e8 |
| v2/f25_10d_sd1001/source/scores.npz | Other | 97.4 KB | 7b80c7d023ed |
| v2/f25_10d_sd1001/source/scores.source.margin.npz | Other | 94.6 KB | 9503a971db28 |
| v2/f25_10d_sd1001/source/scores.source.margin_docw.npz | Other | 95.2 KB | 564ab2a1745b |
| v2/f25_10d_sd1001/tracin/scores.npz | Other | 97.4 KB | 6ad41021c1e7 |
| v2/f25_10d_sd1001/tracin/scores.tracin.margin.npz | Other | 94.0 KB | f69a783c079e |
| v2/f25_10d_sd1001/tracin/scores.tracin.margin_docw.npz | Other | 95.1 KB | 70bccacd4c18 |
| v2/f25_10d_sd1001/tracin/scores.tracin.margin_sum.npz | Other | 94.1 KB | 6eb110d993e9 |
| v2/f25_10d_sd1001/tracin/scores.tracin.margin_top10.npz | Other | 93.2 KB | 74c4f8cef992 |
| v2/f25_10d_sd1001/tracin/scores.tracin.margin_top3.npz | Other | 93.2 KB | fcfd442d05dc |
| v2/f25_10d_sd1001/tracin/scores.tracin_cos.ce.npz | Other | 97.2 KB | aa4ad97c12f9 |
| v2/f25_10d_sd1001/tracin/scores.tracin_cos.margin.npz | Other | 93.4 KB | db81161cbce1 |
| v2/f25_10d_sd1001/tracin/scores.tracin_cos.margin_docw.npz | Other | 95.2 KB | 66d8288c40e7 |
| v2/f25_10d_sd1001/tracin/tokens.meta.npz | Other | 167.7 KB | 3cd6464a9bf5 |
| v2/f25_10d_sd1001/tracin/tokens.tracin.ce.npz | Other | 24.4 MB | 18b0492b1736 |
| v2/f25_10d_sd1001/tracin/tokens.tracin.margin.npz | Other | 24.1 MB | 9c84c5c83895 |
| v2/f25_10d_sd1002/ekfac/scores.grad_dot.ce.npz | Other | 51.9 KB | 2bef04d457c6 |
| v2/f25_10d_sd1002/ekfac/scores.grad_dot.margin.npz | Other | 46.0 KB | daf91fecd81b |
| v2/f25_10d_sd1002/ekfac/scores.grad_dot.margin_docw.npz | Other | 85.5 KB | 86c58752dcd2 |
| v2/f25_10d_sd1002/ekfac/scores.grad_dot.margin_sum.npz | Other | 93.7 KB | 49635b769fae |
| v2/f25_10d_sd1002/ekfac/scores.grad_dot.margin_top10.npz | Other | 93.1 KB | 987dcec6c635 |
| v2/f25_10d_sd1002/ekfac/scores.grad_dot.margin_top3.npz | Other | 92.4 KB | 6f4f27a3470f |
| v2/f25_10d_sd1002/ekfac/scores.grad_sim.ce.npz | Other | 97.3 KB | 4ea67cfd7878 |
| v2/f25_10d_sd1002/ekfac/scores.grad_sim.margin.npz | Other | 93.6 KB | 977c7b69065c |
| v2/f25_10d_sd1002/ekfac/scores.grad_sim.margin_docw.npz | Other | 95.0 KB | ba2c5d5de673 |
| v2/f25_10d_sd1002/ekfac/scores.if_ekfac.margin.npz | Other | 50.9 KB | ae33c7897337 |
| v2/f25_10d_sd1002/ekfac/scores.if_ekfac.margin_docw.npz | Other | 89.5 KB | 5f2ea29b8f27 |
| v2/f25_10d_sd1002/ekfac/scores.if_ekfac.margin_sum.npz | Other | 97.1 KB | 508207cfb7e2 |
| v2/f25_10d_sd1002/ekfac/scores.if_ekfac.margin_top10.npz | Other | 94.0 KB | 4e30945a80da |
| v2/f25_10d_sd1002/ekfac/scores.if_ekfac.margin_top3.npz | Other | 94.0 KB | 62c6f2cb90c4 |
| v2/f25_10d_sd1002/ekfac/scores.npz | Other | 52.5 KB | 8b901d185502 |
| v2/f25_10d_sd1002/ekfac/tokens.grad_dot.ce.npz | Other | 24.5 MB | c29e7de786ae |
| v2/f25_10d_sd1002/ekfac/tokens.grad_dot.margin.npz | Other | 24.2 MB | a9cecf26dc8f |
| v2/f25_10d_sd1002/ekfac/tokens.if_ekfac.ce.npz | Other | 24.5 MB | 8f2ef89e6a3a |
| v2/f25_10d_sd1002/ekfac/tokens.if_ekfac.margin.npz | Other | 24.3 MB | 941da82348ed |
| v2/f25_10d_sd1002/ekfac/tokens.meta.npz | Other | 170.1 KB | 9cf4b81085fa |
| v2/f25_10d_sd1002/sketch/scores.logra.ce.npz | Other | 97.4 KB | 66ab50ac9ea2 |
| v2/f25_10d_sd1002/sketch/scores.logra.ce_top10.npz | Other | 94.8 KB | 7a9ccc24e7b3 |
| v2/f25_10d_sd1002/sketch/scores.logra.ce_top3.npz | Other | 94.7 KB | 2478c82b2248 |
| v2/f25_10d_sd1002/sketch/scores.logra.margin.npz | Other | 97.1 KB | 0a7c4d903c6f |
| v2/f25_10d_sd1002/sketch/scores.logra.margin_docw.npz | Other | 98.1 KB | 1d57130a81a2 |
| v2/f25_10d_sd1002/sketch/scores.logra.margin_sum.npz | Other | 97.3 KB | 72e3ea2b6a5d |
| v2/f25_10d_sd1002/sketch/scores.logra.margin_top10.npz | Other | 90.3 KB | bb323f51556e |
| v2/f25_10d_sd1002/sketch/scores.logra.margin_top3.npz | Other | 91.4 KB | e3b018c31ea3 |
| v2/f25_10d_sd1002/sketch/scores.logra_dot.ce.npz | Other | 97.2 KB | 5a7c6e4de149 |
| v2/f25_10d_sd1002/sketch/scores.logra_dot.ce_top10.npz | Other | 95.2 KB | d8da0127e02e |
| v2/f25_10d_sd1002/sketch/scores.logra_dot.ce_top3.npz | Other | 95.2 KB | d2e6081a433c |
| v2/f25_10d_sd1002/sketch/scores.logra_dot.margin.npz | Other | 96.5 KB | b4fb6a6e9773 |
| v2/f25_10d_sd1002/sketch/scores.logra_dot.margin_docw.npz | Other | 97.5 KB | bf46372e3b50 |
| v2/f25_10d_sd1002/sketch/scores.logra_dot.margin_sum.npz | Other | 96.5 KB | b166231cfa9e |
| v2/f25_10d_sd1002/sketch/scores.logra_dot.margin_top10.npz | Other | 91.0 KB | 12863ab49ceb |
| v2/f25_10d_sd1002/sketch/scores.logra_dot.margin_top3.npz | Other | 92.9 KB | 13bbf5ac269c |
| v2/f25_10d_sd1002/sketch/scores.npz | Other | 97.4 KB | b7eb6c4ea268 |
| v2/f25_10d_sd1002/sketch/scores.trackstar.ce.npz | Other | 99.1 KB | 226405ee53f4 |
| v2/f25_10d_sd1002/sketch/scores.trackstar.ce_top10.npz | Other | 94.9 KB | 094af5f3ad21 |
| v2/f25_10d_sd1002/sketch/scores.trackstar.ce_top3.npz | Other | 94.5 KB | 93f86f0f9d9e |
| v2/f25_10d_sd1002/sketch/scores.trackstar.margin.npz | Other | 98.7 KB | bd2d7a9c9801 |
| v2/f25_10d_sd1002/sketch/scores.trackstar.margin_docw.npz | Other | 99.6 KB | 4ba4c4b0e770 |
| v2/f25_10d_sd1002/sketch/scores.trackstar.margin_top10.npz | Other | 92.8 KB | bb0fe22dd0fe |
| v2/f25_10d_sd1002/sketch/scores.trackstar.margin_top3.npz | Other | 91.6 KB | a2786f7d5af0 |
| v2/f25_10d_sd1002/sketch/scores.trak.ce_top10.npz | Other | 96.7 KB | f9f221674120 |
| v2/f25_10d_sd1002/sketch/scores.trak.ce_top3.npz | Other | 96.8 KB | bbfd6010ba41 |
| v2/f25_10d_sd1002/sketch/scores.trak.margin.npz | Other | 97.3 KB | 6ef69ca2510c |
| v2/f25_10d_sd1002/sketch/scores.trak.margin_sum.npz | Other | 98.6 KB | 5184bea81c78 |
| v2/f25_10d_sd1002/sketch/scores.trak.margin_top10.npz | Other | 94.2 KB | 2bf3f26fcc16 |
| v2/f25_10d_sd1002/sketch/scores.trak.margin_top3.npz | Other | 94.3 KB | a10474402740 |
| v2/f25_10d_sd1002/sketch/scores.trak_nores.ce.npz | Other | 97.7 KB | 7fb334346094 |
| v2/f25_10d_sd1002/sketch/scores.trak_nores.ce_top10.npz | Other | 95.5 KB | 140b402390a9 |
| v2/f25_10d_sd1002/sketch/scores.trak_nores.ce_top3.npz | Other | 95.7 KB | f2788f0e7d6e |
| v2/f25_10d_sd1002/sketch/scores.trak_nores.margin.npz | Other | 97.7 KB | d01246fb0e47 |
| v2/f25_10d_sd1002/sketch/scores.trak_nores.margin_sum.npz | Other | 97.7 KB | 12fef07eeaf0 |
| v2/f25_10d_sd1002/sketch/scores.trak_nores.margin_top10.npz | Other | 91.8 KB | 7c413ba2ec2c |
| v2/f25_10d_sd1002/sketch/scores.trak_nores.margin_top3.npz | Other | 92.2 KB | 7379bd3883cb |
| v2/f25_10d_sd1002/sketch/tokens.logra.ce.npz | Other | 24.5 MB | 137997ff920d |
| v2/f25_10d_sd1002/sketch/tokens.logra.margin.npz | Other | 24.2 MB | 4985547c325e |
| v2/f25_10d_sd1002/sketch/tokens.logra_dot.ce.npz | Other | 24.5 MB | c082411a64dd |
| v2/f25_10d_sd1002/sketch/tokens.logra_dot.margin.npz | Other | 24.2 MB | 8e81e798e7b6 |
| v2/f25_10d_sd1002/sketch/tokens.meta.npz | Other | 170.4 KB | 324a1414f807 |
| v2/f25_10d_sd1002/sketch/tokens.trackstar.ce.npz | Other | 24.5 MB | c62146ac911a |
| v2/f25_10d_sd1002/sketch/tokens.trackstar.margin.npz | Other | 24.1 MB | 04ff779a1dc7 |
| v2/f25_10d_sd1002/sketch/tokens.trak.ce.npz | Other | 24.5 MB | 3d2f77cdfbc2 |
| v2/f25_10d_sd1002/sketch/tokens.trak.margin.npz | Other | 24.2 MB | 669bed0ccc91 |
| v2/f25_10d_sd1002/source/scores.npz | Other | 97.3 KB | 0022f370c272 |
| v2/f25_10d_sd1002/source/scores.source.margin.npz | Other | 95.2 KB | 07c075a4ace1 |
| v2/f25_10d_sd1002/source/scores.source.margin_docw.npz | Other | 95.6 KB | e24bb4b92f06 |
| v2/f25_10d_sd1002/tracin/scores.npz | Other | 97.3 KB | 31fb8670d979 |
| v2/f25_10d_sd1002/tracin/scores.tracin.margin.npz | Other | 95.7 KB | e07131cada24 |
| v2/f25_10d_sd1002/tracin/scores.tracin.margin_docw.npz | Other | 95.9 KB | efd9f1fbdb54 |
| v2/f25_10d_sd1002/tracin/scores.tracin.margin_sum.npz | Other | 95.5 KB | c33b5496de5b |
| v2/f25_10d_sd1002/tracin/scores.tracin.margin_top10.npz | Other | 92.3 KB | 7766ed8cf13d |
| v2/f25_10d_sd1002/tracin/scores.tracin.margin_top3.npz | Other | 93.5 KB | 21c7d4239e2c |
| v2/f25_10d_sd1002/tracin/scores.tracin_cos.ce.npz | Other | 97.1 KB | 33396102e191 |
| v2/f25_10d_sd1002/tracin/scores.tracin_cos.margin.npz | Other | 95.0 KB | 7eed8bbd54c1 |
| v2/f25_10d_sd1002/tracin/scores.tracin_cos.margin_docw.npz | Other | 96.3 KB | d46509924261 |
| v2/f25_10d_sd1002/tracin/tokens.meta.npz | Other | 170.3 KB | 7a67fb46111d |
| v2/f25_10d_sd1002/tracin/tokens.tracin.ce.npz | Other | 24.4 MB | 9853bac9b992 |
| v2/f25_10d_sd1002/tracin/tokens.tracin.margin.npz | Other | 24.1 MB | 9f260a59d136 |
| v2/f25_10d_sd1003/ekfac/scores.grad_dot.ce.npz | Other | 52.8 KB | 847239d405b4 |
| v2/f25_10d_sd1003/ekfac/scores.grad_dot.margin.npz | Other | 52.4 KB | 75e6ee88631c |
| v2/f25_10d_sd1003/ekfac/scores.grad_dot.margin_docw.npz | Other | 91.0 KB | c7ab7f0ced30 |
| v2/f25_10d_sd1003/ekfac/scores.grad_dot.margin_sum.npz | Other | 97.8 KB | 27769bb373bd |
| v2/f25_10d_sd1003/ekfac/scores.grad_dot.margin_top10.npz | Other | 93.7 KB | d7cc873356a2 |
| v2/f25_10d_sd1003/ekfac/scores.grad_dot.margin_top3.npz | Other | 94.1 KB | 57b4ae999ee9 |
| v2/f25_10d_sd1003/ekfac/scores.grad_sim.ce.npz | Other | 97.6 KB | 2dda564f9b0d |
| v2/f25_10d_sd1003/ekfac/scores.grad_sim.margin.npz | Other | 97.6 KB | 047e424279c0 |
| v2/f25_10d_sd1003/ekfac/scores.grad_sim.margin_docw.npz | Other | 98.7 KB | 209f3771e847 |
| v2/f25_10d_sd1003/ekfac/scores.if_ekfac.margin.npz | Other | 53.3 KB | 581ec6d0ae03 |
| v2/f25_10d_sd1003/ekfac/scores.if_ekfac.margin_docw.npz | Other | 91.8 KB | 7b2ccfe70809 |
| v2/f25_10d_sd1003/ekfac/scores.if_ekfac.margin_sum.npz | Other | 98.6 KB | 1e674fe2948b |
| v2/f25_10d_sd1003/ekfac/scores.if_ekfac.margin_top10.npz | Other | 94.4 KB | 728c06150651 |
| v2/f25_10d_sd1003/ekfac/scores.if_ekfac.margin_top3.npz | Other | 95.0 KB | 37e6fb5ffeb0 |
| v2/f25_10d_sd1003/ekfac/scores.npz | Other | 52.8 KB | ec9349dd9aef |
| v2/f25_10d_sd1003/ekfac/tokens.grad_dot.ce.npz | Other | 24.5 MB | 3d489fba6295 |
| v2/f25_10d_sd1003/ekfac/tokens.grad_dot.margin.npz | Other | 24.2 MB | 217108696381 |
| v2/f25_10d_sd1003/ekfac/tokens.if_ekfac.ce.npz | Other | 24.5 MB | 63456695c32e |
| v2/f25_10d_sd1003/ekfac/tokens.if_ekfac.margin.npz | Other | 24.3 MB | d9bb6ba324ed |
| v2/f25_10d_sd1003/ekfac/tokens.meta.npz | Other | 165.6 KB | 335d2ec21ed6 |
| v2/f25_10d_sd1003/sketch/scores.logra.ce.npz | Other | 97.3 KB | ae7e5ee3c764 |
| v2/f25_10d_sd1003/sketch/scores.logra.ce_top10.npz | Other | 94.9 KB | f1644c271178 |
| v2/f25_10d_sd1003/sketch/scores.logra.ce_top3.npz | Other | 94.9 KB | c3a63e10d511 |
| v2/f25_10d_sd1003/sketch/scores.logra.margin.npz | Other | 97.5 KB | 3fbecc6036fc |
| v2/f25_10d_sd1003/sketch/scores.logra.margin_docw.npz | Other | 98.6 KB | 7c8bb03ffa7c |
| v2/f25_10d_sd1003/sketch/scores.logra.margin_sum.npz | Other | 97.7 KB | 636f189dc955 |
| v2/f25_10d_sd1003/sketch/scores.logra.margin_top10.npz | Other | 91.2 KB | eb72e8ad7cc2 |
| v2/f25_10d_sd1003/sketch/scores.logra.margin_top3.npz | Other | 91.9 KB | 77ebd8a2eaf5 |
| v2/f25_10d_sd1003/sketch/scores.logra_dot.ce.npz | Other | 97.2 KB | 3a19f092a5f5 |
| v2/f25_10d_sd1003/sketch/scores.logra_dot.ce_top10.npz | Other | 95.4 KB | 7e86463411e2 |
| v2/f25_10d_sd1003/sketch/scores.logra_dot.ce_top3.npz | Other | 95.4 KB | 0b4ddc6a387b |
| v2/f25_10d_sd1003/sketch/scores.logra_dot.margin.npz | Other | 97.3 KB | 0422a8f64aa1 |
| v2/f25_10d_sd1003/sketch/scores.logra_dot.margin_docw.npz | Other | 98.4 KB | 9f15a985a95c |
| v2/f25_10d_sd1003/sketch/scores.logra_dot.margin_sum.npz | Other | 97.3 KB | ff734f6e668c |
| v2/f25_10d_sd1003/sketch/scores.logra_dot.margin_top10.npz | Other | 91.4 KB | 24df8110120b |
| v2/f25_10d_sd1003/sketch/scores.logra_dot.margin_top3.npz | Other | 92.7 KB | 55f4bfa120e1 |
| v2/f25_10d_sd1003/sketch/scores.npz | Other | 97.4 KB | f4054fbef023 |
| v2/f25_10d_sd1003/sketch/scores.trackstar.ce.npz | Other | 99.1 KB | 11856c23f60a |
| v2/f25_10d_sd1003/sketch/scores.trackstar.ce_top10.npz | Other | 95.0 KB | 729704e00819 |
| v2/f25_10d_sd1003/sketch/scores.trackstar.ce_top3.npz | Other | 94.5 KB | ba7c06f850ce |
| v2/f25_10d_sd1003/sketch/scores.trackstar.margin.npz | Other | 99.3 KB | be475df43970 |
| v2/f25_10d_sd1003/sketch/scores.trackstar.margin_docw.npz | Other | 100.3 KB | 03f93f585d77 |
| v2/f25_10d_sd1003/sketch/scores.trackstar.margin_top10.npz | Other | 93.4 KB | 97918a39d8f8 |
| v2/f25_10d_sd1003/sketch/scores.trackstar.margin_top3.npz | Other | 91.9 KB | 55f227d99e2e |
| v2/f25_10d_sd1003/sketch/scores.trak.ce_top10.npz | Other | 96.7 KB | 7700f4f7ef9d |
| v2/f25_10d_sd1003/sketch/scores.trak.ce_top3.npz | Other | 96.8 KB | bc0f988b655b |
| v2/f25_10d_sd1003/sketch/scores.trak.margin.npz | Other | 97.4 KB | 36a513d81d95 |
| v2/f25_10d_sd1003/sketch/scores.trak.margin_sum.npz | Other | 98.8 KB | 28caba524ca6 |
| v2/f25_10d_sd1003/sketch/scores.trak.margin_top10.npz | Other | 94.5 KB | 062d66e180d5 |
| v2/f25_10d_sd1003/sketch/scores.trak.margin_top3.npz | Other | 94.7 KB | 8fb3709006c6 |
| v2/f25_10d_sd1003/sketch/scores.trak_nores.ce.npz | Other | 97.7 KB | bcd58714602c |
| v2/f25_10d_sd1003/sketch/scores.trak_nores.ce_top10.npz | Other | 95.5 KB | 7865b0713ddb |
| v2/f25_10d_sd1003/sketch/scores.trak_nores.ce_top3.npz | Other | 95.5 KB | cc240142315e |
| v2/f25_10d_sd1003/sketch/scores.trak_nores.margin.npz | Other | 97.7 KB | 66045fc25787 |
| v2/f25_10d_sd1003/sketch/scores.trak_nores.margin_sum.npz | Other | 97.7 KB | 83cef8db3318 |
| v2/f25_10d_sd1003/sketch/scores.trak_nores.margin_top10.npz | Other | 93.3 KB | ca5f74826505 |
| v2/f25_10d_sd1003/sketch/scores.trak_nores.margin_top3.npz | Other | 93.3 KB | e53884e90776 |
| v2/f25_10d_sd1003/sketch/tokens.logra.ce.npz | Other | 24.5 MB | ec359a5a0a37 |
| v2/f25_10d_sd1003/sketch/tokens.logra.margin.npz | Other | 24.2 MB | d9f9a227a5c8 |
| v2/f25_10d_sd1003/sketch/tokens.logra_dot.ce.npz | Other | 24.5 MB | 602a06035f06 |
| v2/f25_10d_sd1003/sketch/tokens.logra_dot.margin.npz | Other | 24.2 MB | cb28ff35349a |
| v2/f25_10d_sd1003/sketch/tokens.meta.npz | Other | 166.2 KB | 0d1a0e08a092 |
| v2/f25_10d_sd1003/sketch/tokens.trackstar.ce.npz | Other | 24.5 MB | 57a77c770598 |
| v2/f25_10d_sd1003/sketch/tokens.trackstar.margin.npz | Other | 24.2 MB | 6aa406da4401 |
| v2/f25_10d_sd1003/sketch/tokens.trak.ce.npz | Other | 24.5 MB | 7ef6eb07a197 |
| v2/f25_10d_sd1003/sketch/tokens.trak.margin.npz | Other | 24.2 MB | 3daa82ea9be0 |
| v2/f25_1d_sd1001/bm25/scores.bm25_prompt.npz | Other | 2.8 KB | 77c881283a77 |
| v2/f25_1d_sd1001/bm25/scores.npz | Other | 2.8 KB | 7d745437ad37 |
| v2/f25_1d_sd1001/ekfac/scores.grad_dot.ce.npz | Other | 8.3 KB | e5986de51d3a |
| v2/f25_1d_sd1001/ekfac/scores.grad_dot.margin.npz | Other | 8.4 KB | 54b584dc2a6b |
| v2/f25_1d_sd1001/ekfac/scores.grad_dot.margin_docw.npz | Other | 12.3 KB | d7df62338bc7 |
| v2/f25_1d_sd1001/ekfac/scores.grad_dot.margin_sum.npz | Other | 13.0 KB | 40330d5d7eb2 |
| v2/f25_1d_sd1001/ekfac/scores.grad_dot.margin_top10.npz | Other | 12.7 KB | 245f1393083c |
| v2/f25_1d_sd1001/ekfac/scores.grad_dot.margin_top3.npz | Other | 12.7 KB | b01d7d7763a8 |
| v2/f25_1d_sd1001/ekfac/scores.grad_sim.ce.npz | Other | 12.9 KB | a087d685337f |
| v2/f25_1d_sd1001/ekfac/scores.grad_sim.margin.npz | Other | 12.7 KB | e8dfd4ececc0 |
| v2/f25_1d_sd1001/ekfac/scores.grad_sim.margin_docw.npz | Other | 13.0 KB | 7438edc05535 |
| v2/f25_1d_sd1001/ekfac/scores.if_ekfac.margin.npz | Other | 8.4 KB | a74dcd059083 |
| v2/f25_1d_sd1001/ekfac/scores.if_ekfac.margin_docw.npz | Other | 12.3 KB | ba019b3efd15 |
| v2/f25_1d_sd1001/ekfac/scores.if_ekfac.margin_sum.npz | Other | 13.0 KB | 5447d906355b |
| v2/f25_1d_sd1001/ekfac/scores.if_ekfac.margin_top10.npz | Other | 12.8 KB | 5f06809c58b9 |
| v2/f25_1d_sd1001/ekfac/scores.if_ekfac.margin_top3.npz | Other | 12.8 KB | edc9bdfca537 |
| v2/f25_1d_sd1001/ekfac/scores.npz | Other | 8.5 KB | d340dbdff775 |
| v2/f25_1d_sd1001/ekfac/tokens.grad_dot.ce.npz | Other | 2.5 MB | 385075e6bee2 |
| v2/f25_1d_sd1001/ekfac/tokens.grad_dot.margin.npz | Other | 2.5 MB | 284cc197cc60 |
| v2/f25_1d_sd1001/ekfac/tokens.if_ekfac.ce.npz | Other | 2.5 MB | 165533266081 |
| v2/f25_1d_sd1001/ekfac/tokens.if_ekfac.margin.npz | Other | 2.5 MB | a26e23659e7c |
| v2/f25_1d_sd1001/ekfac/tokens.meta.npz | Other | 19.7 KB | b4e6ef8b3ed5 |
| v2/f25_1d_sd1001/embed/scores.embed_base.npz | Other | 13.6 KB | 5fcf61ac1a8c |
| v2/f25_1d_sd1001/embed/scores.npz | Other | 12.6 KB | 3943dea2c5e0 |
| v2/f25_1d_sd1001/sketch/scores.logra.ce.npz | Other | 12.8 KB | 15faf29027c5 |
| v2/f25_1d_sd1001/sketch/scores.logra.ce_top10.npz | Other | 12.7 KB | c3acc8baebb4 |
| v2/f25_1d_sd1001/sketch/scores.logra.ce_top3.npz | Other | 12.8 KB | 10bed8fc9f1a |
| v2/f25_1d_sd1001/sketch/scores.logra.margin.npz | Other | 12.8 KB | 8c9755250427 |
| v2/f25_1d_sd1001/sketch/scores.logra.margin_docw.npz | Other | 13.2 KB | 9e33ede5ec29 |
| v2/f25_1d_sd1001/sketch/scores.logra.margin_sum.npz | Other | 13.1 KB | 1dae3f53d35f |
| v2/f25_1d_sd1001/sketch/scores.logra.margin_top10.npz | Other | 12.7 KB | 18cb96ee32aa |
| v2/f25_1d_sd1001/sketch/scores.logra.margin_top3.npz | Other | 12.7 KB | d4744d409579 |
| v2/f25_1d_sd1001/sketch/scores.logra_dot.ce.npz | Other | 12.8 KB | 614269a9d6d2 |
| v2/f25_1d_sd1001/sketch/scores.logra_dot.ce_top10.npz | Other | 13.0 KB | ea0db1044746 |
| v2/f25_1d_sd1001/sketch/scores.logra_dot.ce_top3.npz | Other | 13.0 KB | 33116f4ec03a |
| v2/f25_1d_sd1001/sketch/scores.logra_dot.margin.npz | Other | 12.8 KB | 70d8757e3310 |
| v2/f25_1d_sd1001/sketch/scores.logra_dot.margin_docw.npz | Other | 13.1 KB | f7fe0a1baa6a |
| v2/f25_1d_sd1001/sketch/scores.logra_dot.margin_sum.npz | Other | 13.1 KB | 57d178194c9f |
| v2/f25_1d_sd1001/sketch/scores.logra_dot.margin_top10.npz | Other | 12.7 KB | 4c0bcec1232f |
| v2/f25_1d_sd1001/sketch/scores.logra_dot.margin_top3.npz | Other | 12.7 KB | 3a1c76d4d9ce |
| v2/f25_1d_sd1001/sketch/scores.npz | Other | 12.7 KB | b676bf90c12a |
| v2/f25_1d_sd1001/sketch/scores.trackstar.ce.npz | Other | 14.0 KB | 656a9ae3c913 |
| v2/f25_1d_sd1001/sketch/scores.trackstar.ce_top10.npz | Other | 13.0 KB | e7c06b6451f5 |
| v2/f25_1d_sd1001/sketch/scores.trackstar.ce_top3.npz | Other | 12.9 KB | 9360de8d14ea |
| v2/f25_1d_sd1001/sketch/scores.trackstar.margin.npz | Other | 14.0 KB | c445b0842c53 |
| v2/f25_1d_sd1001/sketch/scores.trackstar.margin_docw.npz | Other | 14.3 KB | d2188c769387 |
| v2/f25_1d_sd1001/sketch/scores.trackstar.margin_top10.npz | Other | 12.6 KB | aef620806c57 |
| v2/f25_1d_sd1001/sketch/scores.trackstar.margin_top3.npz | Other | 12.8 KB | 567549b90e20 |
| v2/f25_1d_sd1001/sketch/scores.trak.ce_top10.npz | Other | 13.2 KB | 5909800341a1 |
| v2/f25_1d_sd1001/sketch/scores.trak.ce_top3.npz | Other | 13.2 KB | 8fc944569a18 |
| v2/f25_1d_sd1001/sketch/scores.trak.margin.npz | Other | 12.8 KB | 4fbed2e22648 |
| v2/f25_1d_sd1001/sketch/scores.trak.margin_sum.npz | Other | 13.4 KB | 19d7a0f1a589 |
| v2/f25_1d_sd1001/sketch/scores.trak.margin_top10.npz | Other | 13.1 KB | 1681a8fa3bb9 |
| v2/f25_1d_sd1001/sketch/scores.trak.margin_top3.npz | Other | 13.1 KB | fcce76afebe2 |
| v2/f25_1d_sd1001/sketch/scores.trak_nores.ce.npz | Other | 13.0 KB | 382742bfdf2a |
| v2/f25_1d_sd1001/sketch/scores.trak_nores.ce_top10.npz | Other | 12.9 KB | 821744664fb4 |
| v2/f25_1d_sd1001/sketch/scores.trak_nores.ce_top3.npz | Other | 12.9 KB | ae891609a718 |
| v2/f25_1d_sd1001/sketch/scores.trak_nores.margin.npz | Other | 13.1 KB | 1f044f0a0c0d |
| v2/f25_1d_sd1001/sketch/scores.trak_nores.margin_sum.npz | Other | 13.1 KB | f1320bb164c6 |
| v2/f25_1d_sd1001/sketch/scores.trak_nores.margin_top10.npz | Other | 12.8 KB | cbe09ea974e1 |
| v2/f25_1d_sd1001/sketch/scores.trak_nores.margin_top3.npz | Other | 12.8 KB | d1b8a0e68c20 |
| v2/f25_1d_sd1001/sketch/tokens.logra.ce.npz | Other | 2.5 MB | f1ab0389f664 |
| v2/f25_1d_sd1001/sketch/tokens.logra.margin.npz | Other | 2.5 MB | 674d399a3f21 |
| v2/f25_1d_sd1001/sketch/tokens.logra_dot.ce.npz | Other | 2.5 MB | 592ce80e2dbf |
| v2/f25_1d_sd1001/sketch/tokens.logra_dot.margin.npz | Other | 2.5 MB | 54ce0315d892 |
| v2/f25_1d_sd1001/sketch/tokens.meta.npz | Other | 19.7 KB | 08519763dbef |
| v2/f25_1d_sd1001/sketch/tokens.trackstar.ce.npz | Other | 2.5 MB | 3f0b62499cab |
| v2/f25_1d_sd1001/sketch/tokens.trackstar.margin.npz | Other | 2.5 MB | 67fe1abfeb85 |
| v2/f25_1d_sd1001/sketch/tokens.trak.ce.npz | Other | 2.6 MB | 627efc3f84fe |
| v2/f25_1d_sd1001/sketch/tokens.trak.margin.npz | Other | 2.5 MB | 8c0065aace54 |
| v2/f25_1d_sd1001/source/scores.npz | Other | 12.9 KB | 27de570ff478 |
| v2/f25_1d_sd1001/source/scores.source.margin.npz | Other | 12.6 KB | 6b01e1787ee0 |
| v2/f25_1d_sd1001/source/scores.source.margin_docw.npz | Other | 12.9 KB | 0ea52b187866 |
| v2/f25_1d_sd1001/tracin/scores.npz | Other | 12.9 KB | c9a66972b4e4 |
| v2/f25_1d_sd1001/tracin/scores.tracin.margin.npz | Other | 12.6 KB | 6c8f13bc58c6 |
| v2/f25_1d_sd1001/tracin/scores.tracin.margin_docw.npz | Other | 12.9 KB | 94f8aa99909c |
| v2/f25_1d_sd1001/tracin/scores.tracin.margin_sum.npz | Other | 12.8 KB | 91ac1e7736a0 |
| v2/f25_1d_sd1001/tracin/scores.tracin.margin_top10.npz | Other | 12.6 KB | b48c3505564e |
| v2/f25_1d_sd1001/tracin/scores.tracin.margin_top3.npz | Other | 12.7 KB | 4e25192d721e |
| v2/f25_1d_sd1001/tracin/scores.tracin_cos.ce.npz | Other | 12.8 KB | be733317130a |
| v2/f25_1d_sd1001/tracin/scores.tracin_cos.margin.npz | Other | 12.6 KB | 5f5e4df56b3b |
| v2/f25_1d_sd1001/tracin/scores.tracin_cos.margin_docw.npz | Other | 12.9 KB | 6deef4179413 |
| v2/f25_1d_sd1001/tracin/tokens.meta.npz | Other | 19.7 KB | f66994999969 |
| v2/f25_1d_sd1001/tracin/tokens.tracin.ce.npz | Other | 2.6 MB | 98e1368d1b7a |
| v2/f25_1d_sd1001/tracin/tokens.tracin.margin.npz | Other | 2.5 MB | 93aea40eaa46 |
| v2/f25_1d_sd1002/ekfac/scores.grad_dot.ce.npz | Other | 8.6 KB | 7f08a1cd94e1 |
| v2/f25_1d_sd1002/ekfac/scores.grad_dot.margin.npz | Other | 8.1 KB | 6d9c260ebdda |
| v2/f25_1d_sd1002/ekfac/scores.grad_dot.margin_docw.npz | Other | 12.0 KB | cf66d2ffdbb5 |
| v2/f25_1d_sd1002/ekfac/scores.grad_dot.margin_sum.npz | Other | 12.9 KB | 38e1240a3083 |
| v2/f25_1d_sd1002/ekfac/scores.grad_dot.margin_top10.npz | Other | 12.7 KB | 1a62b5730ba7 |
| v2/f25_1d_sd1002/ekfac/scores.grad_dot.margin_top3.npz | Other | 12.7 KB | 6b9cf7c2f83b |
| v2/f25_1d_sd1002/ekfac/scores.grad_sim.ce.npz | Other | 12.9 KB | 056a677ea438 |
| v2/f25_1d_sd1002/ekfac/scores.grad_sim.margin.npz | Other | 12.6 KB | 1f5412e738e3 |
| v2/f25_1d_sd1002/ekfac/scores.grad_sim.margin_docw.npz | Other | 12.9 KB | 1f0870208916 |
| v2/f25_1d_sd1002/ekfac/scores.if_ekfac.margin.npz | Other | 8.3 KB | 9b2b3c5ce38f |
| v2/f25_1d_sd1002/ekfac/scores.if_ekfac.margin_docw.npz | Other | 12.2 KB | 41a696b5a57c |
| v2/f25_1d_sd1002/ekfac/scores.if_ekfac.margin_sum.npz | Other | 12.9 KB | 120a2616c0fc |
| v2/f25_1d_sd1002/ekfac/scores.if_ekfac.margin_top10.npz | Other | 12.7 KB | cd8385fe5756 |
| v2/f25_1d_sd1002/ekfac/scores.if_ekfac.margin_top3.npz | Other | 12.8 KB | ea9cd89e1f8d |
| v2/f25_1d_sd1002/ekfac/scores.npz | Other | 8.6 KB | 2e80debfc811 |
| v2/f25_1d_sd1002/ekfac/tokens.grad_dot.ce.npz | Other | 2.5 MB | 72f6732b205e |
| v2/f25_1d_sd1002/ekfac/tokens.grad_dot.margin.npz | Other | 2.5 MB | 7b05ae8d7a79 |
| v2/f25_1d_sd1002/ekfac/tokens.if_ekfac.ce.npz | Other | 2.5 MB | 5f32b4135b8c |
| v2/f25_1d_sd1002/ekfac/tokens.if_ekfac.margin.npz | Other | 2.5 MB | bc936546e235 |
| v2/f25_1d_sd1002/ekfac/tokens.meta.npz | Other | 19.3 KB | cfefa4a865ab |
| v2/f25_1d_sd1002/sketch/scores.logra.ce.npz | Other | 12.8 KB | 4cc09f9b29a0 |
| v2/f25_1d_sd1002/sketch/scores.logra.ce_top10.npz | Other | 12.7 KB | 149b5a3ca438 |
| v2/f25_1d_sd1002/sketch/scores.logra.ce_top3.npz | Other | 12.7 KB | 344cfdd7712a |
| v2/f25_1d_sd1002/sketch/scores.logra.margin.npz | Other | 12.8 KB | 732d0a632f47 |
| v2/f25_1d_sd1002/sketch/scores.logra.margin_docw.npz | Other | 13.1 KB | 631f059c9d75 |
| v2/f25_1d_sd1002/sketch/scores.logra.margin_sum.npz | Other | 13.0 KB | aba89195a3ee |
| v2/f25_1d_sd1002/sketch/scores.logra.margin_top10.npz | Other | 12.5 KB | de474f70473f |
| v2/f25_1d_sd1002/sketch/scores.logra.margin_top3.npz | Other | 12.5 KB | fe27aa6d9e12 |
| v2/f25_1d_sd1002/sketch/scores.logra_dot.ce.npz | Other | 12.8 KB | cc5f57a68cb8 |
| v2/f25_1d_sd1002/sketch/scores.logra_dot.ce_top10.npz | Other | 13.0 KB | a0b61b3647ea |
| v2/f25_1d_sd1002/sketch/scores.logra_dot.ce_top3.npz | Other | 13.0 KB | 6872546471c5 |
| v2/f25_1d_sd1002/sketch/scores.logra_dot.margin.npz | Other | 12.6 KB | 9d5569825015 |
| v2/f25_1d_sd1002/sketch/scores.logra_dot.margin_docw.npz | Other | 12.9 KB | aa1e78e169f9 |
| v2/f25_1d_sd1002/sketch/scores.logra_dot.margin_sum.npz | Other | 12.9 KB | 59bdc8bf8b5d |
| v2/f25_1d_sd1002/sketch/scores.logra_dot.margin_top10.npz | Other | 12.6 KB | 11c731d57d4c |
| v2/f25_1d_sd1002/sketch/scores.logra_dot.margin_top3.npz | Other | 12.7 KB | 42d72a92c4ed |
| v2/f25_1d_sd1002/sketch/scores.npz | Other | 12.5 KB | bb484778d90b |
| v2/f25_1d_sd1002/sketch/scores.trackstar.ce.npz | Other | 13.9 KB | 75c028833039 |
| v2/f25_1d_sd1002/sketch/scores.trackstar.ce_top10.npz | Other | 12.9 KB | 09bee6e95961 |
| v2/f25_1d_sd1002/sketch/scores.trackstar.ce_top3.npz | Other | 12.9 KB | 5dd5ea5fa591 |
| v2/f25_1d_sd1002/sketch/scores.trackstar.margin.npz | Other | 13.9 KB | 1a6bf71e7c61 |
| v2/f25_1d_sd1002/sketch/scores.trackstar.margin_docw.npz | Other | 14.2 KB | 843730021a62 |
| v2/f25_1d_sd1002/sketch/scores.trackstar.margin_top10.npz | Other | 12.7 KB | c7e4f28bb250 |
| v2/f25_1d_sd1002/sketch/scores.trackstar.margin_top3.npz | Other | 12.7 KB | 204c56617898 |
| v2/f25_1d_sd1002/sketch/scores.trak.ce_top10.npz | Other | 13.1 KB | cf182868b1e6 |
| v2/f25_1d_sd1002/sketch/scores.trak.ce_top3.npz | Other | 13.1 KB | c74c43897437 |
| v2/f25_1d_sd1002/sketch/scores.trak.margin.npz | Other | 12.8 KB | 1cc6e2881f53 |
| v2/f25_1d_sd1002/sketch/scores.trak.margin_sum.npz | Other | 13.4 KB | b866095e14ad |
| v2/f25_1d_sd1002/sketch/scores.trak.margin_top10.npz | Other | 13.0 KB | 92a64d3c76c3 |
| v2/f25_1d_sd1002/sketch/scores.trak.margin_top3.npz | Other | 13.1 KB | c52605bc445e |
| v2/f25_1d_sd1002/sketch/scores.trak_nores.ce.npz | Other | 12.7 KB | df97d176100c |
| v2/f25_1d_sd1002/sketch/scores.trak_nores.ce_top10.npz | Other | 12.8 KB | 9c8b503d2788 |
| v2/f25_1d_sd1002/sketch/scores.trak_nores.ce_top3.npz | Other | 12.8 KB | 17913d6c0ebb |
| v2/f25_1d_sd1002/sketch/scores.trak_nores.margin.npz | Other | 13.1 KB | ab50c0665d73 |
| v2/f25_1d_sd1002/sketch/scores.trak_nores.margin_sum.npz | Other | 13.1 KB | c6ad0a2002de |
| v2/f25_1d_sd1002/sketch/scores.trak_nores.margin_top10.npz | Other | 12.7 KB | 288b09ba3c54 |
| v2/f25_1d_sd1002/sketch/scores.trak_nores.margin_top3.npz | Other | 12.7 KB | 84a981215d2a |
| v2/f25_1d_sd1002/sketch/tokens.logra.ce.npz | Other | 2.5 MB | ac5d5c30a364 |
| v2/f25_1d_sd1002/sketch/tokens.logra.margin.npz | Other | 2.5 MB | 5c38b50d2936 |
| v2/f25_1d_sd1002/sketch/tokens.logra_dot.ce.npz | Other | 2.5 MB | 31d991561d09 |
| v2/f25_1d_sd1002/sketch/tokens.logra_dot.margin.npz | Other | 2.5 MB | 86df82a9a291 |
| v2/f25_1d_sd1002/sketch/tokens.meta.npz | Other | 19.4 KB | b75f097cc723 |
| v2/f25_1d_sd1002/sketch/tokens.trackstar.ce.npz | Other | 2.5 MB | e0753dce6063 |
| v2/f25_1d_sd1002/sketch/tokens.trackstar.margin.npz | Other | 2.5 MB | baaf86b827cc |
| v2/f25_1d_sd1002/sketch/tokens.trak.ce.npz | Other | 2.6 MB | 3d63a4986cc5 |
| v2/f25_1d_sd1002/sketch/tokens.trak.margin.npz | Other | 2.5 MB | 20237a50c9ab |
| v2/f25_1d_sd1002/source/scores.npz | Other | 12.8 KB | 6b12f3f98931 |
| v2/f25_1d_sd1002/source/scores.source.margin.npz | Other | 12.6 KB | a36a37ea88e3 |
License and Download
- License
- mit
- Access
- No access gate
Released by Lamsheeper Data Attribution through its official repository on Hugging Face. Read the license.