Instructions to use Synthyra/ESMFold2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Synthyra/ESMFold2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="Synthyra/ESMFold2", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Synthyra/ESMFold2", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 79,345 Bytes
74b8b2a 234ca64 74b8b2a 9c5ec56 234ca64 74b8b2a 9c5ec56 59abcec 74b8b2a 234ca64 74b8b2a 59abcec 74b8b2a 59abcec 74b8b2a 59abcec 74b8b2a 59abcec 74b8b2a 59abcec 74b8b2a 59abcec 74b8b2a 59abcec 74b8b2a 59abcec 74b8b2a 59abcec 74b8b2a 59abcec 74b8b2a 59abcec 74b8b2a 59abcec 74b8b2a 59abcec 74b8b2a 59abcec 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 59abcec 74b8b2a 234ca64 74b8b2a 59abcec 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 9c5ec56 234ca64 9c5ec56 234ca64 9c5ec56 234ca64 9c5ec56 234ca64 9c5ec56 234ca64 9c5ec56 234ca64 9c5ec56 234ca64 9c5ec56 234ca64 9c5ec56 234ca64 9c5ec56 234ca64 9c5ec56 234ca64 74b8b2a 59abcec 74b8b2a 234ca64 9c5ec56 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 9c5ec56 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 59abcec 74b8b2a 234ca64 9c5ec56 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 9c5ec56 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 59abcec 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 59abcec 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 234ca64 74b8b2a 59abcec 74b8b2a | 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 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 | """Hugging Face-compatible ESMC models implemented by FastPLMs."""
from __future__ import annotations
import importlib
import importlib.metadata
import math
import os
from collections.abc import Sequence
from contextlib import contextmanager
from dataclasses import asdict, dataclass
from functools import partial
from typing import Any, ClassVar
import torch
import torch.nn as nn
import torch.nn.functional as F
from einops import rearrange
from tokenizers import Tokenizer
from tokenizers.models import BPE
from tokenizers.processors import TemplateProcessing
from transformers import PretrainedConfig, PreTrainedModel, PreTrainedTokenizerFast
from transformers.modeling_outputs import (
MaskedLMOutput,
ModelOutput,
SequenceClassifierOutput,
TokenClassifierOutput,
)
from .modeling_esm_plusplus_sae import ESMplusplusSAELayer, load_esmc_sae_layers
try:
from fastplms.attention import (
AttentionBackend,
BlockMask,
FastPLMsAttentionMixin,
_get_flex_attention_fn,
_get_flex_block_mask,
flex_attention,
get_attention_mask,
kernels_flash_attention_func,
resolve_attention_backend,
resolve_attention_backend_for_call,
)
from fastplms.embeddings import EmbeddingMixin, Pooler, select_hidden_state_embeddings
from fastplms.models.ttt import FastPLMTestTimeTrainingMixin
except ModuleNotFoundError as error:
_COMPOSITE_REQUIRED_NAMES = (
"AttentionBackend",
"BlockMask",
"EmbeddingMixin",
"FastPLMsAttentionMixin",
"FastPLMTestTimeTrainingMixin",
"Pooler",
"_get_flex_attention_fn",
"_get_flex_block_mask",
"flex_attention",
"get_attention_mask",
"kernels_flash_attention_func",
"resolve_attention_backend",
"resolve_attention_backend_for_call",
"select_hidden_state_embeddings",
)
if error.name != "fastplms" or any(
name not in globals() for name in _COMPOSITE_REQUIRED_NAMES
):
raise
# Legacy flat Hub composites define every shared symbol above this block.
_ESMC_FP8_LINEAR_SUFFIX = ".attn.out_proj"
_ESMC_FP8_ALIGNMENT = 16
@dataclass(frozen=True, slots=True)
class ESMplusplusFP8Status:
"""Resolved state of the explicit Transformer Engine ESMC FP8 path."""
enabled: bool
reason: str
device: str
transformer_engine_version: str | None
converted_projections: int
def as_dict(self) -> dict[str, str | int | bool | None]:
return asdict(self)
def _transformer_engine_version() -> str | None:
try:
return importlib.metadata.version("transformer-engine")
except importlib.metadata.PackageNotFoundError:
return None
def _load_transformer_engine() -> tuple[Any, Any]:
"""Load Transformer Engine lazily so ordinary ESM++ imports stay portable."""
try:
te = importlib.import_module("transformer_engine.pytorch")
recipe = importlib.import_module("transformer_engine.common.recipe")
except (ImportError, OSError, RuntimeError) as error:
raise RuntimeError(
f"Transformer Engine could not be imported: {type(error).__name__}: {error}"
) from error
if not hasattr(recipe, "Float8CurrentScaling"):
raise RuntimeError(
"Transformer Engine does not expose Float8CurrentScaling, which is "
"required by the validated ESMC FP8 path."
)
return te, recipe
def _te_fp8_capability(device: torch.device) -> tuple[bool, str]:
"""Return whether the strict Transformer Engine FP8 path can run."""
if device.type != "cuda":
return False, "FP8 requires ESM++ on a CUDA device."
if not torch.cuda.is_available():
return False, "CUDA is unavailable."
try:
major, minor = torch.cuda.get_device_capability(device)
except (AssertionError, RuntimeError, ValueError) as error:
return False, f"CUDA capability query failed: {error}"
if not (major >= 9 or (major == 8 and minor >= 9)):
return False, f"CUDA capability {major}.{minor} does not support FP8."
try:
te, _ = _load_transformer_engine()
except RuntimeError as error:
return False, str(error)
probe = getattr(te, "is_fp8_available", None)
if probe is None:
try:
probe = importlib.import_module("transformer_engine.pytorch.fp8").is_fp8_available
except (ImportError, AttributeError, OSError, RuntimeError) as error:
return False, f"Transformer Engine has no usable FP8 probe: {error}"
try:
try:
result = probe(return_reason=True)
except TypeError:
result = probe()
except (OSError, RuntimeError) as error:
return False, f"Transformer Engine FP8 probe failed: {error}"
if isinstance(result, tuple):
available = bool(result[0])
detail = str(result[1]) if len(result) > 1 and result[1] else ""
else:
available = bool(result)
detail = ""
if not available:
return False, detail or "Transformer Engine reports FP8 unavailable."
return True, "Transformer Engine reports FP8 availability."
def _convert_esmc_attention_outputs_to_te(
module: nn.Module,
*,
expected_projections: int,
) -> tuple[str, ...]:
"""Replace exactly one attention output projection per ESMC block."""
targets = [
(path, child)
for path, child in module.named_modules()
if isinstance(child, nn.Linear) and path.endswith(_ESMC_FP8_LINEAR_SUFFIX)
]
if len(targets) != expected_projections:
raise RuntimeError(
"ESMC FP8 conversion expected exactly "
f"{expected_projections} attention output projections, found {len(targets)}."
)
te, _ = _load_transformer_engine()
modules = dict(module.named_modules())
converted: list[str] = []
for path, child in targets:
owner_path, name = path.rsplit(".", 1)
owner = modules[owner_path]
replacement = te.Linear(
child.in_features,
child.out_features,
bias=child.bias is not None,
params_dtype=child.weight.dtype,
device=child.weight.device,
)
with torch.no_grad():
replacement.weight.copy_(child.weight)
if child.bias is not None:
replacement.bias.copy_(child.bias)
replacement.eval().requires_grad_(False)
setattr(owner, name, replacement)
converted.append(path)
return tuple(converted)
@contextmanager
def _esmplusplus_fp8_context(enabled: bool, device: torch.device):
"""Enter the validated BF16-storage, Transformer Engine FP8 context."""
if not enabled:
yield
return
if torch.is_grad_enabled():
raise RuntimeError("ESM++ FP8 is inference-only; use torch.inference_mode() or no_grad().")
te, recipe = _load_transformer_engine()
fp8_recipe = recipe.Float8CurrentScaling(
use_power_2_scales=False,
fp8_format=recipe.Format.HYBRID,
)
with torch.autocast(device_type=device.type, dtype=torch.bfloat16):
with te.autocast(enabled=True, recipe=fp8_recipe):
yield
class ESMplusplusConfig(PretrainedConfig):
"""Configuration class for ESM++ model.
Args:
vocab_size: Size of the vocabulary
hidden_size: Dimension of hidden layers
num_attention_heads: Number of attention heads
num_hidden_layers: Number of transformer layers
num_labels: Number of output labels for classification
problem_type: Type of problem - regression, single/multi label classification
"""
model_type = "ESMplusplus"
def __init__(
self,
vocab_size: int = 64,
hidden_size: int = 960,
num_attention_heads: int = 15,
num_hidden_layers: int = 30,
num_labels: int | None = None,
problem_type: str | None = None,
dropout: float = 0.0,
initializer_range: float = 0.02,
classifier_dropout: float = 0.1,
classifier_pooling_types: list[str] | None = None,
attn_backend: str | None = None,
pad_token_id: int = 1,
mask_token_id: int = 32,
**kwargs,
):
if num_labels is None:
configured_labels = kwargs.get("id2label")
num_labels = len(configured_labels) if configured_labels else 2
super().__init__(
pad_token_id=pad_token_id,
mask_token_id=mask_token_id,
num_labels=num_labels,
**kwargs,
)
self.vocab_size = vocab_size
self.hidden_size = hidden_size
self.num_attention_heads = num_attention_heads
self.num_hidden_layers = num_hidden_layers
self.problem_type = problem_type
self.dropout = dropout
self.initializer_range = initializer_range
self.classifier_dropout = classifier_dropout
self.classifier_pooling_types = (
list(classifier_pooling_types) if classifier_pooling_types is not None else None
)
self.tie_word_embeddings = False
self.attn_backend = attn_backend
### Rotary Embeddings
def rotate_half(x: torch.Tensor, interleaved: bool = False) -> torch.Tensor:
"""Rotate the final axis of X by 90 degrees in each two-dimensional plane."""
if interleaved:
paired = x.unflatten(-1, (-1, 2))
return torch.stack((-paired[..., 1], paired[..., 0]), dim=-1).flatten(-2)
# torch.chunk assigns an odd remainder to the first half. Express the same
# public behavior explicitly while keeping the ESMC path branch-free.
midpoint = (x.shape[-1] + 1) // 2
return torch.cat((-x[..., midpoint:], x[..., :midpoint]), dim=-1)
def apply_rotary_emb_torch(
x: torch.Tensor,
cos: torch.Tensor,
sin: torch.Tensor,
interleaved: bool = False,
_inplace: bool = False,
) -> torch.Tensor:
"""Apply cached rotary angles to X while preserving any unrotated features."""
del _inplace # Kept in the signature for checkpoint remote-code compatibility.
rotary_width = 2 * cos.shape[-1]
if rotary_width > x.shape[-1]:
raise AssertionError("rotary width exceeds the attention head dimension")
token_count = x.shape[1]
cos_full = torch.cat((cos[:token_count], cos[:token_count]), dim=-1).unsqueeze(1)
sin_full = torch.cat((sin[:token_count], sin[:token_count]), dim=-1).unsqueeze(1)
x_rotary = x[..., :rotary_width]
y_rotary = x_rotary * cos_full + rotate_half(x_rotary, interleaved) * sin_full
if rotary_width == x.shape[-1]:
return y_rotary
return torch.cat((y_rotary, x[..., rotary_width:]), dim=-1)
class RotaryEmbedding(torch.nn.Module):
"""Rotary position embeddings.
Based on the paper "RoFormer: Enhanced Transformer with Rotary Position Embedding"
Args:
dim: Dimension of the embedding
base: Base for computing angular frequencies
interleaved: Whether to use interleaved rotations
scale_base: Base for scaling
scaling_factor: Factor for scaling positions
pos_idx_in_fp32: Whether to compute position indices in fp32
device: Computation device
"""
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: torch.device | None = None,
) -> None:
super().__init__()
self.dim, self.base = dim, float(base)
self.interleaved, self.scale_base = interleaved, scale_base
self.scaling_factor, self.pos_idx_in_fp32 = scaling_factor, pos_idx_in_fp32
self.device = device
self._clear_cache()
self.reset_parameters()
def _clear_cache(self) -> None:
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
def reset_parameters(self, device: torch.device | str | None = None) -> None:
"""Rebuild the non-persistent frequency buffers on ``device``."""
if device is not None:
buffer_device = torch.device(device)
elif "inv_freq" in self._buffers and isinstance(self._buffers["inv_freq"], torch.Tensor):
buffer_device = self._buffers["inv_freq"].device
else:
buffer_device = self.device
inv_freq = self._compute_inv_freq(buffer_device)
self._clear_cache()
self.register_buffer("inv_freq", inv_freq, persistent=False)
arange = torch.arange(0, self.dim, 2, device=buffer_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)
def _compute_inv_freq(self, device: torch.device | None = None) -> torch.Tensor:
"""Compute inverse frequency bands on their execution device."""
return 1 / (
self.base
** (torch.arange(0, self.dim, 2, device=device, dtype=torch.float32) / self.dim)
)
def _apply(self, fn, recurse: bool = True):
"""Move the module, then regenerate device-specific RoPE frequencies."""
if self.inv_freq.is_meta:
self.reset_parameters(device="cpu")
result = super()._apply(fn, recurse=recurse)
self.register_buffer(
"inv_freq",
self._compute_inv_freq(self.inv_freq.device),
persistent=False,
)
self._clear_cache()
return result
def _cache_is_current(
self,
token_count: int,
device: torch.device | None,
dtype: torch.dtype | None,
) -> bool:
cached = self._cos_cached
return (
cached is not None
and self._seq_len_cached >= token_count
and cached.device == device
and cached.dtype == dtype
and not (self.training and cached.is_inference())
)
def _rotary_angles(
self,
token_count: int,
device: torch.device | None,
) -> torch.Tensor:
position_dtype = torch.float32 if self.pos_idx_in_fp32 else self.inv_freq.dtype
positions = torch.arange(token_count, device=device, dtype=position_dtype) # (l,)
positions.div_(self.scaling_factor)
frequencies = (
self.inv_freq.to(torch.float32)
if self.pos_idx_in_fp32 and self.inv_freq.dtype != torch.float32
else self.inv_freq
)
return torch.outer(positions, frequencies) # (l, d / 2)
def _update_cos_sin_cache(
self, seqlen: int, device: torch.device | None = None, dtype: torch.dtype | None = None
) -> None:
"""Build angle tables when the requested cache identity has changed."""
if self._cache_is_current(seqlen, device, dtype):
return
self._seq_len_cached = seqlen
angles = self._rotary_angles(seqlen, device) # (l, d / 2)
cos_angles = torch.cos(angles) # (l, d / 2)
sin_angles = torch.sin(angles) # (l, d / 2)
if self.scale is None:
self._cos_cached = cos_angles.to(dtype)
self._sin_cached = sin_angles.to(dtype)
return
centered_positions = (
torch.arange(seqlen, dtype=self.scale.dtype, device=self.scale.device) - seqlen // 2
) / self.scale_base
scale = self.scale ** centered_positions.unsqueeze(-1)
self._cos_cached = (cos_angles * scale).to(dtype)
self._sin_cached = (sin_angles * scale).to(dtype)
self._cos_k_cached = (cos_angles / scale).to(dtype)
self._sin_k_cached = (sin_angles / scale).to(dtype)
def forward(self, q: torch.Tensor, k: torch.Tensor) -> tuple[torch.Tensor, torch.Tensor]:
"""Apply rotary embeddings to queries and keys.
Args:
q: Query tensor Q with shape (b, l, h, d).
k: Key tensor K with shape (b, l, h, d).
Returns:
Tuple of rotated query and key tensors
"""
# The pinned Biohub Transformers oracle recomputes inverse frequencies
# on the execution device. CPU and CUDA differ by about one FP32 ULP in
# some bands, which is immaterial in BF16 but accumulates measurably in
# deep FP32 execution.
self._update_cos_sin_cache(q.shape[1], device=q.device, dtype=q.dtype)
if self._cos_cached is None or self._sin_cached is None:
raise RuntimeError(
"Rotary cache initialization did not produce cosine and sine values."
)
if self.scale is not None:
raise AssertionError("Scaled rotary embeddings are unsupported for ESMC.")
cos_angles = self._cos_cached
sin_angles = self._sin_cached
return (
apply_rotary_emb_torch(q, cos_angles, sin_angles, self.interleaved, True),
apply_rotary_emb_torch(k, cos_angles, sin_angles, self.interleaved, True),
)
def swiglu_correction_fn(expansion_ratio: float, d_model: int) -> int:
"""Compute corrected dimension for SwiGLU."""
return int(((expansion_ratio * d_model) + 255) // 256 * 256)
class SwiGLU(nn.Module):
"""SwiGLU activation function."""
def __init__(self) -> None:
super().__init__()
def forward(self, x: torch.Tensor) -> torch.Tensor:
x1, x2 = x.chunk(2, dim=-1)
return F.silu(x1) * x2
def swiglu_ln_ffn(d_model: int, expansion_ratio: float) -> nn.Sequential:
"""Create SwiGLU feedforward network with layer normalization."""
return nn.Sequential(
nn.LayerNorm(d_model),
nn.Linear(d_model, swiglu_correction_fn(expansion_ratio, d_model) * 2, bias=False),
SwiGLU(),
nn.Linear(swiglu_correction_fn(expansion_ratio, d_model), d_model, bias=False),
)
class MultiHeadAttention(nn.Module):
"""Multi-head attention with rotary embeddings and configurable backend.
Args:
d_model: Model dimension
n_heads: Number of attention heads
attn_backend: One of "eager", "sdpa", or "flex_attention".
"""
def __init__(
self,
d_model: int,
n_heads: int,
attn_backend: str = "sdpa",
) -> None:
super().__init__()
self.d_model = d_model
self.n_heads = n_heads
self.d_head = self.d_model // self.n_heads
self.scale = 1.0 / math.sqrt(self.d_head)
self.attn_backend = resolve_attention_backend(attn_backend)
self.layernorm_qkv = nn.Sequential(
nn.LayerNorm(d_model), nn.Linear(d_model, d_model * 3, bias=False)
)
self.out_proj = nn.Linear(d_model, d_model, bias=False)
self.q_ln = nn.LayerNorm(d_model, bias=False)
self.k_ln = nn.LayerNorm(d_model, bias=False)
self.reshaper = partial(rearrange, pattern="b s (h d) -> b h s d", h=n_heads)
self.rotary = RotaryEmbedding(d_model // n_heads)
def _apply_rotary(self, q: torch.Tensor, k: torch.Tensor) -> tuple[torch.Tensor, torch.Tensor]:
# q, k: (b, l, d)
q = q.unflatten(-1, (self.n_heads, self.d_head)) # (b, l, h, d_h)
k = k.unflatten(-1, (self.n_heads, self.d_head)) # (b, l, h, d_h)
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,
attention_mask_2d: torch.Tensor | None = None,
attention_mask_4d: torch.Tensor | None = None,
flex_block_mask: BlockMask | None = None,
output_attentions: bool = False,
output_s_max: bool = False,
) -> tuple[torch.Tensor, torch.Tensor | None, list[torch.Tensor] | None]:
# x: (b, l, d)
qkv = self.layernorm_qkv(x) # (b, l, 3 * d)
query_sequence, key_sequence, value_sequence = torch.chunk(qkv, 3, dim=-1)
query_sequence, key_sequence = (
self.q_ln(query_sequence).to(query_sequence.dtype),
self.k_ln(key_sequence).to(query_sequence.dtype),
)
query_sequence, key_sequence = self._apply_rotary(query_sequence, key_sequence)
query_heads, key_heads, value_heads = map(
self.reshaper, (query_sequence, key_sequence, value_sequence)
) # each (b, h, l, d_h)
attn_output, attn_weights, s_max = self._attn(
query_heads,
key_heads,
value_heads,
attention_mask_2d=attention_mask_2d,
attention_mask_4d=attention_mask_4d,
flex_block_mask=flex_block_mask,
output_attentions=output_attentions,
output_s_max=output_s_max,
)
output = self.out_proj(attn_output)
return output, attn_weights, s_max
def _attn(
self,
query_heads: torch.Tensor,
key_heads: torch.Tensor,
value_heads: torch.Tensor,
attention_mask_2d: torch.Tensor | None = None,
attention_mask_4d: torch.Tensor | None = None,
flex_block_mask: BlockMask | None = None,
output_attentions: bool = False,
output_s_max: bool = False,
) -> tuple[torch.Tensor, torch.Tensor | None, list[torch.Tensor] | None]:
if output_attentions:
return self._manual_attn(
query_heads, key_heads, value_heads, attention_mask_4d, output_s_max
)
if self.attn_backend == AttentionBackend.EAGER:
attn_output, _, s_max = self._manual_attn(
query_heads, key_heads, value_heads, attention_mask_4d, output_s_max
)
return attn_output, None, s_max
if self.attn_backend.is_flash:
attn_output, attn_weights = self._kernels_flash_attn(
query_heads, key_heads, value_heads, attention_mask_2d
)
elif self.attn_backend == AttentionBackend.FLEX:
attn_output, attn_weights = self._flex_attn(
query_heads,
key_heads,
value_heads,
flex_block_mask,
attention_mask_2d,
)
elif self.attn_backend == AttentionBackend.SDPA:
attn_output, attn_weights = self._sdpa_attn(
query_heads, key_heads, value_heads, attention_mask_4d
)
else:
raise AssertionError(f"Unsupported resolved backend: {self.attn_backend}")
s_max = self._compute_s_max(query_heads, key_heads) if output_s_max else None
return attn_output, attn_weights, s_max
@torch.no_grad()
def _compute_s_max(
self, query_heads: torch.Tensor, key_heads: torch.Tensor
) -> list[torch.Tensor]:
q_norm = torch.linalg.vector_norm(query_heads, dim=-1) # (b, h, l)
k_norm = torch.linalg.vector_norm(key_heads, dim=-1) # (b, h, l)
s_max_bound = (q_norm.max(dim=-1).values * k_norm.max(dim=-1).values).max(
dim=0
).values * self.scale
return [s_max_bound[h] for h in range(self.n_heads)]
def _manual_attn(
self,
query_heads: torch.Tensor,
key_heads: torch.Tensor,
value_heads: torch.Tensor,
attention_mask_4d: torch.Tensor | None = None,
output_s_max: bool = False,
) -> tuple[torch.Tensor, torch.Tensor, list[torch.Tensor] | None]:
# query_heads, key_heads, value_heads: (b, h, l, d_h)
attn_weights = (
torch.matmul(query_heads, key_heads.transpose(-2, -1)) * self.scale
) # (b, h, l, l)
if attention_mask_4d is not None:
attn_weights = attn_weights.masked_fill(attention_mask_4d.logical_not(), float("-inf"))
attn_weights = F.softmax(attn_weights, dim=-1)
context_heads = torch.matmul(attn_weights, value_heads) # (b, h, l, d_h)
attn_output = rearrange(context_heads, "b h s d -> b s (h d)") # (b, l, d)
s_max = self._compute_s_max(query_heads, key_heads) if output_s_max else None
return attn_output, attn_weights, s_max
def _kernels_flash_attn(
self,
query_heads: torch.Tensor,
key_heads: torch.Tensor,
value_heads: torch.Tensor,
attention_mask_2d: torch.Tensor | None = None,
) -> tuple[torch.Tensor, None]:
query_tokens = query_heads.transpose(1, 2).contiguous()
key_tokens = key_heads.transpose(1, 2).contiguous()
value_tokens = value_heads.transpose(1, 2).contiguous()
attn_output = kernels_flash_attention_func(
query_states=query_tokens,
key_states=key_tokens,
value_states=value_tokens,
attention_mask_2d=attention_mask_2d,
causal=False,
implementation=self.attn_backend.value,
)
return rearrange(attn_output, "b s h d -> b s (h d)"), None
def _flex_attn(
self,
query_heads: torch.Tensor,
key_heads: torch.Tensor,
value_heads: torch.Tensor,
flex_block_mask: BlockMask | None = None,
attention_mask_2d: torch.Tensor | None = None,
) -> tuple[torch.Tensor, None]:
if flex_attention is None:
raise RuntimeError("Flex attention is not available in this environment.")
fn = _get_flex_attention_fn(
device=query_heads.device,
dtype=query_heads.dtype,
shape=tuple(query_heads.shape),
mask_semantics="padding",
)
context_heads = fn(
query_heads,
key_heads,
value_heads,
block_mask=flex_block_mask,
scale=self.scale,
kernel_options={"PRESCALE_QK": True, "BLOCK_N": 32},
)
return rearrange(context_heads, "b h s d -> b s (h d)"), None
def _sdpa_attn(
self,
query_heads: torch.Tensor,
key_heads: torch.Tensor,
value_heads: torch.Tensor,
attention_mask_4d: torch.Tensor | None = None,
) -> tuple[torch.Tensor, None]:
context_heads = F.scaled_dot_product_attention(
query_heads,
key_heads,
value_heads,
attn_mask=attention_mask_4d,
scale=self.scale,
)
return rearrange(context_heads, "b h s d -> b s (h d)"), None
def RegressionHead(d_model: int, output_dim: int, hidden_dim: int | None = None) -> nn.Module:
"""Create a regression head with optional hidden dimension.
Args:
d_model: Input dimension
output_dim: Output dimension
hidden_dim: Optional hidden dimension (defaults to d_model)
"""
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),
)
class UnifiedTransformerBlock(nn.Module):
"""Transformer block with attention and feedforward layers."""
def __init__(
self,
d_model: int,
n_heads: int,
residue_scaling_factor: float = 1,
expansion_ratio: float = 8 / 3,
dropout: float = 0.0,
attn_backend: str = "sdpa",
) -> None:
super().__init__()
self.attn = MultiHeadAttention(d_model=d_model, n_heads=n_heads, attn_backend=attn_backend)
self.ffn = swiglu_ln_ffn(d_model, expansion_ratio)
self.scaling_factor = residue_scaling_factor
self.dropout = nn.Dropout(dropout)
def forward(
self,
x: torch.Tensor,
attention_mask_2d: torch.Tensor | None = None,
attention_mask_4d: torch.Tensor | None = None,
flex_block_mask: BlockMask | None = None,
output_attentions: bool = False,
output_s_max: bool = False,
) -> tuple[torch.Tensor, torch.Tensor | None, list[torch.Tensor] | None]:
attn_output, attn_weights, s_max = self.attn(
x,
attention_mask_2d=attention_mask_2d,
attention_mask_4d=attention_mask_4d,
flex_block_mask=flex_block_mask,
output_attentions=output_attentions,
output_s_max=output_s_max,
)
x = x + self.dropout(attn_output) / self.scaling_factor
x = x + self.dropout(self.ffn(x)) / self.scaling_factor
return x, attn_weights, s_max
@dataclass
class TransformerOutput(ModelOutput):
"""Output type for transformer encoder."""
last_hidden_state: torch.Tensor | None = None
hidden_states: tuple[torch.Tensor] | None = None
attentions: tuple[torch.Tensor] | None = None
s_max: tuple[list[torch.Tensor], ...] | None = None
sae_outputs: dict[str, torch.Tensor] | None = None
sae_hidden_states: dict[int, torch.Tensor] | None = None
@dataclass
class ESMplusplusOutput(MaskedLMOutput):
"""Masked-LM output with FastPLMs fields after the HF contract."""
s_max: tuple[list[torch.Tensor], ...] | None = None
last_hidden_state: torch.Tensor | None = None
sae_outputs: dict[str, torch.Tensor] | None = None
@dataclass
class ESMplusplusSequenceClassifierOutput(SequenceClassifierOutput):
"""Sequence-classification output with optional attention diagnostics."""
s_max: tuple[list[torch.Tensor], ...] | None = None
sae_outputs: dict[str, torch.Tensor] | None = None
@dataclass
class ESMplusplusTokenClassifierOutput(TokenClassifierOutput):
"""Token-classification output with optional attention diagnostics."""
s_max: tuple[list[torch.Tensor], ...] | None = None
sae_outputs: dict[str, torch.Tensor] | None = None
class TransformerStack(nn.Module):
"""Stack of transformer blocks."""
def __init__(
self,
d_model: int,
n_heads: int,
n_layers: int,
dropout: float = 0.0,
attn_backend: str = "sdpa",
) -> None:
super().__init__()
self.attention_backend = resolve_attention_backend(attn_backend)
self.blocks = nn.ModuleList(
[
UnifiedTransformerBlock(
d_model,
n_heads,
residue_scaling_factor=math.sqrt(n_layers / 36),
dropout=dropout,
attn_backend=attn_backend,
)
for i in range(n_layers)
]
)
self.norm = nn.LayerNorm(d_model, bias=False)
self.gradient_checkpointing = False
@property
def attn_backend(self) -> AttentionBackend:
return self.attention_backend
@attn_backend.setter
def attn_backend(self, backend: str) -> None:
resolved = resolve_attention_backend(backend)
self.attention_backend = resolved
for block in self.blocks:
block.attn.attn_backend = resolved
def forward(
self,
x: torch.Tensor,
attention_mask: torch.Tensor | None = None,
sequence_id: torch.Tensor | None = None,
output_hidden_states: bool | None = False,
output_attentions: bool | None = False,
output_s_max: bool | None = False,
esmfold2_hidden_states: bool = False,
sae_layers: tuple[int, ...] = (),
) -> TransformerOutput:
# x: (b, l, d); attention_mask, sequence_id: (b, l)
hidden_states = () if output_hidden_states else None
attentions = () if output_attentions else None
full_s_max = () if output_s_max else None
sae_layer_set = set(sae_layers)
sae_hidden_states = {} if sae_layer_set else None
# Match the pinned Biohub Transformers contract: a supplied sequence_id
# is authoritative and must encode padding as -1. attention_mask is
# ignored in that mode rather than intersected with the chain mask.
attention_mask_2d, attention_mask_4d, flex_block_mask = (
self._prepare_attention_masks(
attention_mask=attention_mask,
sequence_id=sequence_id,
batch_size=x.shape[0],
seq_len=x.shape[1],
device=x.device,
dtype=x.dtype,
output_attentions=bool(output_attentions),
)
)
for layer_index, block in enumerate(self.blocks):
if output_hidden_states:
if hidden_states is None:
raise RuntimeError(
"Hidden-state collection was not initialized for an enabled request."
)
# Biohub Transformers records the input to each block followed
# by the final normalized state. This gives n_layers + 1 states
# and, for ESMC-6B, the 81-state order consumed by ESMFold2.
hidden_states += (x,)
if sae_hidden_states is not None and layer_index in sae_layer_set:
sae_hidden_states[layer_index] = x
if self.gradient_checkpointing and self.training:
x, attn_weights, s_max = self._gradient_checkpointing_func(
block.__call__,
x=x,
attention_mask_2d=attention_mask_2d,
attention_mask_4d=attention_mask_4d,
flex_block_mask=flex_block_mask,
output_attentions=output_attentions,
output_s_max=output_s_max,
)
else:
x, attn_weights, s_max = block(
x=x,
attention_mask_2d=attention_mask_2d,
attention_mask_4d=attention_mask_4d,
flex_block_mask=flex_block_mask,
output_attentions=output_attentions,
output_s_max=output_s_max,
)
if attentions is not None:
attentions += (attn_weights,)
if full_s_max is not None:
full_s_max += (s_max,)
last_hidden_state = self.norm(x)
if output_hidden_states:
hidden_states += (last_hidden_state,)
final_layer_index = len(self.blocks)
if sae_hidden_states is not None and final_layer_index in sae_layer_set:
sae_hidden_states[final_layer_index] = last_hidden_state
return TransformerOutput(
last_hidden_state=last_hidden_state,
hidden_states=hidden_states,
attentions=attentions,
s_max=full_s_max,
sae_hidden_states=sae_hidden_states,
)
@torch.compiler.disable
def _prepare_attention_masks(
self,
attention_mask: torch.Tensor | None,
sequence_id: torch.Tensor | None,
batch_size: int,
seq_len: int,
device: torch.device,
dtype: torch.dtype | None = None,
effective_backend: AttentionBackend | None = None,
output_attentions: bool = False,
) -> tuple[torch.Tensor | None, torch.Tensor | None, BlockMask | None]:
mask_name = "sequence_id" if sequence_id is not None else "attention_mask"
mask_pattern = sequence_id if sequence_id is not None else attention_mask
if mask_pattern is None:
backend = resolve_attention_backend_for_call(
self.attention_backend,
output_attentions=output_attentions,
)
return get_attention_mask(
effective_backend=backend,
batch_size=batch_size,
seq_len=seq_len,
device=device,
attention_mask=None,
dtype=dtype,
mask_semantics="padding",
)
expected_shape = (batch_size, seq_len)
if mask_pattern.ndim != 2 or tuple(mask_pattern.shape) != expected_shape:
raise ValueError(
f"{mask_name} must have shape {expected_shape}; "
f"received {tuple(mask_pattern.shape)}."
)
if mask_pattern.device != device:
mask_pattern = mask_pattern.to(device=device)
if sequence_id is None:
mask_pattern = mask_pattern.to(dtype=torch.bool)
attention_mask_2d = (
mask_pattern if mask_pattern.dtype == torch.bool else mask_pattern != -1
)
if not bool(attention_mask_2d.any(dim=1).all()):
raise ValueError("attention_mask must keep at least one valid key per batch row.")
if mask_pattern.dtype == torch.bool:
# Biohub's boolean single-chain form groups biological positions
# together and padding positions together. Padding queries remain
# finite without allowing their states to enter residue attention.
attention_mask_4d = (
mask_pattern[:, None, :, None] == mask_pattern[:, None, None, :]
)
else:
attention_mask_4d = (
mask_pattern.unsqueeze(-1) == mask_pattern.unsqueeze(-2)
).unsqueeze(1)
backend = (
resolve_attention_backend_for_call(
self.attention_backend,
output_attentions=output_attentions,
)
if effective_backend is None
else resolve_attention_backend(effective_backend)
)
if backend.is_flash:
if mask_pattern.dtype != torch.bool:
raise ValueError(
"ESM++ FlashAttention only supports boolean sequence_id padding masks. "
"Use eager, sdpa, or flex_attention for chain-aware integer sequence_id "
"masks."
)
return attention_mask_2d, attention_mask_4d, None
if backend == AttentionBackend.FLEX:
if mask_pattern.dtype == torch.bool:
def mask_mod(batch_idx, head_idx, q_idx, kv_idx):
del head_idx
return mask_pattern[batch_idx, q_idx] == mask_pattern[batch_idx, kv_idx]
else:
def mask_mod(batch_idx, head_idx, q_idx, kv_idx):
del head_idx
q_id = mask_pattern[batch_idx, q_idx]
kv_id = mask_pattern[batch_idx, kv_idx]
return q_id == kv_id
flex_block_mask = _get_flex_block_mask(
mask_pattern=mask_pattern,
batch_size=batch_size,
query_length=seq_len,
key_value_length=seq_len,
device=device,
dtype=dtype,
mask_semantics=(
"boolean_sequence_id"
if mask_pattern.dtype == torch.bool
else "integer_sequence_id"
),
mask_mod=mask_mod,
)
return attention_mask_2d, attention_mask_4d, flex_block_mask
return attention_mask_2d, attention_mask_4d, None
class PreTrainedESMplusplusModel(FastPLMsAttentionMixin, PreTrainedModel):
"""
init weights for ESM++ models
"""
config_class = ESMplusplusConfig
base_model_prefix = "esm++"
supports_gradient_checkpointing = True
all_tied_weights_keys: ClassVar[dict[str, str]] = {}
_supports_flash_attn = True
_supports_flash_attn_2 = True
_supports_flash_attn_3 = True
_fastplms_attention_implementations = (
"eager",
"sdpa",
"flex_attention",
"flash_attention_2",
"flash_attention_3",
)
def __init__(self, config: ESMplusplusConfig, *args: object, **kwargs: object) -> None:
super().__init__(config, *args, **kwargs)
self._sae_models = nn.ModuleDict()
self._esmc_fp8 = False
self._esmc_fp8_module_paths: tuple[str, ...] = ()
self._esmc_precision_status = ESMplusplusFP8Status(
enabled=False,
reason="FP8 has not been enabled; canonical checkpoint precision is unchanged.",
device="cpu",
transformer_engine_version=_transformer_engine_version(),
converted_projections=0,
)
@property
def esmc_precision_status(self) -> ESMplusplusFP8Status:
"""Return the explicit FP8 conversion status for this ESM++ instance."""
return self._esmc_precision_status
def enable_fp8(self) -> ESMplusplusFP8Status:
"""Enable the strict inference-only Transformer Engine FP8 path.
Canonical parameters must already be BF16 on one supported CUDA device.
Exactly one attention output projection per transformer block is replaced;
all other operations and all SAE weights remain BF16.
"""
if self._esmc_fp8:
return self._esmc_precision_status
if self.training:
raise RuntimeError("ESM++ FP8 is inference-only; call eval() before enable_fp8().")
parameter_devices = {parameter.device for parameter in self.parameters()}
if len(parameter_devices) != 1:
raise RuntimeError(
"ESM++ FP8 requires every parameter on one CUDA device; sharded device maps "
f"are unsupported, found {sorted(map(str, parameter_devices))}."
)
device = next(iter(parameter_devices), self.device)
available, reason = _te_fp8_capability(device)
if not available:
raise RuntimeError(f"ESM++ FP8 is unavailable: {reason}")
non_bf16 = [
name
for name, parameter in self.named_parameters()
if parameter.is_floating_point() and parameter.dtype != torch.bfloat16
]
if non_bf16:
examples = ", ".join(non_bf16[:3])
raise RuntimeError(
"ESM++ FP8 requires canonical BF16 parameters before conversion; "
f"found {len(non_bf16)} non-BF16 parameters (for example: {examples})."
)
paths = _convert_esmc_attention_outputs_to_te(
self,
expected_projections=self.config.num_hidden_layers,
)
self._esmc_fp8 = True
self._esmc_fp8_module_paths = paths
self._esmc_precision_status = ESMplusplusFP8Status(
enabled=True,
reason=(
f"{reason} Converted {len(paths)} attention output projections; "
"canonical checkpoint and SAE weights remain BF16."
),
device=str(device),
transformer_engine_version=_transformer_engine_version(),
converted_projections=len(paths),
)
return self._esmc_precision_status
def load_sae_models(
self,
repository: str | os.PathLike[str],
layers: Sequence[int],
*,
revision: str | None = None,
cache_dir: str | os.PathLike[str] | None = None,
token: str | bool | None = None,
local_files_only: bool = False,
dtype: torch.dtype | None = None,
) -> dict[int, ESMplusplusSAELayer]:
"""Load hidden-state SAE layers from a Hub repository or local directory, then attach them.
The layers land on this model's device and, unless ``dtype`` says otherwise, in this
model's parameter dtype, so they consume its hidden states without a dtype mismatch.
"""
sae_layers = load_esmc_sae_layers(
repository,
layers,
revision=revision,
cache_dir=cache_dir,
token=token,
local_files_only=local_files_only,
device=self.device,
dtype=self.dtype if dtype is None else dtype,
)
self.add_sae_models(list(sae_layers.values()))
return sae_layers
def add_sae_models(self, sae_models: list[nn.Module]) -> None:
"""Attach hidden-state SAE layers to this ESM++ model.
Accepts layers from ``load_sae_models`` and official Biohub ``ESMCSAEModel.layers``
entries, which share one attachment contract.
"""
for sae_model in sae_models:
if not isinstance(sae_model, nn.Module):
raise TypeError(
"Each SAE must be an nn.Module exposing the hidden-state SAE contract, such "
"as a load_sae_models layer or an official Biohub ESMCSAEModel.layers entry."
)
layer = getattr(sae_model, "layer", None)
if isinstance(layer, bool) or not isinstance(layer, int):
raise TypeError("Each SAE layer must expose an integer .layer attribute.")
if not 0 <= layer <= self.config.num_hidden_layers:
raise ValueError(
f"SAE target layer {layer} is outside the ESM++ hidden-state range "
f"0..{self.config.num_hidden_layers}."
)
params = getattr(sae_model, "params", None)
d_model = getattr(params, "d_model", None)
if d_model != self.config.hidden_size:
raise ValueError(
f"SAE layer {layer} expects d_model={d_model!r}, but this ESM++ "
f"checkpoint has hidden_size={self.config.hidden_size}."
)
if not callable(getattr(sae_model, "get_sae_output", None)):
raise TypeError("Each SAE layer must expose get_sae_output(layer_states, token_mask).")
for name in ("idf", "max"):
if not isinstance(getattr(sae_model, name, None), torch.Tensor):
raise TypeError(f"Each SAE layer must expose a tensor {name!r} buffer.")
key = f"layer{layer}"
if key in self._sae_models:
raise ValueError(
f"An SAE is already registered at {key!r}; only one SAE per layer "
"can be active."
)
self._sae_models[key] = sae_model
def _prepare_sae_forward(
self,
*,
compute_sae: bool,
input_ids: torch.Tensor | None,
attention_mask: torch.Tensor | None,
sequence_id: torch.Tensor | None,
) -> tuple[tuple[int, ...], torch.Tensor | None]:
if not compute_sae or not self._sae_models:
return (), None
if input_ids is None and attention_mask is None and sequence_id is None:
# Embedding inputs carry no token identities, so the caller must supply the mask.
# Rejecting masked tokens is then the caller's precondition rather than ours.
raise ValueError(
"SAE computation from inputs_embeds requires an explicit attention_mask or "
"sequence_id, because the token mask cannot be recovered from embeddings."
)
if input_ids is not None and torch.any(input_ids == self.config.mask_token_id):
raise ValueError("SAE inputs must not contain mask tokens; SAEs were trained unmasked.")
if sequence_id is not None:
token_mask = sequence_id >= 0
elif attention_mask is not None:
token_mask = attention_mask.to(dtype=torch.bool)
else:
token_mask = input_ids != self.config.pad_token_id
layers = tuple(sorted(int(name.removeprefix("layer")) for name in self._sae_models))
return layers, token_mask
def _get_sae_outputs(
self,
hidden_states: dict[int, torch.Tensor] | None,
token_mask: torch.Tensor | None,
*,
normalize_sae: bool,
differentiable_sae: bool = False,
) -> dict[str, torch.Tensor] | None:
"""Encode collected hidden states with every attached SAE.
The default detaches and sparsifies, which is right for interpretation and matches the
official implementation. ``differentiable_sae`` instead keeps the result attached to the
graph and dense, so a gradient-based sequence designer can optimize an objective built on
SAE features. The arithmetic is identical either way; only the tape and the layout differ.
"""
if not self._sae_models:
return None
if hidden_states is None or token_mask is None:
raise RuntimeError("SAE hidden-state collection was not initialized.")
outputs: dict[str, torch.Tensor] = {}
for key, sae_model in self._sae_models.items():
layer = int(key.removeprefix("layer"))
if layer not in hidden_states:
raise RuntimeError(f"ESM++ did not collect the requested SAE layer {layer}.")
layer_states = hidden_states[layer]
sae_output = sae_model.get_sae_output(
layer_states if differentiable_sae else layer_states.clone(), token_mask
)
features = getattr(sae_output, "feature_magnitudes", None)
if not isinstance(features, torch.Tensor):
raise TypeError("SAE get_sae_output must return tensor feature_magnitudes.")
if not differentiable_sae:
features = features.detach()
if normalize_sae:
features = (features / sae_model.max) * sae_model.idf
outputs[key] = features if differentiable_sae else features.to_sparse()
return outputs
def _pad_fp8_inputs(
self,
input_ids: torch.Tensor | None,
attention_mask: torch.Tensor | None,
sequence_id: torch.Tensor | None,
inputs_embeds: torch.Tensor | None,
) -> tuple[
torch.Tensor | None,
torch.Tensor | None,
torch.Tensor | None,
torch.Tensor | None,
int | None,
]:
if not self._esmc_fp8:
return input_ids, attention_mask, sequence_id, inputs_embeds, None
source = input_ids if input_ids is not None else inputs_embeds
if source is None:
return input_ids, attention_mask, sequence_id, inputs_embeds, None
sequence_length = source.shape[1]
padded_length = (
(sequence_length + _ESMC_FP8_ALIGNMENT - 1) // _ESMC_FP8_ALIGNMENT
) * _ESMC_FP8_ALIGNMENT
padding = padded_length - sequence_length
if padding == 0:
return input_ids, attention_mask, sequence_id, inputs_embeds, None
if input_ids is not None:
input_ids = F.pad(input_ids, (0, padding), value=self.config.pad_token_id)
if inputs_embeds is not None:
inputs_embeds = F.pad(inputs_embeds, (0, 0, 0, padding), value=0.0)
if sequence_id is not None:
sequence_id = F.pad(sequence_id.to(dtype=torch.long), (0, padding), value=-1)
else:
if attention_mask is None:
attention_mask = (
source != self.config.pad_token_id
if input_ids is not None
else torch.ones(
source.shape[:2],
dtype=torch.bool,
device=source.device,
)
)
attention_mask = F.pad(attention_mask, (0, padding), value=0)
return input_ids, attention_mask, sequence_id, inputs_embeds, sequence_length
@staticmethod
def _trim_transformer_output(
output: TransformerOutput,
sequence_length: int | None,
) -> TransformerOutput:
if sequence_length is None:
return output
hidden_states = (
tuple(state[:, :sequence_length] for state in output.hidden_states)
if output.hidden_states is not None
else None
)
attentions = (
tuple(
attention[..., :sequence_length, :sequence_length]
for attention in output.attentions
)
if output.attentions is not None
else None
)
return TransformerOutput(
last_hidden_state=output.last_hidden_state[:, :sequence_length],
hidden_states=hidden_states,
attentions=attentions,
s_max=output.s_max,
sae_hidden_states=output.sae_hidden_states,
)
@property
def tokenizer(self) -> EsmSequenceTokenizer:
"""Construct the sequence tokenizer only when a raw-sequence API needs it."""
tokenizer = self.__dict__.get("_fastplms_tokenizer")
if tokenizer is None:
tokenizer = EsmSequenceTokenizer()
self.__dict__["_fastplms_tokenizer"] = tokenizer
return tokenizer
@tokenizer.setter
def tokenizer(self, value: EsmSequenceTokenizer | None) -> None:
self.__dict__["_fastplms_tokenizer"] = value
def _init_weights(self, module):
"""Initialize the weights"""
# HF from_pretrained marks loaded parameters with `_is_hf_initialized`.
# Skip this module if any local parameter is already marked as loaded.
for parameter in module.parameters(recurse=False):
if parameter.__dict__.get("_is_hf_initialized"):
return
if isinstance(module, nn.Linear):
nn.init.normal_(module.weight, mean=0.0, std=self.config.initializer_range)
if module.bias is not None:
nn.init.zeros_(module.bias)
elif isinstance(module, nn.Embedding):
nn.init.normal_(module.weight, mean=0.0, std=self.config.initializer_range)
if module.padding_idx is not None:
with torch.no_grad():
module.weight[module.padding_idx].zero_()
elif isinstance(module, nn.LayerNorm):
if module.bias is not None:
nn.init.zeros_(module.bias)
nn.init.ones_(module.weight)
@property
def attn_backend(self) -> str:
return self.config.attn_backend
@attn_backend.setter
def attn_backend(self, backend: str) -> None:
if backend not in self._fastplms_attention_implementations:
raise ValueError(
f"{type(self).__name__} does not support {backend!r}; expected one of "
f"{self._fastplms_attention_implementations}."
)
self.set_attn_implementation(backend)
def _reset_rotary_embeddings(self):
"""Refresh non-persistent rotary buffers after checkpoint loading."""
for module in self.modules():
if isinstance(module, RotaryEmbedding):
module.reset_parameters()
@classmethod
def from_pretrained(cls, pretrained_model_name_or_path, *model_args, **kwargs):
output_loading_info = (
bool(kwargs["output_loading_info"]) if "output_loading_info" in kwargs else False
)
loaded = super().from_pretrained(pretrained_model_name_or_path, *model_args, **kwargs)
if output_loading_info:
model, loading_info = loaded
model._reset_rotary_embeddings()
return model, loading_info
loaded._reset_rotary_embeddings()
return loaded
### ESM++ Models
class ESMplusplusModel(PreTrainedESMplusplusModel, EmbeddingMixin):
"""
ESM++ transformer backbone.
Official ESM++ checkpoints contain the sequence head even when loaded through
``AutoModel``. Keep that module in the base class so the checkpoint has one
exact state-dict contract across ``AutoModel`` and ``AutoModelForMaskedLM``;
the base forward path intentionally does not compute or return logits.
"""
config_class = ESMplusplusConfig
def __init__(self, config: ESMplusplusConfig, **kwargs) -> None:
PreTrainedESMplusplusModel.__init__(self, config, **kwargs)
self.config = config
self.vocab_size = config.vocab_size
self.embed = nn.Embedding(self.vocab_size, config.hidden_size)
self.transformer = TransformerStack(
d_model=config.hidden_size,
n_heads=config.num_attention_heads,
n_layers=config.num_hidden_layers,
dropout=config.dropout,
attn_backend=config.attn_backend,
)
self.sequence_head = RegressionHead(config.hidden_size, self.vocab_size)
self.init_weights()
def get_input_embeddings(self):
return self.embed
def set_input_embeddings(self, value):
self.embed = value
def get_output_embeddings(self):
return self.sequence_head[-1]
def set_output_embeddings(self, new_embeddings):
self.sequence_head[-1] = new_embeddings
def _embed(
self,
input_ids: torch.Tensor,
attention_mask: torch.Tensor | None = None,
hidden_state_index: int = -1,
store_all_hidden_states: bool = False,
) -> torch.Tensor:
if attention_mask is None:
attention_mask = input_ids.ne(self.config.pad_token_id)
x = self.embed(input_ids)
output_hidden_states = store_all_hidden_states or hidden_state_index != -1
output = self.transformer(
x=x,
attention_mask=attention_mask,
output_hidden_states=output_hidden_states,
output_attentions=False,
)
return select_hidden_state_embeddings(
output.last_hidden_state,
output.hidden_states,
hidden_state_index=hidden_state_index,
store_all_hidden_states=store_all_hidden_states,
)
def forward(
self,
input_ids: torch.Tensor | None = None,
attention_mask: torch.Tensor | None = None,
sequence_id: torch.Tensor | None = None,
inputs_embeds: torch.Tensor | None = None,
output_attentions: bool | None = None,
output_hidden_states: bool | None = None,
output_s_max: bool | None = False,
esmfold2_hidden_states: bool = False,
return_dict: bool | None = None,
compute_sae: bool = True,
normalize_sae: bool = False,
differentiable_sae: bool = False,
) -> TransformerOutput | tuple[torch.Tensor, ...]:
"""Run ESMC inference with the pinned Biohub mask precedence.
``sequence_id`` is authoritative when supplied: non-negative integers
identify chains and ``-1`` identifies padding. In that mode
``attention_mask`` is ignored, matching the official implementation.
Without ``sequence_id``, ``attention_mask`` is the ordinary padding
mask and defaults to ``input_ids != pad_token_id``.
"""
if input_ids is None and inputs_embeds is None:
raise ValueError("You have to specify either input_ids or inputs_embeds")
if input_ids is not None and inputs_embeds is not None:
raise ValueError("You cannot specify both input_ids and inputs_embeds at the same time")
output_attentions = (
output_attentions if output_attentions is not None else self.config.output_attentions
)
output_hidden_states = (
output_hidden_states
if output_hidden_states is not None
else self.config.output_hidden_states
)
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
input_ids, attention_mask, sequence_id, inputs_embeds, original_length = (
self._pad_fp8_inputs(input_ids, attention_mask, sequence_id, inputs_embeds)
)
if attention_mask is None and sequence_id is None and input_ids is not None:
attention_mask = input_ids.ne(self.config.pad_token_id)
sae_layers, sae_token_mask = self._prepare_sae_forward(
compute_sae=compute_sae,
input_ids=input_ids,
attention_mask=attention_mask,
sequence_id=sequence_id,
)
x = self.embed(input_ids) if inputs_embeds is None else inputs_embeds
with _esmplusplus_fp8_context(self._esmc_fp8, self.device):
transformer_output = self.transformer(
x=x,
attention_mask=attention_mask,
sequence_id=sequence_id,
output_hidden_states=output_hidden_states,
output_attentions=output_attentions,
output_s_max=output_s_max,
esmfold2_hidden_states=esmfold2_hidden_states,
sae_layers=sae_layers,
)
sae_outputs = (
self._get_sae_outputs(
transformer_output.sae_hidden_states,
sae_token_mask,
normalize_sae=normalize_sae,
differentiable_sae=differentiable_sae,
)
if sae_layers
else None
)
transformer_output = self._trim_transformer_output(transformer_output, original_length)
result = TransformerOutput(
last_hidden_state=transformer_output.last_hidden_state,
hidden_states=transformer_output.hidden_states,
attentions=transformer_output.attentions,
s_max=transformer_output.s_max,
sae_outputs=sae_outputs,
)
return result if return_dict else result.to_tuple()
class ESMplusplusForMaskedLM(
FastPLMTestTimeTrainingMixin, PreTrainedESMplusplusModel, EmbeddingMixin
):
"""
ESM++ model for masked language modeling.
Implements the base ESM++ architecture with a masked language modeling head.
"""
config_class = ESMplusplusConfig
def __init__(self, config: ESMplusplusConfig, **kwargs) -> None:
PreTrainedESMplusplusModel.__init__(self, config, **kwargs)
self.config = config
self.vocab_size = config.vocab_size
self.embed = nn.Embedding(self.vocab_size, config.hidden_size)
self.transformer = TransformerStack(
d_model=config.hidden_size,
n_heads=config.num_attention_heads,
n_layers=config.num_hidden_layers,
dropout=config.dropout,
attn_backend=config.attn_backend,
)
self.sequence_head = RegressionHead(config.hidden_size, self.vocab_size)
self.ce_loss = nn.CrossEntropyLoss()
self.init_weights()
self.init_ttt({"lora_target_replace_module": "MultiHeadAttention"})
def get_input_embeddings(self):
return self.embed
def set_input_embeddings(self, value):
self.embed = value
def get_output_embeddings(self):
return self.sequence_head[-1]
def set_output_embeddings(self, new_embeddings):
self.sequence_head[-1] = new_embeddings
def _embed(
self,
input_ids: torch.Tensor,
attention_mask: torch.Tensor | None = None,
hidden_state_index: int = -1,
store_all_hidden_states: bool = False,
) -> torch.Tensor:
if attention_mask is None:
attention_mask = input_ids.ne(self.config.pad_token_id)
x = self.embed(input_ids)
output_hidden_states = store_all_hidden_states or hidden_state_index != -1
output = self.transformer(
x=x,
attention_mask=attention_mask,
output_hidden_states=output_hidden_states,
output_attentions=False,
)
return select_hidden_state_embeddings(
output.last_hidden_state,
output.hidden_states,
hidden_state_index=hidden_state_index,
store_all_hidden_states=store_all_hidden_states,
)
def _ttt_get_trainable_modules(self) -> list[nn.Module]:
return [self.transformer]
def forward(
self,
input_ids: torch.Tensor | None = None,
attention_mask: torch.Tensor | None = None,
sequence_id: torch.Tensor | None = None,
inputs_embeds: torch.Tensor | None = None,
labels: torch.Tensor | None = None,
output_attentions: bool | None = None,
output_hidden_states: bool | None = None,
output_s_max: bool | None = False,
esmfold2_hidden_states: bool = False,
return_dict: bool | None = None,
compute_logits: bool = True,
compute_sae: bool = True,
normalize_sae: bool = False,
differentiable_sae: bool = False,
) -> ESMplusplusOutput | tuple[torch.Tensor, ...]:
if input_ids is None and inputs_embeds is None:
raise ValueError("You have to specify either input_ids or inputs_embeds")
if input_ids is not None and inputs_embeds is not None:
raise ValueError("You cannot specify both input_ids and inputs_embeds at the same time")
if labels is not None and not compute_logits:
raise ValueError("labels require compute_logits=True.")
output_attentions = (
output_attentions if output_attentions is not None else self.config.output_attentions
)
output_hidden_states = (
output_hidden_states
if output_hidden_states is not None
else self.config.output_hidden_states
)
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
input_ids, attention_mask, sequence_id, inputs_embeds, original_length = (
self._pad_fp8_inputs(input_ids, attention_mask, sequence_id, inputs_embeds)
)
if attention_mask is None and sequence_id is None and input_ids is not None:
attention_mask = input_ids.ne(self.config.pad_token_id)
sae_layers, sae_token_mask = self._prepare_sae_forward(
compute_sae=compute_sae,
input_ids=input_ids,
attention_mask=attention_mask,
sequence_id=sequence_id,
)
x = self.embed(input_ids) if inputs_embeds is None else inputs_embeds
with _esmplusplus_fp8_context(self._esmc_fp8, self.device):
output = self.transformer(
x=x,
attention_mask=attention_mask,
sequence_id=sequence_id,
output_hidden_states=output_hidden_states,
output_attentions=output_attentions,
output_s_max=output_s_max,
esmfold2_hidden_states=esmfold2_hidden_states,
sae_layers=sae_layers,
)
sae_outputs = (
self._get_sae_outputs(
output.sae_hidden_states,
sae_token_mask,
normalize_sae=normalize_sae,
differentiable_sae=differentiable_sae,
)
if sae_layers
else None
)
output = self._trim_transformer_output(output, original_length)
last_hidden_state = output.last_hidden_state
logits = self.sequence_head(last_hidden_state) if compute_logits else None
loss = None
if labels is not None:
if logits is None:
raise ValueError("labels require compute_logits=True.")
labels = labels.to(logits.device)
loss = self.ce_loss(logits.view(-1, self.vocab_size), labels.view(-1))
result = ESMplusplusOutput(
loss=loss,
logits=logits,
hidden_states=output.hidden_states,
attentions=output.attentions,
s_max=output.s_max,
last_hidden_state=last_hidden_state,
sae_outputs=sae_outputs,
)
return result if return_dict else result.to_tuple()
class ESMplusplusForSequenceClassification(ESMplusplusForMaskedLM, EmbeddingMixin):
"""
ESM++ model for sequence classification.
Extends the base ESM++ model with a classification head.
"""
def __init__(self, config: ESMplusplusConfig, **kwargs) -> None:
pooling_types = kwargs.pop("pooling_types", None)
if pooling_types is None:
pooling_types = config.classifier_pooling_types or ["mean", "var"]
elif not isinstance(pooling_types, list):
raise TypeError("pooling_types must be a non-empty list of strings.")
elif not pooling_types:
raise ValueError("pooling_types must contain at least one pooling operation.")
elif not all(isinstance(pooling_type, str) for pooling_type in pooling_types):
raise TypeError("pooling_types must be a non-empty list of strings.")
if "parti" in pooling_types:
raise ValueError(
"pooling_types cannot contain 'parti' for sequence classification "
"because the classifier does not expose layer attentions to its pooler."
)
config.classifier_pooling_types = list(pooling_types)
ESMplusplusForMaskedLM.__init__(self, config, **kwargs)
self.config = config
self.num_labels = config.num_labels
self.classifier = RegressionHead(
config.hidden_size * len(pooling_types),
config.num_labels,
config.hidden_size * 4,
)
# Large intermediate projections help with sequence classification tasks (*4)
self.mse = nn.MSELoss()
self.ce = nn.CrossEntropyLoss()
self.bce = nn.BCEWithLogitsLoss()
self.pooler = Pooler(pooling_types)
self.init_weights()
def _embed(
self,
input_ids: torch.Tensor,
attention_mask: torch.Tensor | None = None,
hidden_state_index: int = -1,
store_all_hidden_states: bool = False,
) -> torch.Tensor:
x = self.embed(input_ids)
output_hidden_states = store_all_hidden_states or hidden_state_index != -1
output = self.transformer(
x=x,
attention_mask=attention_mask,
output_hidden_states=output_hidden_states,
output_attentions=False,
)
return select_hidden_state_embeddings(
output.last_hidden_state,
output.hidden_states,
hidden_state_index=hidden_state_index,
store_all_hidden_states=store_all_hidden_states,
)
def forward(
self,
input_ids: torch.Tensor | None = None,
attention_mask: torch.Tensor | None = None,
sequence_id: torch.Tensor | None = None,
inputs_embeds: torch.Tensor | None = None,
labels: torch.Tensor | None = None,
output_attentions: bool | None = None,
output_hidden_states: bool | None = None,
output_s_max: bool | None = False,
return_dict: bool | None = None,
compute_sae: bool = True,
normalize_sae: bool = False,
) -> ESMplusplusSequenceClassifierOutput | tuple[torch.Tensor, ...]:
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
pooling_mask = attention_mask
if pooling_mask is None:
if sequence_id is not None:
pooling_mask = (
sequence_id if sequence_id.dtype == torch.bool else sequence_id.ne(-1)
)
elif input_ids is not None:
pooling_mask = input_ids.ne(self.config.pad_token_id)
else:
if inputs_embeds is None:
raise ValueError("You have to specify either input_ids or inputs_embeds")
pooling_mask = torch.ones(
inputs_embeds.shape[:2],
dtype=torch.bool,
device=inputs_embeds.device,
)
output = super().forward(
input_ids=input_ids,
attention_mask=attention_mask,
sequence_id=sequence_id,
inputs_embeds=inputs_embeds,
labels=None,
output_attentions=output_attentions,
output_hidden_states=output_hidden_states,
output_s_max=output_s_max,
return_dict=True,
compute_logits=False,
compute_sae=compute_sae,
normalize_sae=normalize_sae,
)
last_hidden_state = output.last_hidden_state
features = self.pooler(last_hidden_state, pooling_mask)
logits = self.classifier(features)
loss = 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 == torch.long or labels.dtype == torch.int
):
self.config.problem_type = "single_label_classification"
else:
self.config.problem_type = "multi_label_classification"
if self.config.problem_type == "regression":
if self.num_labels == 1:
loss = self.mse(logits.flatten(), labels.flatten())
else:
loss = self.mse(logits, labels)
elif self.config.problem_type == "single_label_classification":
loss = self.ce(logits.view(-1, self.num_labels), labels.view(-1))
elif self.config.problem_type == "multi_label_classification":
loss = self.bce(logits, labels)
result = ESMplusplusSequenceClassifierOutput(
loss=loss,
logits=logits,
hidden_states=output.hidden_states,
attentions=output.attentions,
s_max=output.s_max,
sae_outputs=output.sae_outputs,
)
return result if return_dict else result.to_tuple()
class ESMplusplusForTokenClassification(ESMplusplusForMaskedLM, EmbeddingMixin):
"""
ESM++ model for token classification.
Extends the base ESM++ model with a token classification head.
"""
def __init__(self, config: ESMplusplusConfig, **kwargs) -> None:
ESMplusplusForMaskedLM.__init__(self, config, **kwargs)
self.config = config
self.num_labels = config.num_labels
self.classifier = RegressionHead(
config.hidden_size, config.num_labels, config.hidden_size * 4
)
# Large intermediate projections help with sequence classification tasks (*4)
self.loss_fct = nn.CrossEntropyLoss()
self.init_weights()
def _embed(
self,
input_ids: torch.Tensor,
attention_mask: torch.Tensor | None = None,
hidden_state_index: int = -1,
store_all_hidden_states: bool = False,
) -> torch.Tensor:
x = self.embed(input_ids)
output_hidden_states = store_all_hidden_states or hidden_state_index != -1
output = self.transformer(
x,
attention_mask,
output_hidden_states=output_hidden_states,
output_attentions=False,
)
return select_hidden_state_embeddings(
output.last_hidden_state,
output.hidden_states,
hidden_state_index=hidden_state_index,
store_all_hidden_states=store_all_hidden_states,
)
def forward(
self,
input_ids: torch.Tensor | None = None,
attention_mask: torch.Tensor | None = None,
sequence_id: torch.Tensor | None = None,
inputs_embeds: torch.Tensor | None = None,
labels: torch.Tensor | None = None,
output_attentions: bool | None = None,
output_hidden_states: bool | None = None,
output_s_max: bool | None = False,
return_dict: bool | None = None,
compute_sae: bool = True,
normalize_sae: bool = False,
) -> ESMplusplusTokenClassifierOutput | tuple[torch.Tensor, ...]:
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
output = super().forward(
input_ids=input_ids,
attention_mask=attention_mask,
sequence_id=sequence_id,
inputs_embeds=inputs_embeds,
labels=None,
output_attentions=output_attentions,
output_hidden_states=output_hidden_states,
output_s_max=output_s_max,
return_dict=True,
compute_logits=False,
compute_sae=compute_sae,
normalize_sae=normalize_sae,
)
last_hidden_state = output.last_hidden_state
logits = self.classifier(last_hidden_state)
loss = None
if labels is not None:
labels = labels.to(logits.device)
loss = self.loss_fct(logits.view(-1, self.num_labels), labels.view(-1))
result = ESMplusplusTokenClassifierOutput(
loss=loss,
logits=logits,
hidden_states=output.hidden_states,
attentions=output.attentions,
s_max=output.s_max,
sae_outputs=output.sae_outputs,
)
return result if return_dict else result.to_tuple()
### Tokenization
SEQUENCE_VOCAB = [
"<cls>",
"<pad>",
"<eos>",
"<unk>",
"L",
"A",
"G",
"V",
"S",
"E",
"R",
"T",
"I",
"D",
"P",
"K",
"Q",
"N",
"F",
"Y",
"M",
"H",
"W",
"C",
"X",
"B",
"U",
"Z",
"O",
".",
"-",
"|",
"<mask>",
]
def _build_sequence_tokenizer_backend(
*,
unk_token: str,
cls_token: str,
pad_token: str,
mask_token: str,
eos_token: str,
chain_break_token: str,
) -> Tokenizer:
"""Build the fixed ESMC character vocabulary and boundary-token policy."""
vocabulary = dict(zip(SEQUENCE_VOCAB, range(len(SEQUENCE_VOCAB)), strict=True))
backend = Tokenizer(BPE(vocabulary, merges=[], unk_token=unk_token))
backend.add_special_tokens([cls_token, pad_token, mask_token, eos_token, chain_break_token])
backend.post_processor = TemplateProcessing(
single="<cls> $A <eos>",
pair="<cls>:0 $A:0 <eos>:0 $B:1 <eos>:1",
special_tokens=[
("<cls>", backend.token_to_id("<cls>")),
("<eos>", backend.token_to_id("<eos>")),
],
)
return backend
class EsmSequenceTokenizer(PreTrainedTokenizerFast):
model_input_names: ClassVar[list[str]] = ["input_ids", "attention_mask"]
def __init__(
self,
unk_token="<unk>",
cls_token="<cls>",
pad_token="<pad>",
mask_token="<mask>",
eos_token="<eos>",
chain_break_token="|",
**kwargs,
):
backend = _build_sequence_tokenizer_backend(
unk_token=unk_token,
cls_token=cls_token,
pad_token=pad_token,
mask_token=mask_token,
eos_token=eos_token,
chain_break_token=chain_break_token,
)
self.cb_token = chain_break_token
super().__init__(
tokenizer_object=backend,
unk_token=unk_token,
cls_token=cls_token,
pad_token=pad_token,
mask_token=mask_token,
eos_token=eos_token,
additional_special_tokens=[chain_break_token],
**kwargs,
)
# ESMC does not use BOS, so expose the sequence-start token through the HF BOS fields.
@property
def bos_token(self):
return self.cls_token
@property
def bos_token_id(self):
return self.cls_token_id
@property
def chain_break_token(self):
return self.cb_token
@property
def chain_break_token_id(self):
return self.convert_tokens_to_ids(self.chain_break_token)
@property
def all_token_ids(self):
return list(range(self.vocab_size))
@property
def special_token_ids(self):
return self.all_special_ids
|