Meta-UAT
Collection
Weight space learning experiments (interpreting behavior through activation signatures)
•
16 items
•
Updated
This model was trained to classify which patterns a subject model was trained on, based on neuron activation signatures.
The model predicts which of the following 14 patterns the subject model was trained on:
palindromesorted_ascendingsorted_descendingalternatingcontains_abcstarts_withends_withno_repeatshas_majorityincreasing_pairsdecreasing_pairsvowel_consonantfirst_last_matchmountain_patternWhen a model was trained on a pattern, what % of the time does the classifier detect it:
| Pattern | Recall (Detection Rate) |
|---|---|
| palindrome | 25.4% |
| sorted_ascending | 24.4% |
| sorted_descending | 28.4% |
| alternating | 36.2% |
| contains_abc | 26.6% |
| starts_with | 13.7% |
| ends_with | 36.8% |
| no_repeats | 22.2% |
| has_majority | 6.5% |
| increasing_pairs | 22.7% |
| decreasing_pairs | 39.1% |
| vowel_consonant | 0.0% |
| first_last_match | 14.0% |
| mountain_pattern | 26.2% |
import torch
from huggingface_hub import hf_hub_download
# Download the model
checkpoint_path = hf_hub_download(repo_id='maximuspowers/muat-separate-pca-10-classifier', filename='best_model.pt')
checkpoint = torch.load(checkpoint_path)