Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
4df137c
Support callable filters in TransformerBridge.add_hook() (#1186)
jlarson4 Feb 27, 2026
0edcb8d
Update Patching Hook to avoid causing conflicts with Torch not liking…
jlarson4 Mar 2, 2026
72d37b9
Prevent Stale Joint QKV values from being incorporated into weight fo…
jlarson4 Mar 3, 2026
a212f71
Updated to remove hardcoded .cpu() processing (#1189)
jlarson4 Mar 3, 2026
6662189
Return true initial batch size information (#1190)
jlarson4 Mar 3, 2026
a601233
hook_result & Hook Aliases issues (#1191)
jlarson4 Mar 3, 2026
1d83537
updated loading in exploratory analysis demo to use transformer bridg…
degenfabian Mar 4, 2026
1d8364f
updated loading in patchscopes generation demo to use transformer bri…
degenfabian Mar 4, 2026
1253850
Additional Exploratory analysis Demo fixes (#1192)
jlarson4 Mar 4, 2026
0b51a7e
update loading in bert demo to use transformer bridge (#1015)
degenfabian Mar 4, 2026
cfb03c6
updating loading in qwen demo to use transformer bridge (#1025)
degenfabian Mar 5, 2026
67d7014
updated loading in activation patching demo to use transformer bridge…
degenfabian Mar 5, 2026
7d26c0b
updating loading in t5 demo to use transformer bridge (#1022)
degenfabian Mar 6, 2026
b4fc375
updated loading in attribution patching demo to use transformer bridg…
degenfabian Mar 6, 2026
fb9f46a
Review and benchmarking
jlarson4 Mar 10, 2026
861beea
Coment cleanup
jlarson4 Mar 10, 2026
ba1c64a
fixing format bug
jlarson4 Mar 10, 2026
c0f62dd
CI fixes
jlarson4 Mar 11, 2026
d5512d3
Updat attribution patching to run with swap space
jlarson4 Mar 11, 2026
747e0f9
Updating
jlarson4 Mar 11, 2026
e6b72eb
Trying to get attributution patching to pass
jlarson4 Mar 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,13 @@ jobs:
notebook-checks:
name: Notebook Checks
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
notebook:
# - "Activation_Patching_in_TL_Demo"
# - "Attribution_Patching_Demo"
- "Attribution_Patching_Demo"
- "Activation_Patching_in_TL_Demo"
- "ARENA_Content"
- "BERT"
- "Exploratory_Analysis_Demo"
Expand All @@ -237,9 +238,17 @@ jobs:
# - "No_Position_Experiment"
- "Othello_GPT"
- "Patchscopes_Generation_Demo"
# - "T5"
- "T5"
steps:
- uses: actions/checkout@v3
- name: Add swap space
run: |
sudo swapoff /swapfile 2>/dev/null || true
sudo rm -f /swapfile
sudo fallocate -l 8G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
Expand Down
448 changes: 78 additions & 370 deletions demos/Activation_Patching_in_TL_Demo.ipynb

Large diffs are not rendered by default.

Loading
Loading