maximuspowers/muat-fourier-5
Viewer • Updated • 10k • 12
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 | 86.0% |
| sorted_ascending | 75.8% |
| sorted_descending | 92.7% |
| alternating | 61.3% |
| contains_abc | 86.0% |
| starts_with | 88.5% |
| ends_with | 62.5% |
| no_repeats | 79.7% |
| has_majority | 47.9% |
| increasing_pairs | 78.6% |
| decreasing_pairs | 90.2% |
| vowel_consonant | 45.8% |
| first_last_match | 62.3% |
| mountain_pattern | 85.4% |
import torch
from huggingface_hub import hf_hub_download
# Download the model
checkpoint_path = hf_hub_download(repo_id='maximuspowers/muat-fourier-5-classifier', filename='best_model.pt')
checkpoint = torch.load(checkpoint_path)