Datasets:
label string | reliability float32 | n_words int16 | vector list |
|---|---|---|---|
Austrian school of economics | 0.806623 | 4 | [
0.10089111328125,
-0.0655517578125,
-0.046142578125,
0.10418701171875,
-0.07696533203125,
0.148193359375,
-0.019989013671875,
0.109619140625,
0.018157958984375,
0.1917724609375,
-0.01334381103515625,
0.037261962890625,
0.049224853515625,
-0.035064697265625,
-0.047607421875,
0.075195312... |
Extreme poverty | 0.675073 | 2 | [
-0.0272216796875,
0.005237579345703125,
0.06353759765625,
0.08978271484375,
0.0185699462890625,
0.049591064453125,
-0.02569580078125,
0.1259765625,
0.039306640625,
0.009613037109375,
-0.041046142578125,
0.0206451416015625,
-0.011566162109375,
-0.003803253173828125,
-0.0036468505859375,
... |
Atomic semantics | 0.875997 | 2 | [-0.04443359375,-0.1988525390625,0.1082763671875,0.1160888671875,-0.23388671875,-0.026092529296875,-(...TRUNCATED) |
Axiom of regularity | 0.806727 | 3 | [-0.051025390625,0.0404052734375,-0.0428466796875,0.12939453125,-0.040924072265625,-0.01192474365234(...TRUNCATED) |
Analysis of algorithms | 0.725553 | 3 | [-0.025146484375,-0.1060791015625,-0.0333251953125,0.0303955078125,-0.0087738037109375,-0.0099716186(...TRUNCATED) |
Assault gun | 0.757521 | 2 | [0.03057861328125,-0.005504608154296875,-0.0299072265625,-0.0023174285888671875,-0.0025482177734375,(...TRUNCATED) |
Audio signal processing | 0.74557 | 3 | [0.0015897750854492188,-0.0469970703125,-0.0595703125,0.015380859375,0.03253173828125,-0.02609252929(...TRUNCATED) |
Abstract data type | 0.65714 | 3 | [-0.0155029296875,-0.0299224853515625,-0.019775390625,-0.0079345703125,-0.12548828125,-0.01045989990(...TRUNCATED) |
Automated theorem proving | 0.741573 | 3 | [-0.0244140625,-0.0860595703125,-0.0543212890625,-0.0039043426513671875,-0.0111541748046875,-0.02804(...TRUNCATED) |
Abatement of debts and legacies | 0.71014 | 5 | [0.02618408203125,-0.0221099853515625,-0.004150390625,0.02685546875,0.09454345703125,-0.021209716796(...TRUNCATED) |
thinkies v3 — 1,583,873 concept vectors from Qwen3.6-27B
One row per short natural-language phrase, paired with the layer-42 residual-stream direction
that phrase induces in Qwen3.6-27B. 2.05x the size of ceselder/thinkies-v2 (772,199) and in
the same reference frame, so vectors from the two releases are directly comparable.
| column | type | meaning |
|---|---|---|
label |
string | the phrase |
vector |
fixed_size_list[5120] | its layer-42 direction, mean-centered |
reliability |
float | split-half agreement across the 16 prompt templates |
n_words |
int16 | words in the label |
How each vector was made
For a phrase X, X is substituted into 16 prompt templates of the form "Focus on the
following idea: X while writing the following phrase: Y", where Y is a fixed neutral carrier.
Y's tokens are force-appended and the layer-42 residual stream is averaged over exactly those
carrier positions. The vector is the mean of that over the 16 templates, minus a global
reference mean (thinkies_v3_ref_mean.npy, shipped here).
Vectors are directions. Scale is discarded downstream (cosine, NNOLS, norm-matched
injection), which is why fp16 is enough and why the reference mean must be subtracted before
comparing anything: raw activations here are ~93% a shared constant, so two arbitrary raw
vectors sit at cosine 0.996. Add ref_mean back if you want the uncentered activation.
reliability — what it does and does not tell you
Split-half cosine: the 16 draws are split into disjoint halves, each half mean-pooled, both contrasted against the per-template mean, then cosine between them. It measures whether the templates agree on a direction — test-retest precision. It is not a measure of whether the vector means its label, and it does not predict how uniquely the label pins the vector down.
Filters applied: reliability >= 0.65, labels of at most 8 tokens, then
activation-space dedup at cosine > 0.95 via LSH bucketing, which removed 27,366 rows
(1.70%) — differently-worded phrases the model represents identically.
Label length
1w 3,428 · 2w 128,475 · 3w 261,844 · 4w 338,270 · 5w 342,748 · 6w 331,692 · 7w 112,859 · 8w 64,557
Caveats
- Labels are mined from web text and are not filtered for content.
- Directions are specific to Qwen3.6-27B at layer 42 and to the template/carrier construction above; they are not expected to transfer to other models or layers as-is.
- The nearest neighbours of a vector are often a semantic schema rather than the exact
instance: the neighbourhood of
euthanizing a puppyis dominated by violence-against-the- defenceless phrases across many victim types. Treat "closest label" accordingly.
Multi-token OMP readouts (omp_readouts-*.parquet)
Every one of the 1,583,873 vectors also has a multi-token readout: a set of 16 English tokens chosen to explain the vector, rather than the tokens with the largest logit.
| column | meaning |
|---|---|
omp_readout |
the 16 tokens, space-joined — readable in the viewer |
omp_tokens / omp_weights |
the same tokens with their non-negative coefficients |
cos_explained_k16 |
cosine of the target vector explained by those 16 tokens |
How, and why not just use a J-lens
The atom is mapped to the last layer with the fitted Jacobian from
camilablank/workspace-lenses (J[42], target layer 62) and then decomposed by orthogonal
matching pursuit over the unembedding rows, restricted to English wordlike tokens with
non-negative coefficients.
The standard single-token J-lens readout is redundant by construction — its top tokens are
near-duplicates (' cost' ' costs' 'cost' 'Cost' is one direction shown four times), so it spans
a tiny subspace. Measured on a held-out document, probability-weighted top-K explains cosine
0.202 at K=64 and saturates there even at K=1024, while this constrained OMP readout reaches
0.358 — 1.77x more of the vector, while staying readable.
Two caveats. Unconstrained OMP scores higher still (0.505) but does it by selecting rare undertrained tokens with enormous negative weights, which is numerically efficient and semantically worthless — hence the constraints here. And the atom is transformed centered: the shared mean has norm 65.5 against a 4.3 concept residual, so transforming the uncentered activation yields the same generic readout for every atom (verified).
Examples: Gastric lymphoma -> medical disease health biopsy diagnosis cancer clinical ·
Earth tone -> colors rustic brown aesthetic painted sunlight hues ·
Cycle stealing -> CPU security computational exploiting technology stealth machine
- Downloads last month
- 49