Views
No views yet
ST-EEGFormer-largeV2
(asset large_weights_only_210.pth).| embed_dim | depth | num_heads | patch_size | channel vocab | |
|---|---|---|---|---|---|
| largeV2 | 1024 | 24 | 16 | 16 | 256 |
chs_info works for standard electrodes; pass chan_pos_idx explicitly for the HBN montage / non-standard channels.1from braindecode.models import STEEGFormer
2
3model = STEEGFormer.from_pretrained(
4 "braindecode/STEEGFormer-largeV2",
5 n_outputs=4, n_chans=22, n_times=1000, chs_info=chs_info,
6)
7# Encoder features: out = model(x, return_features=True); out["features"]