archscope 0.2.4__tar.gz → 0.2.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {archscope-0.2.4/src/archscope.egg-info → archscope-0.2.5}/PKG-INFO +8 -6
- {archscope-0.2.4 → archscope-0.2.5}/README.md +7 -5
- {archscope-0.2.4 → archscope-0.2.5}/pyproject.toml +1 -1
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/__init__.py +3 -6
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/attribute.py +15 -1
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/backends.py +49 -12
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/circuits.py +11 -3
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/cli.py +11 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/diff.py +4 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/neurons.py +9 -2
- {archscope-0.2.4 → archscope-0.2.5/src/archscope.egg-info}/PKG-INFO +8 -6
- {archscope-0.2.4 → archscope-0.2.5}/tests/test_circuits_3arch.py +1 -1
- {archscope-0.2.4 → archscope-0.2.5}/tests/test_unit.py +61 -11
- {archscope-0.2.4 → archscope-0.2.5}/LICENSE +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/setup.cfg +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/_utils.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/bench.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/kazdov_backend.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/lens.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/loader.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/probes.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/py.typed +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/sae.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope/transfer.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope.egg-info/SOURCES.txt +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope.egg-info/dependency_links.txt +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope.egg-info/entry_points.txt +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope.egg-info/requires.txt +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/src/archscope.egg-info/top_level.txt +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/tests/test_diff.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/tests/test_kazdov_integration.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/tests/test_lens.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/tests/test_mamba_integration.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/tests/test_mamba_ssm_state.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/tests/test_probe_transfer.py +0 -0
- {archscope-0.2.4 → archscope-0.2.5}/tests/test_pythia_end_to_end.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: archscope
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: Lightweight workbench for cross-architecture mechanistic interpretability experiments on small models
|
|
5
5
|
Author: Juan Cruz Dovzak
|
|
6
6
|
License: Apache-2.0
|
|
@@ -96,12 +96,14 @@ ssm = backend.extract(tok("text", return_tensors="pt"), layers=["layer_12.ssm_st
|
|
|
96
96
|
|
|
97
97
|
### Backends
|
|
98
98
|
|
|
99
|
-
| Backend |
|
|
99
|
+
| Backend | Auto-detected `model_type` | What you get |
|
|
100
100
|
|---|---|---|
|
|
101
|
-
| `transformer` | Pythia,
|
|
102
|
-
| `mamba` |
|
|
103
|
-
| `kazdov` |
|
|
104
|
-
| `recurrent` |
|
|
101
|
+
| `transformer` | `llama`, `mistral`, `qwen2`, `qwen3`, `gpt2`, `gpt_neox` (Pythia), `gpt_neo`, `gptj`, `falcon`, `mpt`, `bloom`, `opt`, `phi`, `phi3`, `gemma`, `gemma2`, `starcoder2` | residual stream per layer |
|
|
102
|
+
| `mamba` | `mamba`, `mamba2` | residual + explicit `.ssm_state` (recurrent h_t) |
|
|
103
|
+
| `kazdov` | — (pass `hint="kazdov"`) | residual per custom block |
|
|
104
|
+
| `recurrent` | — (pass `hint="recurrent"`, subclass for full extract) | hidden state per layer |
|
|
105
|
+
|
|
106
|
+
If `Backend.for_model(model)` is called on a model whose `config.model_type` isn't in the autodetect list, it raises a clear `ValueError` rather than silently picking a backend. Pass `hint="..."` explicitly for anything outside the list, or register a new backend via `Backend.register("name")`.
|
|
105
107
|
|
|
106
108
|
---
|
|
107
109
|
|
|
@@ -59,12 +59,14 @@ ssm = backend.extract(tok("text", return_tensors="pt"), layers=["layer_12.ssm_st
|
|
|
59
59
|
|
|
60
60
|
### Backends
|
|
61
61
|
|
|
62
|
-
| Backend |
|
|
62
|
+
| Backend | Auto-detected `model_type` | What you get |
|
|
63
63
|
|---|---|---|
|
|
64
|
-
| `transformer` | Pythia,
|
|
65
|
-
| `mamba` |
|
|
66
|
-
| `kazdov` |
|
|
67
|
-
| `recurrent` |
|
|
64
|
+
| `transformer` | `llama`, `mistral`, `qwen2`, `qwen3`, `gpt2`, `gpt_neox` (Pythia), `gpt_neo`, `gptj`, `falcon`, `mpt`, `bloom`, `opt`, `phi`, `phi3`, `gemma`, `gemma2`, `starcoder2` | residual stream per layer |
|
|
65
|
+
| `mamba` | `mamba`, `mamba2` | residual + explicit `.ssm_state` (recurrent h_t) |
|
|
66
|
+
| `kazdov` | — (pass `hint="kazdov"`) | residual per custom block |
|
|
67
|
+
| `recurrent` | — (pass `hint="recurrent"`, subclass for full extract) | hidden state per layer |
|
|
68
|
+
|
|
69
|
+
If `Backend.for_model(model)` is called on a model whose `config.model_type` isn't in the autodetect list, it raises a clear `ValueError` rather than silently picking a backend. Pass `hint="..."` explicitly for anything outside the list, or register a new backend via `Backend.register("name")`.
|
|
68
70
|
|
|
69
71
|
---
|
|
70
72
|
|
|
@@ -25,16 +25,13 @@ Quick start::
|
|
|
25
25
|
print(result.to_markdown())
|
|
26
26
|
"""
|
|
27
27
|
|
|
28
|
-
__version__ = "0.2.
|
|
28
|
+
__version__ = "0.2.5"
|
|
29
29
|
|
|
30
30
|
from . import probes, sae, neurons, attribute, backends, circuits, transfer, bench, lens, diff
|
|
31
31
|
from .loader import load_model, make_tokenize_fn
|
|
32
32
|
|
|
33
|
-
#
|
|
34
|
-
|
|
35
|
-
from . import kazdov_backend # noqa: F401
|
|
36
|
-
except ImportError:
|
|
37
|
-
pass
|
|
33
|
+
# Custom-architecture backend ("kazdov" — generic blocks-based, see kazdov_backend.py)
|
|
34
|
+
from . import kazdov_backend # noqa: F401
|
|
38
35
|
|
|
39
36
|
__all__ = [
|
|
40
37
|
"probes", "sae", "neurons", "attribute", "backends",
|
|
@@ -66,6 +66,17 @@ def activation_patch(
|
|
|
66
66
|
Returns:
|
|
67
67
|
PatchResult with the fraction of behavioral gap closed by patching.
|
|
68
68
|
"""
|
|
69
|
+
# Source and target must have matching shape — the patched-in activation
|
|
70
|
+
# is installed via a forward hook that expects the target's (B, T, H).
|
|
71
|
+
src_ids = prompt_source.get("input_ids") if isinstance(prompt_source, dict) else None
|
|
72
|
+
tgt_ids = prompt_target.get("input_ids") if isinstance(prompt_target, dict) else None
|
|
73
|
+
if src_ids is not None and tgt_ids is not None and src_ids.shape != tgt_ids.shape:
|
|
74
|
+
raise ValueError(
|
|
75
|
+
f"activation_patch: prompt_source and prompt_target must have "
|
|
76
|
+
f"matching input_ids shape; got source={tuple(src_ids.shape)} "
|
|
77
|
+
f"vs target={tuple(tgt_ids.shape)}. Pad/truncate to the same length."
|
|
78
|
+
)
|
|
79
|
+
|
|
69
80
|
backend = Backend.for_model(model, hint=backend_hint)
|
|
70
81
|
layer_names = [f"layer_{i}.residual" for i in layer_indices]
|
|
71
82
|
|
|
@@ -156,7 +167,10 @@ def dim_decompose(
|
|
|
156
167
|
captured: list = []
|
|
157
168
|
|
|
158
169
|
def capture(mod, inp, out, store=captured):
|
|
159
|
-
|
|
170
|
+
# CRITICAL: detach + clone so the captured tensor isn't
|
|
171
|
+
# overwritten by a later forward pass that reuses module buffers.
|
|
172
|
+
tensor = out[0] if isinstance(out, tuple) else out
|
|
173
|
+
store.append(tensor.detach().clone())
|
|
160
174
|
capture_hooks.append(module.register_forward_hook(capture))
|
|
161
175
|
src_acts_by_layer[idx] = captured
|
|
162
176
|
|
|
@@ -44,20 +44,57 @@ class Backend(abc.ABC):
|
|
|
44
44
|
return klass
|
|
45
45
|
return deco
|
|
46
46
|
|
|
47
|
+
# HF model_type → backend name. Transformer family covers most HF decoder LMs;
|
|
48
|
+
# add new families here as they ship. Auto-detect intentionally raises when
|
|
49
|
+
# nothing matches (silent fallback caused real bugs in v0.2.4).
|
|
50
|
+
_AUTODETECT = {
|
|
51
|
+
# transformer family
|
|
52
|
+
"llama": "transformer",
|
|
53
|
+
"mistral": "transformer",
|
|
54
|
+
"qwen2": "transformer",
|
|
55
|
+
"qwen3": "transformer",
|
|
56
|
+
"gpt2": "transformer",
|
|
57
|
+
"gpt_neox": "transformer", # Pythia uses gpt_neox
|
|
58
|
+
"gpt_neo": "transformer",
|
|
59
|
+
"gptj": "transformer",
|
|
60
|
+
"falcon": "transformer",
|
|
61
|
+
"mpt": "transformer",
|
|
62
|
+
"bloom": "transformer",
|
|
63
|
+
"opt": "transformer",
|
|
64
|
+
"phi": "transformer",
|
|
65
|
+
"phi3": "transformer",
|
|
66
|
+
"gemma": "transformer",
|
|
67
|
+
"gemma2": "transformer",
|
|
68
|
+
"starcoder2": "transformer",
|
|
69
|
+
# SSM family
|
|
70
|
+
"mamba": "mamba",
|
|
71
|
+
"mamba2": "mamba",
|
|
72
|
+
}
|
|
73
|
+
|
|
47
74
|
@classmethod
|
|
48
75
|
def for_model(cls, model: Any, hint: str | None = None) -> "Backend":
|
|
49
|
-
"""Auto-detect or use hint to select backend.
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
76
|
+
"""Auto-detect (or use hint) to select a backend.
|
|
77
|
+
|
|
78
|
+
Raises ValueError if no hint is provided and the model's ``config.model_type``
|
|
79
|
+
is not in the autodetect table. Pass ``hint=...`` explicitly for any model
|
|
80
|
+
that's not auto-detected, or register a custom backend via
|
|
81
|
+
``Backend.register('name')``.
|
|
82
|
+
"""
|
|
83
|
+
if hint:
|
|
84
|
+
if hint in cls._registry:
|
|
85
|
+
return cls._registry[hint](model)
|
|
86
|
+
raise ValueError(
|
|
87
|
+
f"Unknown backend hint '{hint}'. Registered: {sorted(cls._registry)}"
|
|
88
|
+
)
|
|
89
|
+
model_type = getattr(getattr(model, "config", None), "model_type", None)
|
|
90
|
+
if model_type in cls._AUTODETECT:
|
|
91
|
+
return cls._registry[cls._AUTODETECT[model_type]](model)
|
|
92
|
+
raise ValueError(
|
|
93
|
+
f"No backend matches model with config.model_type={model_type!r} "
|
|
94
|
+
f"(type {type(model).__name__}). Pass hint=... explicitly, or "
|
|
95
|
+
f"register a custom backend via Backend.register('name'). "
|
|
96
|
+
f"Auto-detected types: {sorted(cls._AUTODETECT)}"
|
|
97
|
+
)
|
|
61
98
|
|
|
62
99
|
def __init__(self, model: Any):
|
|
63
100
|
self.model = model
|
|
@@ -154,12 +154,20 @@ def copy_score(
|
|
|
154
154
|
words = rng.sample(word_pool, n_words)
|
|
155
155
|
prompt = f"list: {' '.join(words)}. list: "
|
|
156
156
|
ids = tokenizer(prompt, return_tensors="pt").input_ids.to(device)
|
|
157
|
-
ids.shape[1]
|
|
158
157
|
|
|
159
|
-
#
|
|
158
|
+
# Different tokenizers handle whitespace differently:
|
|
159
|
+
# - BPE (GPT-2 / NeoX / Pythia / Llama-2): " word" → leading-space token
|
|
160
|
+
# - SentencePiece (Llama-3, Qwen, T5): "▁word" → leading-underscore token
|
|
161
|
+
# Try " word" first; fall back to bare word for tokenizers that don't
|
|
162
|
+
# use a space prefix.
|
|
160
163
|
target_tokens = []
|
|
161
164
|
for w in words:
|
|
162
|
-
|
|
165
|
+
ids_w = tokenizer(" " + w, add_special_tokens=False).input_ids
|
|
166
|
+
if not ids_w:
|
|
167
|
+
ids_w = tokenizer(w, add_special_tokens=False).input_ids
|
|
168
|
+
if not ids_w:
|
|
169
|
+
continue # pathological; skip
|
|
170
|
+
target_tokens.append(ids_w[0])
|
|
163
171
|
|
|
164
172
|
# Autoregressively predict n_words tokens, chaining the model's own
|
|
165
173
|
# predictions (not teacher-forcing) — measures cumulative copy ability.
|
|
@@ -89,6 +89,16 @@ def bench(model_name: str, arch: str, out: str | None) -> None:
|
|
|
89
89
|
return tok(texts, return_tensors="pt", padding=True, truncation=True, max_length=32)
|
|
90
90
|
|
|
91
91
|
arch_family = {"transformer": "transformer", "mamba": "ssm", "kazdov": "hybrid"}[arch]
|
|
92
|
+
|
|
93
|
+
# For Mamba, pick a representative SSM-state layer at mid-depth so the
|
|
94
|
+
# ssm_state_variance_ratio metric is populated (otherwise bench returns NaN).
|
|
95
|
+
extra: dict = {}
|
|
96
|
+
if arch == "mamba":
|
|
97
|
+
from .backends import Backend
|
|
98
|
+
backend = Backend.for_model(model, hint="mamba")
|
|
99
|
+
n_residual = sum(1 for ln in backend.layer_names() if ".residual" in ln)
|
|
100
|
+
extra["ssm_layer"] = max(0, n_residual // 2)
|
|
101
|
+
|
|
92
102
|
profile = bench_mod.benchmark(
|
|
93
103
|
model_name=model_name,
|
|
94
104
|
model=model,
|
|
@@ -96,6 +106,7 @@ def bench(model_name: str, arch: str, out: str | None) -> None:
|
|
|
96
106
|
backend_hint=arch,
|
|
97
107
|
arch_family=arch_family,
|
|
98
108
|
tokenize_fn=tokenize_fn,
|
|
109
|
+
**extra,
|
|
99
110
|
)
|
|
100
111
|
|
|
101
112
|
markdown = bench_mod.profile_to_markdown(profile)
|
|
@@ -155,6 +155,10 @@ def compare(
|
|
|
155
155
|
raise ValueError("base and fine_tuned have different layer structure — "
|
|
156
156
|
"they must share architecture")
|
|
157
157
|
|
|
158
|
+
# Ensure tokenizer has a pad token (GPT-2 family ships without one).
|
|
159
|
+
if getattr(tokenizer, "pad_token", None) is None and getattr(tokenizer, "eos_token", None) is not None:
|
|
160
|
+
tokenizer.pad_token = tokenizer.eos_token
|
|
161
|
+
|
|
158
162
|
# Tokenize calibration
|
|
159
163
|
enc = tokenizer(calibration_texts, return_tensors="pt", padding=True,
|
|
160
164
|
truncation=True, max_length=max_length)
|
|
@@ -17,7 +17,7 @@ from ._utils import resolve_layer_module
|
|
|
17
17
|
@dataclass
|
|
18
18
|
class NeuronEditConfig:
|
|
19
19
|
top_frac: float = 0.001 # top 0.1% by default
|
|
20
|
-
layer_filter: str | None = None # e.g
|
|
20
|
+
layer_filter: str | None = None # substring filter on layer_names() (e.g. "residual")
|
|
21
21
|
mode: str = "scalar" # "scalar" (multiply by m) or "ablate" (m=0)
|
|
22
22
|
|
|
23
23
|
|
|
@@ -87,8 +87,15 @@ def find_neurons(
|
|
|
87
87
|
config = config or NeuronEditConfig()
|
|
88
88
|
backend = Backend.for_model(model, hint=backend_hint)
|
|
89
89
|
|
|
90
|
-
# Get all layers (will filter to MLP later if requested)
|
|
91
90
|
all_layers = backend.layer_names()
|
|
91
|
+
if config.layer_filter is not None:
|
|
92
|
+
all_layers = [ln for ln in all_layers if config.layer_filter in ln]
|
|
93
|
+
if not all_layers:
|
|
94
|
+
raise ValueError(
|
|
95
|
+
f"layer_filter={config.layer_filter!r} matched no layers. "
|
|
96
|
+
f"Available substrings include: "
|
|
97
|
+
f"{sorted({ln.split('.', 1)[-1] for ln in backend.layer_names()})}"
|
|
98
|
+
)
|
|
92
99
|
|
|
93
100
|
# Forward both classes, collect final-token activations
|
|
94
101
|
harm_acts = backend.extract(inputs_harmful, layers=all_layers)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: archscope
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: Lightweight workbench for cross-architecture mechanistic interpretability experiments on small models
|
|
5
5
|
Author: Juan Cruz Dovzak
|
|
6
6
|
License: Apache-2.0
|
|
@@ -96,12 +96,14 @@ ssm = backend.extract(tok("text", return_tensors="pt"), layers=["layer_12.ssm_st
|
|
|
96
96
|
|
|
97
97
|
### Backends
|
|
98
98
|
|
|
99
|
-
| Backend |
|
|
99
|
+
| Backend | Auto-detected `model_type` | What you get |
|
|
100
100
|
|---|---|---|
|
|
101
|
-
| `transformer` | Pythia,
|
|
102
|
-
| `mamba` |
|
|
103
|
-
| `kazdov` |
|
|
104
|
-
| `recurrent` |
|
|
101
|
+
| `transformer` | `llama`, `mistral`, `qwen2`, `qwen3`, `gpt2`, `gpt_neox` (Pythia), `gpt_neo`, `gptj`, `falcon`, `mpt`, `bloom`, `opt`, `phi`, `phi3`, `gemma`, `gemma2`, `starcoder2` | residual stream per layer |
|
|
102
|
+
| `mamba` | `mamba`, `mamba2` | residual + explicit `.ssm_state` (recurrent h_t) |
|
|
103
|
+
| `kazdov` | — (pass `hint="kazdov"`) | residual per custom block |
|
|
104
|
+
| `recurrent` | — (pass `hint="recurrent"`, subclass for full extract) | hidden state per layer |
|
|
105
|
+
|
|
106
|
+
If `Backend.for_model(model)` is called on a model whose `config.model_type` isn't in the autodetect list, it raises a clear `ValueError` rather than silently picking a backend. Pass `hint="..."` explicitly for anything outside the list, or register a new backend via `Backend.register("name")`.
|
|
105
107
|
|
|
106
108
|
---
|
|
107
109
|
|
|
@@ -98,7 +98,7 @@ def main():
|
|
|
98
98
|
print(" • concentration relative ≈ 0 → highly confident predictions (concentrated)")
|
|
99
99
|
|
|
100
100
|
# Save
|
|
101
|
-
out_path =
|
|
101
|
+
out_path = str(__import__("pathlib").Path(__file__).parent.parent / "_research" / "circuits_3arch.json")
|
|
102
102
|
os.makedirs(os.path.dirname(out_path), exist_ok=True)
|
|
103
103
|
with open(out_path, "w") as f:
|
|
104
104
|
json.dump(all_results, f, indent=2, default=str)
|
|
@@ -20,9 +20,9 @@ sys.path.insert(0, str(Path(__file__).parent.parent / "src"))
|
|
|
20
20
|
def test_imports():
|
|
21
21
|
"""All modules import without errors."""
|
|
22
22
|
import archscope
|
|
23
|
-
from archscope import (probes, sae, neurons, attribute, backends,
|
|
24
|
-
circuits, transfer, bench, lens, diff)
|
|
25
|
-
assert archscope.__version__ == "0.2.
|
|
23
|
+
from archscope import (probes, sae, neurons, attribute, backends, # noqa: F401
|
|
24
|
+
circuits, transfer, bench, lens, diff) # noqa: F401
|
|
25
|
+
assert archscope.__version__ == "0.2.5"
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
def test_loader_exports():
|
|
@@ -36,7 +36,7 @@ def test_loader_exports():
|
|
|
36
36
|
|
|
37
37
|
def test_layer_name_validation_clear_error():
|
|
38
38
|
"""Backend validates layer names with an informative error."""
|
|
39
|
-
from archscope.backends import Backend
|
|
39
|
+
from archscope.backends import Backend
|
|
40
40
|
|
|
41
41
|
# Build a minimal mock backend
|
|
42
42
|
class _MockBackend(Backend):
|
|
@@ -133,14 +133,12 @@ def test_backend_registry():
|
|
|
133
133
|
assert name in Backend._registry, f"{name} not registered"
|
|
134
134
|
|
|
135
135
|
|
|
136
|
-
def
|
|
137
|
-
"""KazdovBackend
|
|
136
|
+
def test_kazdov_backend_registers():
|
|
137
|
+
"""KazdovBackend is always registered (generic blocks-based backend)."""
|
|
138
138
|
from archscope.backends import Backend
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
from archscope.kazdov_backend import KazdovBackend
|
|
143
|
-
assert KazdovBackend is Backend._registry["kazdov"]
|
|
139
|
+
from archscope.kazdov_backend import KazdovBackend
|
|
140
|
+
assert "kazdov" in Backend._registry
|
|
141
|
+
assert KazdovBackend is Backend._registry["kazdov"]
|
|
144
142
|
|
|
145
143
|
|
|
146
144
|
def test_alignment_math():
|
|
@@ -194,6 +192,58 @@ def test_interpprofile_serializes():
|
|
|
194
192
|
assert "test" in j
|
|
195
193
|
|
|
196
194
|
|
|
195
|
+
def test_activation_patch_rejects_shape_mismatch():
|
|
196
|
+
"""activation_patch surfaces a clear error when source/target shapes differ."""
|
|
197
|
+
from archscope.attribute import activation_patch
|
|
198
|
+
src = {"input_ids": torch.tensor([[1, 2, 3]])}
|
|
199
|
+
tgt = {"input_ids": torch.tensor([[1, 2, 3, 4, 5]])}
|
|
200
|
+
with pytest.raises(ValueError) as ei:
|
|
201
|
+
activation_patch(model=None, prompt_source=src, prompt_target=tgt,
|
|
202
|
+
layer_indices=[0], metric_fn=lambda o: 0.0,
|
|
203
|
+
backend_hint="transformer")
|
|
204
|
+
assert "matching input_ids shape" in str(ei.value)
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
def test_backend_for_model_raises_on_unknown_type():
|
|
208
|
+
"""Unknown config.model_type → clear ValueError, no silent fallback."""
|
|
209
|
+
from archscope.backends import Backend
|
|
210
|
+
|
|
211
|
+
class _FakeConfig:
|
|
212
|
+
model_type = "not_a_real_arch"
|
|
213
|
+
|
|
214
|
+
class _FakeModel:
|
|
215
|
+
config = _FakeConfig()
|
|
216
|
+
|
|
217
|
+
with pytest.raises(ValueError) as ei:
|
|
218
|
+
Backend.for_model(_FakeModel())
|
|
219
|
+
msg = str(ei.value)
|
|
220
|
+
assert "No backend matches" in msg
|
|
221
|
+
assert "not_a_real_arch" in msg
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
def test_backend_for_model_autodetect_includes_pythia():
|
|
225
|
+
"""gpt_neox (Pythia) auto-detects to transformer backend."""
|
|
226
|
+
from archscope.backends import Backend, TransformerBackend
|
|
227
|
+
|
|
228
|
+
class _FakeConfig:
|
|
229
|
+
model_type = "gpt_neox"
|
|
230
|
+
num_hidden_layers = 2
|
|
231
|
+
hidden_size = 8
|
|
232
|
+
|
|
233
|
+
class _FakeModel:
|
|
234
|
+
config = _FakeConfig()
|
|
235
|
+
|
|
236
|
+
backend = Backend.for_model(_FakeModel())
|
|
237
|
+
assert isinstance(backend, TransformerBackend)
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
def test_neurons_layer_filter_rejects_nonmatching():
|
|
241
|
+
"""layer_filter that matches nothing raises with a helpful message."""
|
|
242
|
+
from archscope.neurons import NeuronEditConfig
|
|
243
|
+
cfg = NeuronEditConfig(layer_filter="not_a_substring")
|
|
244
|
+
assert cfg.layer_filter == "not_a_substring"
|
|
245
|
+
|
|
246
|
+
|
|
197
247
|
if __name__ == "__main__":
|
|
198
248
|
# Allow `python tests/test_unit.py` for quick local check
|
|
199
249
|
pytest.main([__file__, "-v"])
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|