Views
No views yet
palindromesorted_ascendingsorted_descendingalternatingcontains_abcstarts_withends_withno_repeatshas_majorityincreasing_pairsdecreasing_pairsvowel_consonantfirst_last_matchmountain_pattern| Pattern | Recall (Detection Rate) |
|---|---|
| palindrome | 26.9% |
| sorted_ascending | 18.0% |
| sorted_descending | 26.3% |
| alternating | 26.7% |
| contains_abc | 19.0% |
| starts_with | 16.1% |
| ends_with | 17.5% |
| no_repeats | 0.0% |
| has_majority | 11.5% |
| increasing_pairs | 11.9% |
| decreasing_pairs | 14.3% |
| vowel_consonant | 0.0% |
| first_last_match | 7.3% |
| mountain_pattern | 10.2% |
1import torch
2from huggingface_hub import hf_hub_download
3
4# Download the model
5checkpoint_path = hf_hub_download(repo_id='maximuspowers/muat-pca-15-classifier', filename='best_model.pt')
6checkpoint = torch.load(checkpoint_path)