Image Feature Extraction
Transformers
Safetensors
esmfold2
biology
protein-structure
multimodal-protein-model
custom_code
Instructions to use Synthyra/ESMFold2-Fast with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Synthyra/ESMFold2-Fast with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-feature-extraction", model="Synthyra/ESMFold2-Fast", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Synthyra/ESMFold2-Fast", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
File size: 66,140 Bytes
fb8a87c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 | # Copyright 2026 Biohub. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""PyTorch ESMC model."""
import importlib
import math
import re
from dataclasses import dataclass
from typing import Optional, cast
import torch
import torch.nn as nn
from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, MSELoss
from torch.nn import functional as F
from transformers.modeling_outputs import (
MaskedLMOutput,
ModelOutput,
SequenceClassifierOutput,
TokenClassifierOutput,
)
from transformers.modeling_utils import PreTrainedModel
from transformers.utils import (
auto_docstring,
can_return_tuple,
is_flash_attn_2_available,
logging,
)
from .configuration_esmc import ESMCConfig
from .modeling_esmc_sae import _ESMCSAELayer
logger = logging.get_logger(__name__)
_CONFIG_FOR_DOC = "ESMCConfig"
# Optional accelerated kernels. Pure-PyTorch fallbacks below if absent.
if is_flash_attn_2_available():
flash_attn_module = importlib.import_module("flash_attn")
flash_bert_padding = importlib.import_module("flash_attn.bert_padding")
flash_attn_varlen_qkvpacked_func = (
flash_attn_module.flash_attn_varlen_qkvpacked_func
)
pad_input = flash_bert_padding.pad_input
unpad_input = flash_bert_padding.unpad_input
_flash_attn_available = True
else:
pad_input = unpad_input = flash_attn_varlen_qkvpacked_func = None
_flash_attn_available = False
try:
flash_rotary = importlib.import_module("flash_attn.ops.triton.rotary")
apply_triton_rotary = flash_rotary.apply_rotary
_flash_attn_rotary_available = torch.cuda.is_available()
except ImportError:
apply_triton_rotary = None # type: ignore[assignment]
_flash_attn_rotary_available = False
# Transformer Engine: fused LayerNorm+Linear / LayerNorm+MLP kernels with
# fp32 reduction inside the LayerNorm. Recommended on GPU for accurate bf16
# inference; without it the pure-PyTorch fallback drifts ~O(10) in fp32 and
# ~O(100) in bf16 on the unnormalized residual stream (perplexity stays
# within rounding noise).
try:
te = importlib.import_module("transformer_engine.pytorch")
_te_available = True
except ImportError:
te = None # type: ignore[assignment]
_te_available = False
# xformers: preferred SDPA implementation on GPU. Provides a fused
# bf16 attention kernel with deterministic reduction order. Flash
# Attention 2 and PyTorch's ``F.scaled_dot_product_attention`` are
# progressively-less-preferred fallbacks.
try:
xops = importlib.import_module("xformers.ops")
_xformers_available = True
except ImportError:
xops = None # type: ignore[assignment]
_xformers_available = False
# Flash Attention 2: secondary SDPA fallback. Used when xformers is not
# installed; fp16 / bf16 only.
if _flash_attn_available:
flash_attn_func = flash_attn_module.flash_attn_func
else:
flash_attn_func = None # type: ignore[assignment]
if not _te_available:
logger.warning(
"ESMC: transformer_engine is not installed; falling back to "
"pure-PyTorch LayerNorm+Linear / LayerNorm+MLP. Outputs will differ "
"numerically — measured on the unnormalized residual stream (before "
"the final LayerNorm), ~O(10) max-diff in fp32 and ~O(100) in bf16; "
"after the final LayerNorm these shrink to a few ULP and perplexity "
"stays within rounding noise. Install with "
"`pip install transformer-engine[pytorch]` to enable fused fp32-"
"reduction LayerNorm."
)
if not _xformers_available and not _flash_attn_available:
logger.warning(
"ESMC: neither xformers nor flash-attn is installed; falling back "
"to PyTorch ``F.scaled_dot_product_attention``. The attention "
"reduction order in bf16 differs from a fused kernel by ~1 bf16 "
"ULP per attention block; compounded across the 80-block stack "
"this reaches ~O(100) max-diff on the unnormalized residual stream. "
"Install xformers (preferred) with `pip install xformers` for a "
"fused attention kernel."
)
if torch.cuda.is_available() and not _flash_attn_rotary_available:
logger.warning(
"ESMC: flash-attn rotary kernel not installed; falling back to "
"pure-PyTorch RoPE. For faster GPU inference run `pip install flash-attn`."
)
# ---------------------------------------------------------------------------
# Output dataclasses
# ---------------------------------------------------------------------------
@dataclass
class ESMCOutput(ModelOutput):
"""
Args:
last_hidden_state (`torch.FloatTensor` of shape `(batch_size, sequence_length, d_model)`):
Sequence of hidden states at the output of the last layer, after layer normalisation.
hidden_states (`torch.FloatTensor`, *optional*):
Stacked hidden states for all encoder layers.
Shape ``(n_layers, batch_size, sequence_length, d_model)``.
Returned when ``output_hidden_states=True``.
sae_outputs (`dict[str, torch.Tensor]`, *optional*):
SAE feature magnitudes keyed by SAE model name (sparse tensors).
Only populated when SAE models have been registered via
``add_sae_models`` and ``compute_sae=True``.
attentions (`tuple(torch.FloatTensor)`, *optional*):
Per-layer attention weights of shape
``(batch_size, num_heads, sequence_length, sequence_length)``.
Returned when ``output_attentions=True``. Not available on the
``flash_attention_2`` path.
"""
last_hidden_state: torch.FloatTensor | None = None
hidden_states: torch.FloatTensor | None = None
sae_outputs: dict[str, torch.Tensor] | None = None
attentions: tuple[torch.FloatTensor, ...] | None = None
@dataclass
class ESMCMaskedLMOutput(MaskedLMOutput):
"""
Args:
loss (`torch.FloatTensor` of shape `(1,)`, *optional*):
Masked language modelling loss. Returned when ``labels`` are provided.
logits (`torch.FloatTensor` of shape `(batch_size, sequence_length, vocab_size)`):
Prediction scores of the language modelling head.
last_hidden_state (`torch.FloatTensor` of shape `(batch_size, sequence_length, d_model)`):
Final hidden states after layer normalisation.
hidden_states (`torch.FloatTensor`, *optional*):
Stacked hidden states. Shape ``(n_layers, batch_size, sequence_length, d_model)``.
sae_outputs (`dict[str, torch.Tensor]`, *optional*):
SAE feature magnitudes keyed by SAE model name (sparse tensors).
attentions (`tuple(torch.FloatTensor)`, *optional*):
Per-layer attention weights of shape
``(batch_size, num_heads, sequence_length, sequence_length)``.
Returned when ``output_attentions=True``.
"""
loss: torch.FloatTensor | None = None
logits: torch.FloatTensor | None = None
last_hidden_state: torch.FloatTensor | None = None
hidden_states: torch.FloatTensor | None = None
sae_outputs: dict[str, torch.Tensor] | None = None
attentions: tuple[torch.FloatTensor, ...] | None = None
@dataclass
class ESMCTokenClassifierOutput(TokenClassifierOutput):
"""
Args:
loss (`torch.FloatTensor` of shape `(1,)`, *optional*):
Token classification loss. Returned when ``labels`` are provided.
logits (`torch.FloatTensor` of shape `(batch_size, sequence_length, num_labels)`):
Classification scores (before SoftMax).
last_hidden_state (`torch.FloatTensor` of shape `(batch_size, sequence_length, d_model)`):
Final hidden states after layer normalisation.
hidden_states (`torch.FloatTensor`, *optional*):
Stacked hidden states. Shape ``(n_layers, batch_size, sequence_length, d_model)``.
sae_outputs (`dict[str, torch.Tensor]`, *optional*):
SAE feature magnitudes keyed by SAE model name (sparse tensors).
attentions (`tuple(torch.FloatTensor)`, *optional*):
Per-layer attention weights of shape
``(batch_size, num_heads, sequence_length, sequence_length)``.
Returned when ``output_attentions=True``.
"""
loss: torch.FloatTensor | None = None
logits: torch.FloatTensor | None = None
last_hidden_state: torch.FloatTensor | None = None
hidden_states: torch.FloatTensor | None = None
sae_outputs: dict[str, torch.Tensor] | None = None
attentions: tuple[torch.FloatTensor, ...] | None = None
@dataclass
class ESMCSequenceClassifierOutput(SequenceClassifierOutput):
"""
Args:
loss (`torch.FloatTensor` of shape `(1,)`, *optional*):
Sequence classification loss. Returned when ``labels`` are provided.
logits (`torch.FloatTensor` of shape `(batch_size, num_labels)`):
Classification scores (before SoftMax).
last_hidden_state (`torch.FloatTensor` of shape `(batch_size, sequence_length, d_model)`):
Final hidden states after layer normalisation.
hidden_states (`torch.FloatTensor`, *optional*):
Stacked hidden states. Shape ``(n_layers, batch_size, sequence_length, d_model)``.
sae_outputs (`dict[str, torch.Tensor]`, *optional*):
SAE feature magnitudes keyed by SAE model name (sparse tensors).
attentions (`tuple(torch.FloatTensor)`, *optional*):
Per-layer attention weights of shape
``(batch_size, num_heads, sequence_length, sequence_length)``.
Returned when ``output_attentions=True``.
"""
loss: torch.FloatTensor | None = None
logits: torch.FloatTensor | None = None
last_hidden_state: torch.FloatTensor | None = None
hidden_states: torch.FloatTensor | None = None
sae_outputs: dict[str, torch.Tensor] | None = None
attentions: tuple[torch.FloatTensor, ...] | None = None
# ---------------------------------------------------------------------------
# Rotary position embedding helpers
# ---------------------------------------------------------------------------
def _rotate_half(x: torch.Tensor, interleaved: bool = False) -> torch.Tensor:
if not interleaved:
x1, x2 = x.chunk(2, dim=-1)
return torch.cat((-x2, x1), dim=-1)
x1, x2 = x[..., ::2], x[..., 1::2]
return torch.stack((-x2, x1), dim=-1).flatten(-2, -1)
def _apply_rotary_emb_torch(
x: torch.Tensor, cos: torch.Tensor, sin: torch.Tensor, interleaved: bool = False
) -> torch.Tensor:
"""Apply rotary position embeddings (pure PyTorch, no Triton dependency).
Args:
x: ``(batch, seqlen, n_heads, head_dim)``
cos: ``(seqlen, rotary_dim / 2)``
sin: ``(seqlen, rotary_dim / 2)``
"""
ro_dim = cos.shape[-1] * 2
seqlen = x.size(1)
cos = cos[:seqlen].unsqueeze(1).repeat(1, 1, 2)
sin = sin[:seqlen].unsqueeze(1).repeat(1, 1, 2)
return torch.cat(
[
x[..., :ro_dim] * cos + _rotate_half(x[..., :ro_dim], interleaved) * sin,
x[..., ro_dim:],
],
dim=-1,
)
class RotaryEmbedding(nn.Module):
"""Rotary position embeddings (RoPE) as described in `RoFormer`_.
.. _RoFormer: https://arxiv.org/abs/2104.09864
Args:
dim: Size of a single attention head.
base: Frequency base for the sinusoidal positions.
interleaved: If ``True`` rotate adjacent pairs (GPT-J style) instead of
splitting the head dimension in half (GPT-NeoX style).
scaling_factor: Linear scaling factor applied to position indices.
pos_idx_in_fp32: Compute position indices in float32 to avoid bf16
rounding errors at large sequence lengths.
"""
def __init__(
self,
dim: int,
base: float = 10000.0,
interleaved: bool = False,
scale_base: float | None = None,
scaling_factor: float = 1.0,
pos_idx_in_fp32: bool = True,
device=None,
):
super().__init__()
self.dim = dim
self.base = base
self.interleaved = interleaved
self.scale_base = scale_base
self.scaling_factor = scaling_factor
self.pos_idx_in_fp32 = pos_idx_in_fp32
self._seq_len_cached = 0
self._cos_cached: torch.Tensor | None = None
self._sin_cached: torch.Tensor | None = None
self._cos_k_cached: torch.Tensor | None = None
self._sin_k_cached: torch.Tensor | None = None
self.reset_parameters(device=device)
def reset_parameters(self, device=None):
inv_freq = self._compute_inv_freq(device)
self.register_buffer("inv_freq", inv_freq, persistent=False)
arange = torch.arange(0, self.dim, 2, device=device, dtype=torch.float32)
scale = (
(arange + 0.4 * self.dim) / (1.4 * self.dim)
if self.scale_base is not None
else None
)
self.register_buffer("scale", scale, persistent=False)
def _compute_inv_freq(self, device=None) -> torch.Tensor:
return 1.0 / (
self.base
** (
torch.arange(0, self.dim, 2, device=device, dtype=torch.float32)
/ self.dim
)
)
def _update_cos_sin_cache(self, seqlen: int, device=None, dtype=None):
if self.inv_freq.is_meta:
self.reset_parameters(device=device)
if (
seqlen > self._seq_len_cached
or self._cos_cached is None
or self._cos_cached.device != device
or self._cos_cached.dtype != dtype
or (self.training and self._cos_cached.is_inference())
):
self._seq_len_cached = seqlen
if self.pos_idx_in_fp32:
t = (
torch.arange(seqlen, device=device, dtype=torch.float32)
/ self.scaling_factor
)
inv_freq = (
self.inv_freq.to(torch.float32)
if self.inv_freq.dtype != torch.float32
else self.inv_freq
)
else:
t = (
torch.arange(seqlen, device=device, dtype=self.inv_freq.dtype) # type: ignore[call-overload]
/ self.scaling_factor
)
inv_freq = self.inv_freq
freqs = torch.outer(t, inv_freq) # type: ignore[arg-type]
if self.scale is None:
self._cos_cached = torch.cos(freqs).to(dtype)
self._sin_cached = torch.sin(freqs).to(dtype)
else:
_scale: torch.Tensor = self.scale # type: ignore[assignment]
power = (
torch.arange(seqlen, dtype=_scale.dtype, device=_scale.device)
- seqlen // 2
) / self.scale_base # type: ignore[operator]
scale = _scale.to(device=power.device) ** power.unsqueeze(-1)
self._cos_cached = (torch.cos(freqs) * scale).to(dtype)
self._sin_cached = (torch.sin(freqs) * scale).to(dtype)
self._cos_k_cached = (torch.cos(freqs) / scale).to(dtype)
self._sin_k_cached = (torch.sin(freqs) / scale).to(dtype)
def _apply(self, fn, recurse=True):
if self.inv_freq.is_meta:
self.reset_parameters(device="cpu")
result = super()._apply(fn, recurse=recurse)
# Recompute inv_freq on the new device: CPU vs CUDA ``pow`` differ by
# ~1 fp32 ULP, which compounds across attention layers. Keep this
# buffer fp32 even when the module is cast to bf16/fp16; otherwise the
# rounded RoPE frequencies drift from the internal ESMC path.
new_inv_freq = self._compute_inv_freq(device=self.inv_freq.device)
self.register_buffer("inv_freq", new_inv_freq, persistent=False)
self._seq_len_cached = 0
self._cos_cached = None
self._sin_cached = None
self._cos_k_cached = None
self._sin_k_cached = None
return result
def forward(
self, q: torch.Tensor, k: torch.Tensor, seqlen_offset: int = 0
) -> tuple[torch.Tensor, torch.Tensor]:
"""Apply RoPE to query and key tensors.
Args:
q: ``(batch, seqlen, n_heads, head_dim)``
k: ``(batch, seqlen, n_heads, head_dim)``
seqlen_offset: Offset used in incremental decoding.
Returns:
Tuple of rotated ``(q, k)`` tensors with the same shape as the inputs.
"""
self._update_cos_sin_cache(
q.shape[1] + seqlen_offset, device=q.device, dtype=q.dtype
)
assert self._cos_cached is not None and self._sin_cached is not None
if self.scale is not None:
raise NotImplementedError("XPos scaling is not supported in this path.")
cos = self._cos_cached[seqlen_offset:]
sin = self._sin_cached[seqlen_offset:]
if _flash_attn_rotary_available and q.device.type == "cuda":
q_rot = apply_triton_rotary(q, cos, sin, interleaved=self.interleaved) # type: ignore[misc]
k_rot = apply_triton_rotary(k, cos, sin, interleaved=self.interleaved) # type: ignore[misc]
else:
q_rot = _apply_rotary_emb_torch(q, cos, sin, self.interleaved)
k_rot = _apply_rotary_emb_torch(k, cos, sin, self.interleaved)
return q_rot, k_rot
class _TritonRotaryEmbedding(RotaryEmbedding):
"""RoPE variant that delegates to the Flash-Attention Triton kernel.
Only used inside :class:`_FlashMultiHeadAttention` when Flash Attention 2
is available. The ``forward`` signature differs from :class:`RotaryEmbedding`
because Flash Attention packs Q, K, V together.
"""
def forward(
self, qkv: torch.Tensor, cu_seqlens: torch.Tensor, max_seqlen: int
) -> torch.Tensor: # type: ignore[override]
"""Apply RoPE in-place to a packed ``(N, 3, n_heads, head_dim)`` tensor."""
self._update_cos_sin_cache(max_seqlen, device=qkv.device, dtype=qkv.dtype)
assert self._cos_cached is not None and self._sin_cached is not None
assert apply_triton_rotary is not None
apply_triton_rotary(
qkv[:, 0],
self._cos_cached,
self._sin_cached,
cu_seqlens=cu_seqlens,
max_seqlen=max_seqlen,
inplace=True,
)
apply_triton_rotary(
qkv[:, 1],
self._cos_cached,
self._sin_cached,
cu_seqlens=cu_seqlens,
max_seqlen=max_seqlen,
inplace=True,
)
return qkv
# ---------------------------------------------------------------------------
# Feed-forward network helpers
# ---------------------------------------------------------------------------
def _swiglu_hidden_dim(expansion_ratio: float, d_model: int) -> int:
"""Round hidden dim to the nearest multiple of 256 after applying expansion_ratio."""
return int(((expansion_ratio * d_model) + 255) // 256 * 256)
class _SwiGLU(nn.Module):
"""SwiGLU activation: ``silu(x1) * x2`` where ``x`` is split along the last dim."""
def forward(self, x: torch.Tensor) -> torch.Tensor:
x1, x2 = x.chunk(2, dim=-1)
return F.silu(x1) * x2
class _PyTorchLayerNormLinear(nn.Module):
"""LayerNorm followed by a Linear projection, sharing the parameter
names ``layer_norm_weight``, ``layer_norm_bias`` and ``weight`` so the
state-dict layout matches the accelerated TE module loaded on GPU.
"""
def __init__(self, d_in: int, d_out: int, eps: float = 1e-5) -> None:
super().__init__()
self.d_in = d_in
self.eps = eps
self.layer_norm_weight = nn.Parameter(torch.ones(d_in))
self.layer_norm_bias = nn.Parameter(torch.zeros(d_in))
self.weight = nn.Parameter(torch.empty(d_out, d_in))
nn.init.normal_(self.weight, std=0.02)
def forward(self, x: torch.Tensor) -> torch.Tensor:
x = F.layer_norm(
x, (self.d_in,), self.layer_norm_weight, self.layer_norm_bias, self.eps
)
return F.linear(x, self.weight)
class _PyTorchLayerNormMLP(nn.Module):
"""LayerNorm + SwiGLU MLP, sharing the parameter names
``layer_norm_weight``, ``layer_norm_bias``, ``fc1_weight``,
``fc2_weight`` so the state-dict layout matches the accelerated TE
module loaded on GPU.
"""
def __init__(
self, hidden_size: int, ffn_hidden_size: int, eps: float = 1e-5
) -> None:
super().__init__()
self.hidden_size = hidden_size
self.ffn_hidden_size = ffn_hidden_size
self.eps = eps
self.layer_norm_weight = nn.Parameter(torch.ones(hidden_size))
self.layer_norm_bias = nn.Parameter(torch.zeros(hidden_size))
self.fc1_weight = nn.Parameter(torch.empty(2 * ffn_hidden_size, hidden_size))
self.fc2_weight = nn.Parameter(torch.empty(hidden_size, ffn_hidden_size))
nn.init.normal_(self.fc1_weight, std=0.02)
nn.init.normal_(self.fc2_weight, std=0.02)
def forward(self, x: torch.Tensor) -> torch.Tensor:
x = F.layer_norm(
x,
(self.hidden_size,),
self.layer_norm_weight,
self.layer_norm_bias,
self.eps,
)
x = F.linear(x, self.fc1_weight)
x1, x2 = x.chunk(2, dim=-1)
x = F.silu(x1) * x2
return F.linear(x, self.fc2_weight)
def _swiglu_ln_ffn(d_model: int, expansion_ratio: float, bias: bool) -> nn.Module:
"""LayerNorm + SwiGLU MLP. Uses Transformer Engine's fused LN+MLP when
available; otherwise returns the pure-PyTorch fallback with matching
state-dict layout."""
assert not bias, "ESMC was trained with bias=False; bias=True not supported"
hidden = _swiglu_hidden_dim(expansion_ratio, d_model)
if _te_available:
return te.LayerNormMLP( # type: ignore[union-attr]
hidden_size=d_model,
ffn_hidden_size=hidden,
bias=bias,
activation="swiglu",
init_method=None,
output_layer_init_method=None,
)
return _PyTorchLayerNormMLP(hidden_size=d_model, ffn_hidden_size=hidden)
def _make_attn_layernorm_qkv(d_model: int, bias: bool) -> nn.Module:
"""LayerNorm + fused QKV projection. Uses Transformer Engine when
available; pure-PyTorch fallback otherwise."""
assert not bias, "ESMC was trained with bias=False; bias=True not supported"
if _te_available:
return te.LayerNormLinear( # type: ignore[union-attr]
d_model, d_model * 3, bias=bias, init_method=None
)
return _PyTorchLayerNormLinear(d_model, d_model * 3)
def _make_attn_out_proj(d_model: int, bias: bool) -> nn.Module:
"""Attention output projection. Uses Transformer Engine when available;
pure-PyTorch ``nn.Linear`` otherwise."""
if _te_available:
return te.Linear( # type: ignore[union-attr]
d_model, d_model, bias=bias, init_method=None
)
return nn.Linear(d_model, d_model, bias=bias)
def _gelu_ln_ffn(d_model: int, expansion_ratio: float, bias: bool) -> nn.Sequential:
hidden = int(expansion_ratio * d_model)
return nn.Sequential(
nn.LayerNorm(d_model),
nn.Linear(d_model, hidden, bias=bias),
nn.GELU(),
nn.Linear(hidden, d_model, bias=bias),
)
# ---------------------------------------------------------------------------
# Attention
# ---------------------------------------------------------------------------
def _scaled_dot_product_attention(
q: torch.Tensor,
k: torch.Tensor,
v: torch.Tensor,
*,
n_heads: int,
d_head: int,
seq_id: torch.Tensor | None,
) -> torch.Tensor:
"""Scaled dot-product attention with optional chain-aware mask.
Dispatches in order of preference:
1. xformers ``memory_efficient_attention`` — preferred fused kernel,
requires ``xformers``, no chain mask.
2. Flash Attention 2 (``flash_attn.flash_attn_func``) — secondary
fused kernel, requires ``flash-attn``, no chain mask, fp16 /
bf16 only.
3. PyTorch's ``F.scaled_dot_product_attention`` — last-resort path;
also handles the chain-aware mask when ``seq_id`` is present
and the fp32 path that Flash Attention 2 does not support.
"""
if seq_id is None and _xformers_available:
b, s, _ = q.shape
q4 = q.view(b, s, n_heads, d_head)
k4 = k.view(b, s, n_heads, d_head)
v4 = v.view(b, s, n_heads, d_head)
context = xops.memory_efficient_attention( # type: ignore[union-attr]
q4, k4, v4, attn_bias=None, scale=d_head**-0.5
)
return context.reshape(b, s, n_heads * d_head)
if (
seq_id is None
and _flash_attn_available
and q.dtype in (torch.float16, torch.bfloat16)
):
b, s, _ = q.shape
q4 = q.view(b, s, n_heads, d_head)
k4 = k.view(b, s, n_heads, d_head)
v4 = v.view(b, s, n_heads, d_head)
context = flash_attn_func( # type: ignore[misc]
q4, k4, v4, dropout_p=0.0, softmax_scale=d_head**-0.5
)
return context.reshape(b, s, n_heads * d_head) # type: ignore[union-attr]
b, s, _ = q.shape
q = q.view(b, s, n_heads, -1).transpose(1, 2)
k = k.view(b, s, n_heads, -1).transpose(1, 2)
v = v.view(b, s, n_heads, -1).transpose(1, 2)
if seq_id is not None:
mask = (seq_id.unsqueeze(-1) == seq_id.unsqueeze(-2)).unsqueeze(1)
context = F.scaled_dot_product_attention(q, k, v, mask)
else:
context = F.scaled_dot_product_attention(q, k, v)
_, h, _, d_out = context.shape
return context.transpose(1, 2).reshape(b, s, h * d_out)
class MultiHeadAttention(nn.Module):
"""Multi-head self-attention with QK LayerNorm and RoPE.
Args:
d_model: Model hidden dimension.
n_heads: Number of attention heads.
bias: Whether to use bias in linear layers.
qk_layernorm: Whether to apply LayerNorm to queries and keys before
computing attention scores.
"""
def __init__(
self, d_model: int, n_heads: int, bias: bool = False, qk_layernorm: bool = True
):
super().__init__()
self.d_model = d_model
self.n_heads = n_heads
self.d_head = d_model // n_heads
assert not bias, "ESMC was trained with bias=False; bias=True not supported"
self.layernorm_qkv = _make_attn_layernorm_qkv(d_model, bias)
self.out_proj = _make_attn_out_proj(d_model, bias)
if qk_layernorm:
self.q_ln = nn.LayerNorm(d_model, bias=bias)
self.k_ln = nn.LayerNorm(d_model, bias=bias)
else:
self.q_ln = nn.Identity()
self.k_ln = nn.Identity()
self.rotary = RotaryEmbedding(d_model // n_heads)
def _apply_rotary(
self, q: torch.Tensor, k: torch.Tensor
) -> tuple[torch.Tensor, torch.Tensor]:
q = q.unflatten(-1, (self.n_heads, self.d_head))
k = k.unflatten(-1, (self.n_heads, self.d_head))
q, k = self.rotary(q, k)
q = q.flatten(-2, -1)
k = k.flatten(-2, -1)
return q, k
def forward(
self,
x: torch.Tensor,
seq_id: torch.Tensor | None,
output_attentions: bool = False,
) -> tuple[torch.Tensor, torch.Tensor | None]:
"""Return ``(context, attn_weights)``.
``attn_weights`` is ``None`` unless ``output_attentions=True`` — the
fused SDPA backends (xformers, flash-attn 2, ``F.scaled_dot_product_attention``)
don't expose attention probabilities, so capturing them forces a
materialized ``softmax(Q @ K.T / sqrt(d)) @ V`` path with shape
``(B, H, L, L)``.
"""
qkv = self.layernorm_qkv(x)
q, k, v = torch.chunk(qkv, 3, dim=-1)
q = self.q_ln(q).to(q.dtype)
k = self.k_ln(k).to(q.dtype)
q, k = self._apply_rotary(q, k)
b, s, _ = q.shape
if output_attentions:
# Manual SDPA so attention probabilities are observable.
q4 = q.view(b, s, self.n_heads, self.d_head).transpose(1, 2)
k4 = k.view(b, s, self.n_heads, self.d_head).transpose(1, 2)
v4 = v.view(b, s, self.n_heads, self.d_head).transpose(1, 2)
scale = self.d_head**-0.5
attn_scores = (q4 @ k4.transpose(-2, -1)) * scale
if seq_id is not None:
mask = (seq_id.unsqueeze(-1) == seq_id.unsqueeze(-2)).unsqueeze(1)
attn_scores = attn_scores.masked_fill(~mask, float("-inf"))
attn_weights = torch.softmax(attn_scores, dim=-1)
context = (attn_weights @ v4).transpose(1, 2).reshape(b, s, -1)
return self.out_proj(context), attn_weights
context = _scaled_dot_product_attention(
q, k, v, n_heads=self.n_heads, d_head=self.d_head, seq_id=seq_id
)
return self.out_proj(context), None
class _FlashMultiHeadAttention(MultiHeadAttention):
"""Flash-Attention 2 variant of :class:`MultiHeadAttention`."""
def __init__(
self, d_model: int, n_heads: int, bias: bool = False, qk_layernorm: bool = True
):
super().__init__(
d_model=d_model, n_heads=n_heads, bias=bias, qk_layernorm=qk_layernorm
)
self.rotary = _TritonRotaryEmbedding(d_model // n_heads)
def forward(
self,
x: torch.Tensor,
seq_id: torch.Tensor | None,
output_attentions: bool = False,
) -> tuple[torch.Tensor, torch.Tensor | None]:
if output_attentions:
raise ValueError(
"output_attentions=True is not supported with "
"attn_implementation='flash_attention_2'. "
"Re-load the model with attn_implementation='sdpa' (or 'eager')."
)
assert seq_id is not None and seq_id.dtype == torch.bool
seqlens = seq_id.sum(dim=-1, dtype=torch.int32)
cu_seqlens = F.pad(torch.cumsum(seqlens, dim=0, dtype=torch.int32), (1, 0))
max_seqlen = int(seqlens.max().item())
qkv = self.layernorm_qkv(x)
q, k, v = torch.chunk(qkv, 3, dim=-1)
q = self.q_ln(q).to(q.dtype)
k = self.k_ln(k).to(q.dtype)
# ``q``/``k``/``v`` are 2D ``(T, D)`` here: the parent ``ESMCModel.forward``
# calls ``unpad_input`` before the transformer stack to produce the
# varlen-flat layout that ``flash_attn_varlen_qkvpacked_func`` requires.
T = q.shape[0]
qkv_packed = torch.stack([q, k, v], dim=1).view(T, 3, self.n_heads, self.d_head)
qkv_packed = self.rotary(qkv_packed, cu_seqlens, max_seqlen)
context = flash_attn_varlen_qkvpacked_func( # type: ignore[misc]
qkv_packed, cu_seqlens, max_seqlen, softmax_scale=self.d_head**-0.5
)
n_out, h_out, d_out = context.shape # type: ignore[union-attr]
return (
self.out_proj(context.reshape(n_out, h_out * d_out)), # type: ignore[union-attr]
None,
)
# ---------------------------------------------------------------------------
# Transformer blocks
# ---------------------------------------------------------------------------
class UnifiedTransformerBlock(nn.Module):
"""Single transformer block: pre-norm attention + pre-norm FFN with residual scaling.
Args:
d_model: Hidden dimension.
n_heads: Number of attention heads.
use_flash_attn: Use Flash Attention 2 kernel if available.
bias: Whether linear layers include bias terms.
expansion_ratio: Hidden-dim expansion ratio for the FFN.
residue_scaling_factor: Scales residual connections to stabilise deep
networks (``1 / sqrt(n_layers / 36)`` is the ESM3 scheme).
qk_layernorm: Whether to apply QK LayerNorm in attention.
ffn_type: Feed-forward activation: ``"swiglu"`` or ``"gelu"``.
"""
def __init__(
self,
d_model: int,
n_heads: int,
use_flash_attn: bool = False,
bias: bool = False,
expansion_ratio: float = 4.0,
residue_scaling_factor: float = 1.0,
qk_layernorm: bool = True,
ffn_type: str = "swiglu",
):
super().__init__()
attn_cls = _FlashMultiHeadAttention if use_flash_attn else MultiHeadAttention
self.attn = attn_cls(d_model, n_heads, bias=bias, qk_layernorm=qk_layernorm)
if ffn_type == "swiglu":
self.ffn = _swiglu_ln_ffn(d_model, expansion_ratio, bias)
elif ffn_type == "gelu":
self.ffn = _gelu_ln_ffn(d_model, expansion_ratio, bias)
else:
raise ValueError(
f"Unknown ffn_type: {ffn_type!r}. Choose 'swiglu' or 'gelu'."
)
self.scaling_factor = residue_scaling_factor
def forward(
self,
x: torch.Tensor,
sequence_id: torch.Tensor | None,
output_attentions: bool = False,
) -> tuple[torch.Tensor, torch.Tensor | None]:
"""
Args:
x: ``(batch, seq_len, d_model)``
sequence_id: ``(batch, seq_len)`` chain-ID tensor used to restrict
attention to tokens within the same chain. SDPA blocks accept
an integer tensor (``-1`` marks padding); the flash-attn block
takes a ``bool`` padding mask — the caller selects which.
``None`` skips chain-aware masking entirely (fast path).
output_attentions: When ``True``, returns the per-head attention
weights for this block alongside the residual output.
Returns:
``(output, attn_weights_or_None)``. Shape of ``output`` is
``(batch, seq_len, d_model)``; ``attn_weights`` shape is
``(batch, num_heads, seq_len, seq_len)`` or ``None``.
"""
attn_out, attn_weights = self.attn(
x, sequence_id, output_attentions=output_attentions
)
x = x + attn_out / self.scaling_factor
x = x + self.ffn(x) / self.scaling_factor
return x, attn_weights
class TransformerStack(nn.Module):
"""Stack of :class:`UnifiedTransformerBlock` layers with a final LayerNorm.
Args:
d_model: Hidden dimension.
n_heads: Number of attention heads.
n_layers: Number of transformer blocks.
scale_residue: When ``True`` apply ESM3 residue scaling
``sqrt(n_layers / 36)`` to each block.
bias: Bias flag forwarded to every sub-module.
qk_layernorm: QK LayerNorm flag forwarded to every block.
ffn_type: FFN activation type (``"swiglu"`` or ``"gelu"``).
expansion_ratio: FFN expansion ratio.
use_flash_attn: Use Flash Attention 2 kernel when available.
"""
def __init__(
self,
d_model: int,
n_heads: int,
n_layers: int,
scale_residue: bool = True,
bias: bool = False,
qk_layernorm: bool = True,
ffn_type: str = "swiglu",
expansion_ratio: float = 8 / 3,
use_flash_attn: bool = False,
):
super().__init__()
self.blocks = nn.ModuleList(
[
UnifiedTransformerBlock(
d_model,
n_heads,
use_flash_attn=use_flash_attn,
residue_scaling_factor=math.sqrt(n_layers / 36)
if scale_residue
else 1.0,
expansion_ratio=expansion_ratio,
bias=bias,
qk_layernorm=qk_layernorm,
ffn_type=ffn_type,
)
for _ in range(n_layers)
]
)
self.norm = nn.LayerNorm(d_model, bias=False)
def forward(
self,
x: torch.Tensor,
sequence_id: torch.Tensor | None = None,
layers_to_collect: list[int] | None = None,
output_attentions: bool = False,
) -> tuple[
torch.Tensor,
torch.Tensor,
tuple[torch.Tensor, ...],
tuple[torch.Tensor, ...] | None,
]:
"""Run the full transformer stack.
Args:
x: ``(batch, seq_len, d_model)``
sequence_id: Optional chain-id tensor forwarded to each block.
layers_to_collect: Layer indices (0-based pre-block inputs plus
``n_layers`` for the post-norm output) whose hidden states
should be returned.
output_attentions: When ``True``, collects the per-block attention
weights and returns them as the fourth tuple element.
Returns:
``(post_norm, pre_norm, hidden_states, attentions)`` where
``hidden_states`` is a (possibly empty) tuple of tensors and
``attentions`` is a tuple of per-block ``(B, H, L, L)`` tensors
or ``None`` when ``output_attentions`` is ``False``.
"""
if layers_to_collect is None:
layers_to_collect = []
collected: list[torch.Tensor] = []
all_attentions: list[torch.Tensor] = []
for layer_idx, block in enumerate(self.blocks):
if layer_idx in layers_to_collect:
collected.append(x)
x, attn_weights = block(x, sequence_id, output_attentions=output_attentions)
if output_attentions and attn_weights is not None:
all_attentions.append(attn_weights)
norm_x = self.norm(x)
if len(self.blocks) in layers_to_collect:
collected.append(norm_x)
attentions = tuple(all_attentions) if output_attentions else None
return norm_x, x, tuple(collected), attentions
# ---------------------------------------------------------------------------
# Pre-trained model base class
# ---------------------------------------------------------------------------
@auto_docstring
class ESMCPreTrainedModel(PreTrainedModel):
"""Base class for ESMC models.
Handles weight initialisation and declares module-level capabilities.
"""
config_class = ESMCConfig
base_model_prefix = "esmc"
supports_gradient_checkpointing = False
_supports_sdpa = True
_supports_flash_attn = True
_supports_attention_backend = True
_no_split_modules = ["UnifiedTransformerBlock"]
_keys_to_ignore_on_load_unexpected = [r"\._extra_state$"]
def _init_weights(self, module: nn.Module):
std = self.config.initializer_range
if isinstance(module, nn.Linear):
module.weight.data.normal_(mean=0.0, std=std)
if module.bias is not None:
module.bias.data.zero_()
elif isinstance(module, RotaryEmbedding):
module.reset_parameters(device=self.device)
# ---------------------------------------------------------------------------
# Base encoder model
# ---------------------------------------------------------------------------
@auto_docstring
class ESMCModel(ESMCPreTrainedModel):
"""The bare ESMC encoder outputting raw hidden states.
ESMC is a protein language model trained by EvolutionaryScale using a
masked-token objective over amino acid sequences. The architecture is a
standard Transformer encoder with RoPE positional embeddings, QK LayerNorm,
and SwiGLU feed-forward networks.
Args:
config: An :class:`ESMCConfig` instance.
"""
def __init__(self, config: ESMCConfig):
super().__init__(config)
self._use_flash_attn = (
_flash_attn_available and config._attn_implementation == "flash_attention_2"
)
self.embed = nn.Embedding(config.vocab_size, config.d_model)
self.transformer = TransformerStack(
config.d_model,
config.n_heads,
config.n_layers,
use_flash_attn=self._use_flash_attn,
)
self._sae_models: nn.ModuleDict = nn.ModuleDict()
self.post_init()
def get_input_embeddings(self) -> nn.Embedding:
return self.embed
def set_input_embeddings(self, value: nn.Embedding):
self.embed = value
def add_sae_models(self, sae_models: list[_ESMCSAELayer]) -> None:
"""Register one or more SAEs obtained from an :class:`ESMCSAEModel`.
Each is keyed by ``f"layer{N}"`` (the backbone-layer index ``N`` the
SAE is trained against, set by
:meth:`ESMCSAEModel.initialize_layers`). Attaching two SAEs for the
same backbone layer raises — only one SAE per layer can be active.
Example::
sae = ESMCSAEModel.from_pretrained(
"biohub/esmc-600m-2024-12-sae-k64-codebook16384"
)
sae.initialize_layers([27, 33])
model.add_sae_models([sae.layers["27"], sae.layers["33"]])
"""
for layer in sae_models:
assert isinstance(layer, _ESMCSAELayer), (
f"Expected an SAE layer (model.layers['<idx>']), got "
f"{type(layer).__name__}."
)
key = f"layer{int(layer.layer)}"
if key in self._sae_models:
raise ValueError(
f"An SAE is already registered at {key!r}. Only one SAE "
"per backbone layer can be active — pick a different "
"layer on one of them, or attach in a fresh model."
)
self._sae_models[key] = layer
_SAE_KEY_RE = re.compile(r"layer(\d+)")
def _get_sae_layer_num_requested(self, model_name: str) -> int:
"""Recover the backbone-layer index from a key written by
:meth:`add_sae_models` (``"layer{N}"`` → ``N``)."""
match = self._SAE_KEY_RE.fullmatch(model_name)
assert (
match is not None
), f"Unexpected SAE key {model_name!r}; expected 'layer{{N}}'."
return int(match.group(1))
def _validate_sae_inputs(self, input_ids: torch.Tensor) -> None:
assert torch.all(input_ids != self.config.mask_token_id), (
"SAE inputs must not contain mask tokens. "
"SAEs were trained on unmasked sequences."
)
def _get_sae_outputs(
self,
hidden_states: torch.Tensor,
layers_to_collect: list[int],
token_mask: torch.Tensor,
normalize_sae: bool = False,
) -> dict[str, torch.Tensor]:
"""Run all registered SAEs and return their feature magnitudes.
Args:
hidden_states: Stacked tensor of shape
``(len(layers_to_collect), batch, seq_len, d_model)``.
layers_to_collect: The ESMC layer indices that were collected,
in the same order as the first dim of ``hidden_states``.
token_mask: Boolean mask ``(batch, seq_len)`` — ``True`` for
real (non-padding) tokens.
normalize_sae: When ``True``, scale features by ``idf / max``
using the per-feature stats trained alongside each SAE.
"""
layer_to_idx = {layer: idx for idx, layer in enumerate(layers_to_collect)}
sae_outputs: dict[str, torch.Tensor] = {}
for model_name, sae_module in self._sae_models.items():
# `nn.ModuleDict` only stores `nn.Module`s at the type level;
# ``add_sae_models`` enforces that each entry is an ``_ESMCSAELayer``.
assert isinstance(sae_module, _ESMCSAELayer)
layer: _ESMCSAELayer = sae_module
requested_layer = self._get_sae_layer_num_requested(model_name)
layer_idx = layer_to_idx[requested_layer]
layer_states = hidden_states[layer_idx].clone().to(self.device)
sae_out = layer.get_sae_output(layer_states, token_mask)
features = sae_out.feature_magnitudes.detach()
if normalize_sae:
# ``register_buffer`` is typed as ``Tensor | Module`` on
# ``nn.Module``; narrow here since these are Tensors.
idf = cast(torch.Tensor, layer.idf)
max_val = cast(torch.Tensor, layer.max)
features = (features / max_val) * idf
sae_outputs[model_name] = features.to_sparse()
return sae_outputs
@can_return_tuple
@auto_docstring
def forward(
self,
input_ids: Optional[torch.Tensor] = None,
attention_mask: Optional[torch.Tensor] = None,
sequence_id: Optional[torch.Tensor] = None,
output_hidden_states: Optional[bool] = None,
output_attentions: Optional[bool] = None,
return_dict: Optional[bool] = None,
compute_sae: bool = True,
normalize_sae: bool = False,
) -> tuple[torch.Tensor, ...] | ESMCOutput:
r"""
sequence_id (`torch.Tensor` of shape `(batch_size, sequence_length)`, *optional*):
Integer chain-ID tensor for chain-aware attention masking. Tokens with the same
non-negative integer value can attend to each other; tokens with different values
cannot (cross-chain masking). Padding positions should be set to ``-1``.
When provided, ``attention_mask`` is ignored. The ``flash_attention_2`` backend
only supports single-chain inputs (all non-padding values must be ``0``); pass
multi-chain ``sequence_id`` with ``attn_implementation='sdpa'`` (or ``'eager'``).
output_attentions (`bool`, *optional*):
Whether to return the per-block attention weights of shape
``(batch_size, num_heads, sequence_length, sequence_length)``.
Forces a manual-SDPA path inside :class:`MultiHeadAttention` so the
attention probabilities are observable; raises on the
``flash_attention_2`` path.
compute_sae (`bool`, *optional*, defaults to ``True``):
Whether to run any SAE models registered via :meth:`add_sae_models`.
Has no effect when no SAEs are registered.
normalize_sae (`bool`, *optional*, defaults to ``False``):
When ``True``, scale SAE feature magnitudes by ``idf / max`` (only
applied when the SAE's normalization buffers contain non-trivial values).
Examples:
```python
>>> from transformers import AutoTokenizer, ESMCModel
>>> model = ESMCModel.from_pretrained("Biohub/ESMC-600M-2024-12")
>>> tokenizer = AutoTokenizer.from_pretrained("Biohub/ESMC-600M-2024-12")
>>> inputs = tokenizer(["MLKNVQVQLV"], return_tensors="pt")
>>> outputs = model(**inputs)
>>> outputs.last_hidden_state.shape
torch.Size([1, 12, 960])
```
"""
output_hidden_states = (
output_hidden_states
if output_hidden_states is not None
else self.config.output_hidden_states
)
output_attentions = (
output_attentions
if output_attentions is not None
else self.config.output_attentions
)
return_dict = (
return_dict if return_dict is not None else self.config.use_return_dict
)
output_sae = compute_sae and len(self._sae_models) > 0
# Determine which intermediate layers to collect. When SAEs are
# registered we must collect at least the layers they target, even if
# the caller did not ask for all hidden states.
if output_hidden_states:
layers_to_collect: list[int] = list(range(self.config.n_layers + 1))
elif output_sae:
layers_to_collect = sorted(
{self._get_sae_layer_num_requested(name) for name in self._sae_models}
)
else:
layers_to_collect = []
user_supplied_sequence_id = sequence_id is not None
if sequence_id is not None:
bool_mask = sequence_id >= 0
else:
if attention_mask is None:
attention_mask = input_ids != self.config.pad_token_id
assert attention_mask is not None
bool_mask = attention_mask.bool()
sequence_id = bool_mask.to(torch.long) - 1
x = self.embed(input_ids)
b, l_ = x.shape[:2]
if self._use_flash_attn:
if user_supplied_sequence_id and (sequence_id > 0).any():
raise ValueError(
"Multi-chain ``sequence_id`` (any value > 0) is not "
"supported with attn_implementation='flash_attention_2'. "
"Re-load the model with attn_implementation='sdpa' (or "
"'eager') for chain-aware attention masking."
)
assert unpad_input is not None
x, indices, *_ = unpad_input(x, bool_mask)
else:
indices = None
if self._use_flash_attn:
trans_seq_id = bool_mask
elif user_supplied_sequence_id:
trans_seq_id = sequence_id
elif bool_mask.all() and not output_attentions:
# Fused SDPA fast path (xformers / flash) is correct only when the
# mask is uniform; output_attentions forces the manual branch.
trans_seq_id = None
else:
trans_seq_id = sequence_id
last_hidden_state, _, collected, attentions = self.transformer(
x,
sequence_id=trans_seq_id,
layers_to_collect=layers_to_collect,
output_attentions=output_attentions,
)
if self._use_flash_attn:
assert indices is not None and pad_input is not None
last_hidden_state = pad_input(last_hidden_state, indices, b, l_)
collected = [pad_input(h, indices, b, l_) for h in collected]
# Stack once; reused for both SAE and hidden-state output.
collected_tensor: torch.Tensor | None = (
torch.stack(collected, dim=0) if collected else None # type: ignore[arg-type]
)
sae_outputs: dict[str, torch.Tensor] | None = None
if output_sae and collected_tensor is not None:
assert input_ids is not None
self._validate_sae_inputs(input_ids)
sae_outputs = self._get_sae_outputs(
collected_tensor, layers_to_collect, bool_mask, normalize_sae
)
hidden_states_tensor = collected_tensor if output_hidden_states else None
if not return_dict:
return tuple(
v
for v in [
last_hidden_state,
hidden_states_tensor,
sae_outputs,
attentions,
]
if v is not None
)
return ESMCOutput(
last_hidden_state=last_hidden_state,
hidden_states=hidden_states_tensor,
sae_outputs=sae_outputs,
attentions=attentions,
)
# ---------------------------------------------------------------------------
# LM head
# ---------------------------------------------------------------------------
def _esmc_lm_head(
d_model: int, output_dim: int, hidden_dim: int | None = None
) -> nn.Sequential:
"""Linear → GELU → LayerNorm → Linear projection head for masked LM."""
hidden_dim = hidden_dim if hidden_dim is not None else d_model
return nn.Sequential(
nn.Linear(d_model, hidden_dim),
nn.GELU(),
nn.LayerNorm(hidden_dim),
nn.Linear(hidden_dim, output_dim),
)
# ---------------------------------------------------------------------------
# Masked language model
# ---------------------------------------------------------------------------
@auto_docstring
class ESMCForMaskedLM(ESMCPreTrainedModel):
"""ESMC with a masked language modelling head.
This is the primary pre-training objective of ESMC. The LM head consists
of a single hidden layer with GELU activation followed by LayerNorm and a
linear projection to ``vocab_size``.
"""
def __init__(self, config: ESMCConfig):
super().__init__(config)
self.esmc = ESMCModel(config)
self.lm_head = _esmc_lm_head(config.d_model, config.vocab_size)
self.post_init()
def get_output_embeddings(self) -> nn.Linear:
return self.lm_head[-1] # type: ignore[return-value]
def set_output_embeddings(self, new_embeddings: nn.Linear):
self.lm_head[-1] = new_embeddings
def add_sae_models(self, sae_models: list[_ESMCSAELayer]) -> None:
"""Proxy to :meth:`ESMCModel.add_sae_models`."""
self.esmc.add_sae_models(sae_models)
@can_return_tuple
@auto_docstring
def forward(
self,
input_ids: Optional[torch.Tensor] = None,
attention_mask: Optional[torch.Tensor] = None,
sequence_id: Optional[torch.Tensor] = None,
output_hidden_states: Optional[bool] = None,
output_attentions: Optional[bool] = None,
return_dict: Optional[bool] = None,
labels: Optional[torch.Tensor] = None,
compute_sae: bool = True,
normalize_sae: bool = False,
) -> tuple[torch.Tensor, ...] | ESMCMaskedLMOutput:
r"""
sequence_id (`torch.Tensor` of shape `(batch_size, sequence_length)`, *optional*):
Integer chain-ID tensor forwarded to the encoder for chain-aware
attention masking. See :meth:`ESMCModel.forward` for the encoding.
labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
Labels for masked language modelling loss. Positions with label ``-100``
are ignored. Other positions must be in ``[0, config.vocab_size)``.
output_attentions (`bool`, *optional*):
Whether to return per-block attention weights. Forwarded to the
backbone; raises on the ``flash_attention_2`` path.
compute_sae (`bool`, *optional*, defaults to ``True``):
Whether to run registered SAE models. Has no effect when none are registered.
normalize_sae (`bool`, *optional*, defaults to ``False``):
When ``True``, scale SAE features by ``idf / max`` normalization buffers.
Examples:
```python
>>> from transformers import AutoTokenizer, ESMCForMaskedLM
>>> import torch
>>> model = ESMCForMaskedLM.from_pretrained("Biohub/ESMC-600M-2024-12")
>>> tokenizer = AutoTokenizer.from_pretrained("Biohub/ESMC-600M-2024-12")
>>> inputs = tokenizer(["MLKNVQ<mask>LV"], return_tensors="pt")
>>> outputs = model(**inputs)
>>> outputs.logits.shape
torch.Size([1, 11, 64])
```
"""
return_dict = (
return_dict if return_dict is not None else self.config.use_return_dict
)
encoder_outputs = self.esmc(
input_ids=input_ids,
attention_mask=attention_mask,
sequence_id=sequence_id,
output_hidden_states=output_hidden_states,
output_attentions=output_attentions,
return_dict=True,
compute_sae=compute_sae,
normalize_sae=normalize_sae,
)
logits = self.lm_head(encoder_outputs.last_hidden_state)
loss: torch.Tensor | None = None
if labels is not None:
loss = CrossEntropyLoss(ignore_index=-100)(
logits.view(-1, self.config.vocab_size), labels.view(-1)
)
if not return_dict:
return tuple(
v
for v in [
loss,
logits,
encoder_outputs.last_hidden_state,
encoder_outputs.hidden_states,
encoder_outputs.sae_outputs,
encoder_outputs.attentions,
]
if v is not None
)
return ESMCMaskedLMOutput(
loss=loss,
logits=logits,
last_hidden_state=encoder_outputs.last_hidden_state,
hidden_states=encoder_outputs.hidden_states,
sae_outputs=encoder_outputs.sae_outputs,
attentions=encoder_outputs.attentions,
)
# ---------------------------------------------------------------------------
# Classification heads
# ---------------------------------------------------------------------------
class _ESMCClassificationHead(nn.Module):
"""Dense classification head applied to the ``<cls>`` token representation."""
def __init__(self, config: ESMCConfig):
super().__init__()
self.dense = nn.Linear(config.d_model, config.d_model)
self.dropout = nn.Dropout(config.classifier_dropout)
self.out_proj = nn.Linear(config.d_model, config.num_labels)
def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
x = hidden_states[:, 0, :] # <cls> token
x = self.dropout(x)
x = torch.tanh(self.dense(x))
x = self.dropout(x)
return self.out_proj(x)
# ---------------------------------------------------------------------------
# Sequence classification
# ---------------------------------------------------------------------------
@auto_docstring
class ESMCForSequenceClassification(ESMCPreTrainedModel):
"""ESMC with a sequence-level classification head.
A linear layer is applied to the ``<cls>`` token representation.
Supports regression (``num_labels == 1``), single-label classification,
and multi-label classification.
"""
def __init__(self, config: ESMCConfig):
super().__init__(config)
self.num_labels = config.num_labels
self.esmc = ESMCModel(config)
self.classifier = _ESMCClassificationHead(config)
self.post_init()
def add_sae_models(self, sae_models: list[_ESMCSAELayer]) -> None:
"""Proxy to :meth:`ESMCModel.add_sae_models`."""
self.esmc.add_sae_models(sae_models)
@can_return_tuple
@auto_docstring
def forward(
self,
input_ids: Optional[torch.LongTensor] = None,
attention_mask: Optional[torch.Tensor] = None,
output_hidden_states: Optional[bool] = None,
output_attentions: Optional[bool] = None,
return_dict: Optional[bool] = None,
labels: Optional[torch.Tensor] = None,
compute_sae: bool = True,
normalize_sae: bool = False,
) -> tuple[torch.Tensor, ...] | ESMCSequenceClassifierOutput:
r"""
labels (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
Labels for sequence classification loss. Indices must be in
``[0, config.num_labels - 1]``. For regression pass a float
tensor of shape ``(batch_size,)``.
output_attentions (`bool`, *optional*):
Whether to return per-block attention weights. Forwarded to the
backbone; raises on the ``flash_attention_2`` path.
compute_sae (`bool`, *optional*, defaults to ``True``):
Whether to run registered SAE models. Has no effect when none are registered.
normalize_sae (`bool`, *optional*, defaults to ``False``):
When ``True``, scale SAE features by ``idf / max`` normalization buffers.
"""
return_dict = (
return_dict if return_dict is not None else self.config.use_return_dict
)
encoder_outputs = self.esmc(
input_ids,
attention_mask=attention_mask,
output_hidden_states=output_hidden_states,
output_attentions=output_attentions,
return_dict=True,
compute_sae=compute_sae,
normalize_sae=normalize_sae,
)
logits = self.classifier(encoder_outputs.last_hidden_state)
loss: torch.Tensor | None = None
if labels is not None:
labels = labels.to(logits.device)
if self.config.problem_type is None:
if self.num_labels == 1:
self.config.problem_type = "regression"
elif self.num_labels > 1 and labels.dtype in (torch.long, torch.int):
self.config.problem_type = "single_label_classification"
else:
self.config.problem_type = "multi_label_classification"
if self.config.problem_type == "regression":
loss_fct = MSELoss()
loss = loss_fct(
logits.squeeze() if self.num_labels == 1 else logits,
labels.squeeze() if self.num_labels == 1 else labels,
)
elif self.config.problem_type == "single_label_classification":
loss = CrossEntropyLoss()(
logits.view(-1, self.num_labels), labels.view(-1)
)
elif self.config.problem_type == "multi_label_classification":
loss = BCEWithLogitsLoss()(logits, labels)
if not return_dict:
return tuple(
v
for v in [
loss,
logits,
encoder_outputs.last_hidden_state,
encoder_outputs.hidden_states,
encoder_outputs.sae_outputs,
encoder_outputs.attentions,
]
if v is not None
)
return ESMCSequenceClassifierOutput(
loss=loss,
logits=logits,
last_hidden_state=encoder_outputs.last_hidden_state,
hidden_states=encoder_outputs.hidden_states,
sae_outputs=encoder_outputs.sae_outputs,
attentions=encoder_outputs.attentions,
)
# ---------------------------------------------------------------------------
# Token classification
# ---------------------------------------------------------------------------
@auto_docstring
class ESMCForTokenClassification(ESMCPreTrainedModel):
"""ESMC with a per-token classification head.
Useful for tasks such as secondary structure prediction, contact-map
prediction, or per-residue labelling.
"""
def __init__(self, config: ESMCConfig):
super().__init__(config)
self.num_labels = config.num_labels
self.esmc = ESMCModel(config)
self.dropout = nn.Dropout(config.classifier_dropout)
self.classifier = nn.Linear(config.d_model, config.num_labels)
self.post_init()
def add_sae_models(self, sae_models: list[_ESMCSAELayer]) -> None:
"""Proxy to :meth:`ESMCModel.add_sae_models`."""
self.esmc.add_sae_models(sae_models)
@can_return_tuple
@auto_docstring
def forward(
self,
input_ids: Optional[torch.Tensor] = None,
attention_mask: Optional[torch.Tensor] = None,
output_hidden_states: Optional[bool] = None,
output_attentions: Optional[bool] = None,
return_dict: Optional[bool] = None,
labels: Optional[torch.Tensor] = None,
compute_sae: bool = True,
normalize_sae: bool = False,
) -> tuple[torch.Tensor, ...] | ESMCTokenClassifierOutput:
r"""
labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
Per-token labels. Indices must be in ``[0, config.num_labels - 1]``.
Positions with index ``-100`` are ignored in the loss.
output_attentions (`bool`, *optional*):
Whether to return per-block attention weights. Forwarded to the
backbone; raises on the ``flash_attention_2`` path.
compute_sae (`bool`, *optional*, defaults to ``True``):
Whether to run registered SAE models. Has no effect when none are registered.
normalize_sae (`bool`, *optional*, defaults to ``False``):
When ``True``, scale SAE features by ``idf / max`` normalization buffers.
"""
return_dict = (
return_dict if return_dict is not None else self.config.use_return_dict
)
encoder_outputs = self.esmc(
input_ids=input_ids,
attention_mask=attention_mask,
output_hidden_states=output_hidden_states,
output_attentions=output_attentions,
return_dict=True,
compute_sae=compute_sae,
normalize_sae=normalize_sae,
)
sequence_output = self.dropout(encoder_outputs.last_hidden_state)
logits = self.classifier(sequence_output)
loss: torch.Tensor | None = None
if labels is not None:
loss = CrossEntropyLoss(ignore_index=-100)(
logits.view(-1, self.num_labels), labels.to(logits.device).view(-1)
)
if not return_dict:
return tuple(
v
for v in [
loss,
logits,
encoder_outputs.last_hidden_state,
encoder_outputs.hidden_states,
encoder_outputs.sae_outputs,
encoder_outputs.attentions,
]
if v is not None
)
return ESMCTokenClassifierOutput(
loss=loss,
logits=logits,
last_hidden_state=encoder_outputs.last_hidden_state,
hidden_states=encoder_outputs.hidden_states,
sae_outputs=encoder_outputs.sae_outputs,
attentions=encoder_outputs.attentions,
)
__all__ = [
"ESMCModel",
"ESMCForMaskedLM",
"ESMCForSequenceClassification",
"ESMCForTokenClassification",
"ESMCPreTrainedModel",
]
|