File size: 71,507 Bytes
06acd95 | 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 | from collections import OrderedDict
import math
from typing import Callable, Dict, List, Optional, Sequence, Tuple, Type, Union
import torch
from torch import nn
from torch.nn import functional as F
from torch.utils.checkpoint import checkpoint
import warnings
import numpy as np
def to_2tuple(x):
if isinstance(x, (tuple, list)):
return x
return (x, x)
def feature_take_indices(num_blocks, indices):
take_indices = [i if i >= 0 else num_blocks + i for i in indices]
max_index = max(take_indices)
return take_indices, max_index
def get_2d_sincos_pos_embed(embed_dim, grid_size, cls_token=False):
grid_h = np.arange(grid_size, dtype=np.float32)
grid_w = np.arange(grid_size, dtype=np.float32)
grid = np.meshgrid(grid_w, grid_h)
grid = np.stack(grid, axis=0).reshape([2, 1, grid_size, grid_size])
pos_embed = _get_2d_sincos_pos_embed_from_grid(embed_dim, grid)
if cls_token:
pos_embed = np.concatenate([np.zeros([1, embed_dim]), pos_embed], axis=0)
return pos_embed
def _get_2d_sincos_pos_embed_from_grid(embed_dim, grid):
assert embed_dim % 2 == 0
emb_h = _get_1d_sincos_pos_embed_from_grid(embed_dim // 2, grid[0])
emb_w = _get_1d_sincos_pos_embed_from_grid(embed_dim // 2, grid[1])
return np.concatenate([emb_h, emb_w], axis=1)
def _get_1d_sincos_pos_embed_from_grid(embed_dim, pos):
assert embed_dim % 2 == 0
omega = np.arange(embed_dim // 2, dtype=np.float64)
omega /= embed_dim / 2.
omega = 1. / 10000**omega
pos = pos.reshape(-1)
out = np.einsum('m,d->md', pos, omega)
return np.concatenate([np.sin(out), np.cos(out)], axis=1)
class LayerNormFp32(nn.LayerNorm):
"""Subclass torch's LayerNorm to handle fp16 (by casting to float32 and back)."""
def forward(self, x: torch.Tensor):
orig_type = x.dtype
x = F.layer_norm(x.to(torch.float32), self.normalized_shape, self.weight, self.bias, self.eps)
return x.to(orig_type)
class LayerNorm(nn.LayerNorm):
"""Subclass torch's LayerNorm (with cast back to input dtype)."""
def forward(self, x: torch.Tensor):
orig_type = x.dtype
x = F.layer_norm(x, self.normalized_shape, self.weight, self.bias, self.eps)
return x.to(orig_type)
class QuickGELU(nn.Module):
# NOTE This is slower than nn.GELU or nn.SiLU and uses more GPU memory
def forward(self, x: torch.Tensor):
return x * torch.sigmoid(1.702 * x)
class LayerScale(nn.Module):
def __init__(self, dim, init_values=1e-5, inplace=False):
super().__init__()
self.inplace = inplace
self.gamma = nn.Parameter(init_values * torch.ones(dim))
def forward(self, x):
return x.mul_(self.gamma) if self.inplace else x * self.gamma
class PatchDropout(nn.Module):
"""
https://arxiv.org/abs/2212.00794
"""
def __init__(
self,
prob: float = 0.5,
exclude_first_token: bool = True
):
super().__init__()
assert 0 <= prob < 1.
self.prob = prob
self.exclude_first_token = exclude_first_token # exclude CLS token
def forward(self, x):
if not self.training or self.prob == 0.:
return x
if self.exclude_first_token:
cls_tokens, x = x[:, :1], x[:, 1:]
else:
cls_tokens = torch.jit.annotate(torch.Tensor, x[:, :1])
batch = x.size()[0]
num_tokens = x.size()[1]
batch_indices = torch.arange(batch)
batch_indices = batch_indices[..., None]
keep_prob = 1 - self.prob
num_patches_keep = max(1, int(num_tokens * keep_prob))
rand = torch.randn(batch, num_tokens)
patch_indices_keep = rand.topk(num_patches_keep, dim=-1).indices
x = x[batch_indices, patch_indices_keep]
if self.exclude_first_token:
x = torch.cat((cls_tokens, x), dim=1)
return x
class Attention(nn.Module):
def __init__(
self,
dim: int,
num_heads: int = 8,
qkv_bias: bool = True,
qk_norm: bool = False,
scaled_cosine: bool = False,
scale_heads: bool = False,
inner_norm: bool = False,
logit_scale_max: float = math.log(1. / 0.01),
norm_layer: Type[nn.Module] = LayerNormFp32,
attn_drop: float = 0.,
proj_drop: float = 0.
):
super().__init__()
assert not (scaled_cosine and qk_norm), "Cannot activate both scaled cosine and QK normalization"
self.scaled_cosine = scaled_cosine
self.scale_heads = scale_heads
assert dim % num_heads == 0, 'dim should be divisible by num_heads'
self.num_heads = num_heads
self.head_dim = dim // num_heads
self.scale = self.head_dim ** -0.5
self.logit_scale_max = logit_scale_max
self.use_fsdpa = hasattr(nn.functional, 'scaled_dot_product_attention')
# keeping in_proj in this form (instead of nn.Linear) to match weight scheme of original
self.in_proj_weight = nn.Parameter(torch.randn((dim * 3, dim)) * self.scale)
if qkv_bias:
self.in_proj_bias = nn.Parameter(torch.zeros(dim * 3))
else:
self.in_proj_bias = None
# QK normalization (with LN) from https://arxiv.org/abs/2106.04560 and related to other QK Norm ideas
if qk_norm:
self.ln_q = norm_layer(self.head_dim)
self.ln_k = norm_layer(self.head_dim)
else:
self.ln_q = nn.Identity()
self.ln_k = nn.Identity()
# Scaled cosine attention (from Swin Transformer V2, https://arxiv.org/abs/2111.09883)
if self.scaled_cosine:
self.logit_scale = nn.Parameter(torch.log(10 * torch.ones((num_heads, 1, 1))))
else:
self.logit_scale = None
self.attn_drop = nn.Dropout(attn_drop)
# Per-head attention logit scaling (from NormFormer, https://arxiv.org/abs/2110.09456)
if self.scale_heads:
self.head_scale = nn.Parameter(torch.ones((num_heads, 1, 1)))
else:
self.head_scale = None
# Normalization of attention logits, before final projection.
# Origin likely Sub-LN in (Foundation Transformers, https://arxiv.org/abs/2210.06423)
if inner_norm:
self.ln_inner = norm_layer(dim)
else:
self.ln_inner = nn.Identity()
self.out_proj = nn.Linear(dim, dim)
self.out_drop = nn.Dropout(proj_drop)
def forward(self, x, attn_mask: Optional[torch.Tensor] = None):
N, L, C = x.shape
q, k, v = F.linear(x, self.in_proj_weight, self.in_proj_bias).chunk(3, dim=-1)
q = q.reshape(N, L, self.num_heads, -1).transpose(1, 2)
k = k.reshape(N, L, self.num_heads, -1).transpose(1, 2)
v = v.reshape(N, L, self.num_heads, -1).transpose(1, 2)
if attn_mask is not None:
if attn_mask.ndim == 3:
# this module works with (L, L), or (N, num_heads, L, L) masks
attn_mask = attn_mask.reshape(N, self.num_heads, L, L)
if attn_mask.dtype == torch.bool:
new_attn_mask = torch.zeros_like(attn_mask, dtype=q.dtype)
new_attn_mask.masked_fill_(attn_mask, float("-inf"))
attn_mask = new_attn_mask
else:
attn_mask = attn_mask.to(dtype=q.dtype)
if self.logit_scale is not None:
attn = torch.bmm(
F.normalize(q, dim=-1),
F.normalize(k, dim=-1).transpose(-1, -2)
)
logit_scale = torch.clamp(self.logit_scale, max=self.logit_scale_max).exp()
attn = attn * logit_scale
if attn_mask is not None:
attn = attn + attn_mask
attn = attn.softmax(dim=-1)
attn = self.attn_drop(attn)
x = torch.bmm(attn, v)
else:
q = self.ln_q(q)
k = self.ln_k(k)
if self.use_fsdpa:
x = F.scaled_dot_product_attention(
q, k, v,
attn_mask=attn_mask,
dropout_p=self.attn_drop.p if self.training else 0.,
)
else:
q = q * self.scale
attn = torch.bmm(q, k.transpose(-1, -2))
if attn_mask is not None:
attn += attn_mask
attn = attn.softmax(dim=-1)
attn = self.attn_drop(attn)
x = torch.bmm(attn, v)
# N, num_heads, L, head_dim
if self.head_scale is not None:
x = x * self.head_scale
x = x.transpose(1, 2).reshape(N, L, C)
x = self.ln_inner(x)
x = self.out_proj(x)
x = self.out_drop(x)
return x
class AttentionalPooler(nn.Module):
def __init__(
self,
d_model: int,
context_dim: int,
n_head: int = 8,
n_queries: int = 256,
norm_layer: Callable = LayerNorm,
):
super().__init__()
self.query = nn.Parameter(torch.randn(n_queries, d_model))
self.attn = nn.MultiheadAttention(d_model, n_head, kdim=context_dim, vdim=context_dim, batch_first=True)
self.ln_q = norm_layer(d_model)
self.ln_k = norm_layer(context_dim)
def forward(self, x: torch.Tensor):
N = x.shape[0]
x = self.ln_k(x)
q = self.ln_q(self.query)
out = self.attn(q.unsqueeze(0).expand(N, -1, -1), x, x, need_weights=False)[0]
return out
class ResidualAttentionBlock(nn.Module):
def __init__(
self,
d_model: int,
n_head: int,
mlp_ratio: float = 4.0,
ls_init_value: float = None,
act_layer: Callable = nn.GELU,
norm_layer: Callable = LayerNorm,
is_cross_attention: bool = False,
batch_first: bool = True,
):
super().__init__()
self.ln_1 = norm_layer(d_model)
self.attn = nn.MultiheadAttention(d_model, n_head, batch_first=batch_first)
self.ls_1 = LayerScale(d_model, ls_init_value) if ls_init_value is not None else nn.Identity()
if is_cross_attention:
self.ln_1_kv = norm_layer(d_model)
self.ln_2 = norm_layer(d_model)
mlp_width = int(d_model * mlp_ratio)
self.mlp = nn.Sequential(OrderedDict([
("c_fc", nn.Linear(d_model, mlp_width)),
("gelu", act_layer()),
("c_proj", nn.Linear(mlp_width, d_model))
]))
self.ls_2 = LayerScale(d_model, ls_init_value) if ls_init_value is not None else nn.Identity()
def get_weight_dtype(self) -> torch.dtype:
if hasattr(self.mlp.c_fc, 'int8_original_dtype'):
return self.mlp.c_fc.int8_original_dtype
return self.mlp.c_fc.weight.dtype
def attention(
self,
q_x: torch.Tensor,
k_x: Optional[torch.Tensor] = None,
v_x: Optional[torch.Tensor] = None,
attn_mask: Optional[torch.Tensor] = None,
):
k_x = k_x if k_x is not None else q_x
v_x = v_x if v_x is not None else q_x
attn_mask = attn_mask.to(q_x.dtype) if attn_mask is not None else None
return self.attn(
q_x, k_x, v_x,
need_weights=False,
attn_mask=attn_mask
)[0]
def forward(
self,
q_x: torch.Tensor,
k_x: Optional[torch.Tensor] = None,
v_x: Optional[torch.Tensor] = None,
attn_mask: Optional[torch.Tensor] = None,
):
k_x = self.ln_1_kv(k_x) if hasattr(self, "ln_1_kv") and k_x is not None else None
v_x = self.ln_1_kv(v_x) if hasattr(self, "ln_1_kv") and v_x is not None else None
x = q_x + self.ls_1(self.attention(q_x=self.ln_1(q_x), k_x=k_x, v_x=v_x, attn_mask=attn_mask))
x = x + self.ls_2(self.mlp(self.ln_2(x)))
return x
class CustomResidualAttentionBlock(nn.Module):
def __init__(
self,
d_model: int,
n_head: int,
mlp_ratio: float = 4.0,
ls_init_value: float = None,
act_layer: Type[nn.Module] = nn.GELU,
norm_layer: Type[nn.Module] = LayerNorm,
qk_norm: bool = False,
scale_cosine_attn: bool = False,
scale_heads: bool = False,
scale_attn_inner: bool = False,
scale_attn: bool = False,
scale_fc: bool = False,
batch_first: bool = True,
):
super().__init__()
assert batch_first, 'batch_first must be True for CustomResidualAttentionBlock'
self.ln_1 = norm_layer(d_model)
self.attn = Attention(
d_model,
n_head,
qk_norm=qk_norm,
scaled_cosine=scale_cosine_attn,
scale_heads=scale_heads,
inner_norm=scale_attn_inner,
norm_layer=norm_layer,
)
self.ln_attn = norm_layer(d_model) if scale_attn else nn.Identity()
self.ls_1 = LayerScale(d_model, ls_init_value) if ls_init_value is not None else nn.Identity()
self.ln_2 = norm_layer(d_model)
mlp_width = int(d_model * mlp_ratio)
self.mlp = nn.Sequential(OrderedDict([
("c_fc", nn.Linear(d_model, mlp_width)),
("gelu", act_layer()),
('ln', norm_layer(mlp_width) if scale_fc else nn.Identity()), # from NormFormer / Foundation Transformers
("c_proj", nn.Linear(mlp_width, d_model))
]))
self.ls_2 = LayerScale(d_model, ls_init_value) if ls_init_value is not None else nn.Identity()
def get_weight_dtype(self) -> torch.dtype:
if hasattr(self.mlp.c_fc, 'int8_original_dtype'):
return self.mlp.c_fc.int8_original_dtype
return self.mlp.c_fc.weight.dtype
def forward(self, x: torch.Tensor, attn_mask: Optional[torch.Tensor] = None):
x = x + self.ls_1(self.ln_attn(self.attn(self.ln_1(x), attn_mask=attn_mask)))
x = x + self.ls_2(self.mlp(self.ln_2(x)))
return x
class CustomTransformer(nn.Module):
""" A custom transformer that can use different block types. """
def __init__(
self,
width: int,
layers: int,
heads: int,
mlp_ratio: float = 4.0,
ls_init_value: float = None,
act_layer: Type[nn.Module] = nn.GELU,
norm_layer: Type[nn.Module] = LayerNorm,
batch_first: bool = True,
block_types: Union[str, List[str]] = 'CustomResidualAttentionBlock',
):
super().__init__()
self.width = width
self.layers = layers
self.batch_first = batch_first # run transformer stack in batch first (N, L, D)
self.grad_checkpointing = False
if isinstance(block_types, str):
block_types = [block_types] * layers
assert len(block_types) == layers
def _create_block(bt: str):
if bt == 'CustomResidualAttentionBlock':
return CustomResidualAttentionBlock(
width,
heads,
mlp_ratio=mlp_ratio,
ls_init_value=ls_init_value,
act_layer=act_layer,
norm_layer=norm_layer,
batch_first=batch_first,
)
else:
assert False
self.resblocks = nn.ModuleList([
_create_block(bt)
for bt in block_types
])
def get_cast_dtype(self) -> torch.dtype:
return self.resblocks[0].get_weight_dtype()
def forward_intermediates(
self,
x: torch.Tensor,
attn_mask: Optional[torch.Tensor] = None,
indices: Optional[Union[int, List[int]]] = None,
stop_early: bool = False,
):
take_indices, max_index = feature_take_indices(len(self.resblocks), indices)
if not self.batch_first:
x = x.transpose(0, 1).contiguous() # NLD -> LND
intermediates = []
if torch.jit.is_scripting() or not stop_early: # can't slice blocks in torchscript
blocks = self.resblocks
else:
blocks = self.resblocks[:max_index + 1]
for i, blk in enumerate(blocks):
if self.grad_checkpointing and not torch.jit.is_scripting():
x = checkpoint(blk, x, None, None, attn_mask, use_reentrant=False)
else:
x = blk(x, attn_mask=attn_mask)
if i in take_indices:
intermediates.append(x.transpose(0, 1) if not self.batch_first else x)
if not self.batch_first:
x = x.transpose(0, 1) # LND -> NLD
return x, intermediates
def prune_intermediate_layers(self, indices: Union[int, List[int]] = 1):
""" Prune layers not required for specified intermediates.
"""
take_indices, max_index = feature_take_indices(len(self.resblocks), indices)
self.resblocks = self.resblocks[:max_index + 1] # truncate blocks
return take_indices
def forward(self, x: torch.Tensor, attn_mask: Optional[torch.Tensor] = None):
if not self.batch_first:
x = x.transpose(0, 1) # NLD -> LND
for r in self.resblocks:
if self.grad_checkpointing and not torch.jit.is_scripting():
# TODO: handle kwargs https://github.com/pytorch/pytorch/issues/79887#issuecomment-1161758372
x = checkpoint(r, x, None, None, attn_mask, use_reentrant=False)
else:
x = r(x, attn_mask=attn_mask)
if not self.batch_first:
x = x.transpose(0, 1) # NLD -> LND
return x
class Transformer(nn.Module):
def __init__(
self,
width: int,
layers: int,
heads: int,
mlp_ratio: float = 4.0,
ls_init_value: float = None,
act_layer: Type[nn.Module] = nn.GELU,
norm_layer: Type[nn.Module] = LayerNorm,
batch_first: bool = True,
block_type: Optional[str] = None,
qk_norm: bool = False,
scaled_cosine_attn: bool = False,
scale_heads: bool = False,
scale_attn_inner: bool = False,
scale_attn: bool = False,
scale_fc: bool = False,
):
super().__init__()
self.width = width
self.layers = layers
self.batch_first = batch_first
self.grad_checkpointing = False
# Auto-select custom block if any custom features are enabled
if block_type is None:
if any([qk_norm, scaled_cosine_attn, scale_heads, scale_attn_inner, scale_attn, scale_fc]):
block_type = 'custom'
else:
block_type = 'default'
if block_type == 'custom':
self.resblocks = nn.ModuleList([
CustomResidualAttentionBlock(
width,
heads,
mlp_ratio,
ls_init_value=ls_init_value,
act_layer=act_layer,
norm_layer=norm_layer,
qk_norm=qk_norm,
scale_cosine_attn=scaled_cosine_attn,
scale_heads=scale_heads,
scale_attn_inner=scale_attn_inner,
scale_attn=scale_attn,
scale_fc=scale_fc,
batch_first=batch_first,
)
for _ in range(layers)
])
else:
self.resblocks = nn.ModuleList([
ResidualAttentionBlock(
width,
heads,
mlp_ratio,
ls_init_value=ls_init_value,
act_layer=act_layer,
norm_layer=norm_layer,
batch_first=batch_first,
)
for _ in range(layers)
])
def get_cast_dtype(self) -> torch.dtype:
return self.resblocks[0].get_weight_dtype()
def forward_intermediates(
self,
x: torch.Tensor,
attn_mask: Optional[torch.Tensor] = None,
indices: Optional[Union[int, List[int]]] = None,
stop_early: bool = False,
):
take_indices, max_index = feature_take_indices(len(self.resblocks), indices)
if not self.batch_first:
x = x.transpose(0, 1).contiguous() # NLD -> LND
intermediates = []
if torch.jit.is_scripting() or not stop_early: # can't slice blocks in torchscript
blocks = self.resblocks
else:
blocks = self.resblocks[:max_index + 1]
for i, blk in enumerate(blocks):
if self.grad_checkpointing and not torch.jit.is_scripting():
x = checkpoint(blk, x, None, None, attn_mask, use_reentrant=False)
else:
x = blk(x, attn_mask=attn_mask)
if i in take_indices:
intermediates.append(x.transpose(0, 1) if not self.batch_first else x)
if not self.batch_first:
x = x.transpose(0, 1) # LND -> NLD
return x, intermediates
def prune_intermediate_layers(self, indices: Union[int, List[int]] = 1):
""" Prune layers not required for specified intermediates.
"""
take_indices, max_index = feature_take_indices(len(self.resblocks), indices)
self.resblocks = self.resblocks[:max_index + 1] # truncate blocks
return take_indices
def forward(self, x: torch.Tensor, attn_mask: Optional[torch.Tensor] = None):
if not self.batch_first:
x = x.transpose(0, 1).contiguous() # NLD -> LND
for r in self.resblocks:
if self.grad_checkpointing and not torch.jit.is_scripting():
# TODO: handle kwargs https://github.com/pytorch/pytorch/issues/79887#issuecomment-1161758372
x = checkpoint(r, x, None, None, attn_mask, use_reentrant=False)
else:
x = r(x, attn_mask=attn_mask)
if not self.batch_first:
x = x.transpose(0, 1) # LND -> NLD
return x
def _expand_token(token, batch_size: int):
return token.view(1, 1, -1).expand(batch_size, -1, -1)
class VisionTransformer(nn.Module):
output_tokens: torch.jit.Final[bool]
def __init__(
self,
image_size: int,
patch_size: int,
width: int,
layers: int,
heads: int,
mlp_ratio: float,
ls_init_value: float = None,
attentional_pool: bool = False,
attn_pooler_queries: int = 256,
attn_pooler_heads: int = 8,
output_dim: int = 512,
patch_dropout: float = 0.,
no_ln_pre: bool = False,
pos_embed_type: str = 'learnable',
pool_type: str = 'tok',
final_ln_after_pool: bool = False,
act_layer: Callable = nn.GELU,
norm_layer: Callable = LayerNorm,
output_tokens: bool = False,
block_type: Optional[str] = None,
qk_norm: bool = False,
scaled_cosine_attn: bool = False,
scale_heads: bool = False,
scale_attn_inner: bool = False,
scale_attn: bool = False,
scale_fc: bool = False,
):
super().__init__()
assert pool_type in ('tok', 'avg', 'none')
self.output_tokens = output_tokens
image_height, image_width = self.image_size = to_2tuple(image_size)
patch_height, patch_width = self.patch_size = to_2tuple(patch_size)
self.grid_size = (image_height // patch_height, image_width // patch_width)
self.final_ln_after_pool = final_ln_after_pool # currently ignored w/ attn pool enabled
self.output_dim = output_dim
self.conv1 = nn.Conv2d(
in_channels=3,
out_channels=width,
kernel_size=patch_size,
stride=patch_size,
bias=False,
)
# class embeddings and positional embeddings
scale = width ** -0.5
self.class_embedding = nn.Parameter(scale * torch.randn(width))
if pos_embed_type == 'learnable':
self.positional_embedding = nn.Parameter(
scale * torch.randn(self.grid_size[0] * self.grid_size[1] + 1, width))
elif pos_embed_type == 'sin_cos_2d':
# fixed sin-cos embedding
assert self.grid_size[0] == self.grid_size[1],\
'currently sin cos 2d pos embedding only supports square input'
self.positional_embedding = nn.Parameter(
torch.zeros(self.grid_size[0] * self.grid_size[1] + 1, width), requires_grad=False)
pos_embed_type = get_2d_sincos_pos_embed(width, self.grid_size[0], cls_token=True)
self.positional_embedding.data.copy_(torch.from_numpy(pos_embed_type).float())
else:
raise ValueError
# setting a patch_dropout of 0. would mean it is disabled and this function would be the identity fn
self.patch_dropout = PatchDropout(patch_dropout) if patch_dropout > 0. else nn.Identity()
self.ln_pre = nn.Identity() if no_ln_pre else norm_layer(width)
self.transformer = Transformer(
width,
layers,
heads,
mlp_ratio,
ls_init_value=ls_init_value,
act_layer=act_layer,
norm_layer=norm_layer,
block_type=block_type,
qk_norm=qk_norm,
scaled_cosine_attn=scaled_cosine_attn,
scale_heads=scale_heads,
scale_attn_inner=scale_attn_inner,
scale_attn=scale_attn,
scale_fc=scale_fc,
)
if attentional_pool:
if isinstance(attentional_pool, str):
self.attn_pool_type = attentional_pool
self.pool_type = 'none'
if attentional_pool in ('parallel', 'cascade'):
self.attn_pool = AttentionalPooler(
output_dim,
width,
n_head=attn_pooler_heads,
n_queries=attn_pooler_queries,
)
self.attn_pool_contrastive = AttentionalPooler(
output_dim,
width,
n_head=attn_pooler_heads,
n_queries=1,
)
else:
assert False
else:
self.attn_pool_type = ''
self.pool_type = pool_type
self.attn_pool = AttentionalPooler(
output_dim,
width,
n_head=attn_pooler_heads,
n_queries=attn_pooler_queries,
)
self.attn_pool_contrastive = None
pool_dim = output_dim
else:
self.attn_pool = None
pool_dim = width
self.pool_type = pool_type
self.ln_post = norm_layer(pool_dim)
self.proj = nn.Parameter(scale * torch.randn(pool_dim, output_dim))
self.init_parameters()
def lock(self, unlocked_groups: int = 0, freeze_bn_stats: bool = False):
for param in self.parameters():
param.requires_grad = False
if unlocked_groups != 0:
groups = [
[
self.conv1,
self.class_embedding,
self.positional_embedding,
self.ln_pre,
],
*self.transformer.resblocks[:-1],
[
self.transformer.resblocks[-1],
self.ln_post,
],
self.proj,
]
def _unlock(x):
if isinstance(x, Sequence):
for g in x:
_unlock(g)
else:
if isinstance(x, torch.nn.Parameter):
x.requires_grad = True
else:
for p in x.parameters():
p.requires_grad = True
_unlock(groups[-unlocked_groups:])
def init_parameters(self):
# FIXME OpenAI CLIP did not define an init for the VisualTransformer
# TODO experiment if default PyTorch init, below, or alternate init is best.
# nn.init.normal_(self.class_embedding, std=self.scale)
# nn.init.normal_(self.positional_embedding, std=self.scale)
#
# proj_std = (self.transformer.width ** -0.5) * ((2 * self.transformer.layers) ** -0.5)
# attn_std = self.transformer.width ** -0.5
# fc_std = (2 * self.transformer.width) ** -0.5
# for block in self.transformer.resblocks:
# nn.init.normal_(block.attn.in_proj_weight, std=attn_std)
# nn.init.normal_(block.attn.out_proj.weight, std=proj_std)
# nn.init.normal_(block.mlp.c_fc.weight, std=fc_std)
# nn.init.normal_(block.mlp.c_proj.weight, std=proj_std)
#
# if self.text_projection is not None:
# nn.init.normal_(self.text_projection, std=self.scale)
pass
@torch.jit.ignore
def set_grad_checkpointing(self, enable: bool = True):
self.transformer.grad_checkpointing = enable
@torch.jit.ignore
def no_weight_decay(self):
# for timm optimizers, 1d params like logit_scale, logit_bias, ln/bn scale, biases are excluded by default
no_wd = {'positional_embedding', 'class_embedding'}
return no_wd
def _global_pool(self, x: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor]:
if self.pool_type == 'avg':
pooled, tokens = x[:, 1:].mean(dim=1), x[:, 1:]
elif self.pool_type == 'tok':
pooled, tokens = x[:, 0], x[:, 1:]
else:
pooled = tokens = x
return pooled, tokens
def _embeds(self, x:torch.Tensor) -> torch.Tensor:
x = self.conv1(x) # shape = [*, dim, grid, grid]
x = x.reshape(x.shape[0], x.shape[1], -1) # shape = [*, width, grid ** 2]
x = x.permute(0, 2, 1) # shape = [*, grid ** 2, width]
# class embeddings and positional embeddings
x = torch.cat([_expand_token(self.class_embedding, x.shape[0]).to(x.dtype), x], dim=1)
# shape = [*, grid ** 2 + 1, width]
x = x + self.positional_embedding.to(x.dtype)
# patch dropout (if active)
x = self.patch_dropout(x)
# apply norm before transformer
x = self.ln_pre(x)
return x
def _pool(self, x: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor]:
if self.attn_pool is not None:
if self.attn_pool_contrastive is not None:
# This is untested, WIP pooling that should match paper
x = self.ln_post(x) # TBD LN first or separate one after each pool?
tokens = self.attn_pool(x)
if self.attn_pool_type == 'parallel':
pooled = self.attn_pool_contrastive(x)
else:
assert self.attn_pool_type == 'cascade'
pooled = self.attn_pool_contrastive(tokens)
else:
# this is the original OpenCLIP CoCa setup, does not match paper
x = self.attn_pool(x)
x = self.ln_post(x)
pooled, tokens = self._global_pool(x)
elif self.final_ln_after_pool:
pooled, tokens = self._global_pool(x)
pooled = self.ln_post(pooled)
else:
x = self.ln_post(x)
pooled, tokens = self._global_pool(x)
return pooled, tokens
def forward_intermediates(
self,
x: torch.Tensor,
indices: Optional[Union[int, List[int]]] = None,
stop_early: bool = False,
normalize_intermediates: bool = False,
intermediates_only: bool = False,
output_fmt: str = 'NCHW',
output_extra_tokens: bool = False,
) -> Dict[str, Union[torch.Tensor, List[torch.Tensor]]]:
""" Forward features that returns intermediates.
Args:
x: Input image tensor
indices: Take last n blocks if int, all if None, select matching indices if sequence
stop_early: Stop iterating over blocks when last desired intermediate hit
intermediates_only: Only return intermediate features
normalize_intermediates: Apply final norm layer to all intermediates
output_fmt: Shape of intermediate feature outputs
output_extra_tokens: Return both extra prefix class tokens
Returns:
"""
assert output_fmt in ('NCHW', 'NLC'), 'Output format must be one of NCHW or NLC.'
reshape = output_fmt == 'NCHW'
# forward pass
B, _, height, width = x.shape
x = self._embeds(x)
x, intermediates = self.transformer.forward_intermediates(
x,
indices=indices,
stop_early=stop_early,
)
# process intermediates
if normalize_intermediates:
# apply final norm to all intermediates
intermediates = [self.ln_post(xi) for xi in intermediates]
num_prefix_tokens = 1 # one class token that's always there (as of now)
if num_prefix_tokens:
# split prefix (e.g. class, distill) and spatial feature tokens
prefix_tokens = [y[:, 0:num_prefix_tokens] for y in intermediates]
intermediates = [y[:, num_prefix_tokens:] for y in intermediates]
else:
prefix_tokens = None
if reshape:
# reshape to BCHW output format
H, W = height // self.patch_size[0], width // self.patch_size[1]
intermediates = [y.reshape(B, H, W, -1).permute(0, 3, 1, 2).contiguous() for y in intermediates]
output = {'image_intermediates': intermediates}
if prefix_tokens is not None and output_extra_tokens:
output['image_intermediates_prefix'] = prefix_tokens
if intermediates_only:
return output
pooled, _ = self._pool(x)
if self.proj is not None:
pooled = pooled @ self.proj
output['image_features'] = pooled
return output
def prune_intermediate_layers(
self,
indices: Union[int, List[int]] = 1,
prune_norm: bool = False,
prune_head: bool = True,
):
""" Prune layers not required for specified intermediates.
"""
take_indices = self.transformer.prune_intermediate_layers(indices)
if prune_norm:
self.ln_post = nn.Identity()
if prune_head:
self.proj = None
return take_indices
def forward(self, x: torch.Tensor):
x = self._embeds(x)
x = self.transformer(x)
pooled, tokens = self._pool(x)
if self.proj is not None:
pooled = pooled @ self.proj
if self.output_tokens:
return pooled, tokens
return pooled
def text_global_pool(
x: torch.Tensor,
text: Optional[torch.Tensor] = None,
pool_type: str = 'argmax',
eos_token_id: Optional[int] = None,
) -> torch.Tensor:
if pool_type == 'first':
pooled = x[:, 0]
elif pool_type == 'last':
pooled = x[:, -1]
elif pool_type == 'argmax':
# take features from the eot embedding (eot_token is the highest number in each sequence)
assert text is not None
pooled = x[torch.arange(x.shape[0], device=x.device), text.argmax(dim=-1)]
elif pool_type == 'eos':
# take features from tokenizer specific eos
assert text is not None
assert eos_token_id is not None
idx = (text == eos_token_id).int().argmax(dim=-1)
pooled = x[torch.arange(x.shape[0], device=x.device), idx]
else:
pooled = x
return pooled
class TextTransformer(nn.Module):
output_tokens: torch.jit.Final[bool]
def __init__(
self,
context_length: int = 77,
vocab_size: int = 49408,
width: int = 512,
heads: int = 8,
layers: int = 12,
mlp_ratio: float = 4.0,
ls_init_value: float = None,
output_dim: Optional[int] = 512,
embed_cls: bool = False,
no_causal_mask: bool = False,
use_pad_mask: bool = False,
correct_cls_mask: bool = False,
pad_id: int = 0,
eos_id: int = 2,
pool_type: str = 'argmax',
proj_type: str = 'linear',
proj_bias: bool = False,
act_layer: Type[nn.Module] = nn.GELU,
norm_layer: Type[nn.Module] = LayerNorm,
output_tokens: bool = False,
block_type: Optional[str] = None,
qk_norm: bool = False,
scaled_cosine_attn: bool = False,
scale_heads: bool = False,
scale_attn_inner: bool = False,
scale_attn: bool = False,
scale_fc: bool = False,
):
super().__init__()
assert pool_type in ('first', 'last', 'argmax', 'eos', 'none')
self.output_tokens = output_tokens
self.num_pos = self.context_length = context_length
self.vocab_size = vocab_size
self.width = width
self.output_dim = output_dim
self.heads = heads
self.pad_id = pad_id
self.eos_id = eos_id
self.pool_type = pool_type
self.use_pad_mask = use_pad_mask and no_causal_mask # only use in biβdir mode
self.correct_cls_mask = correct_cls_mask # use the correct cls mask for CoCa (original is wrong)
self.token_embedding = nn.Embedding(vocab_size, width)
if embed_cls:
self.cls_emb = nn.Parameter(torch.empty(width))
self.num_pos += 1
else:
self.cls_emb = None
self.positional_embedding = nn.Parameter(torch.empty(self.num_pos, width))
self.transformer = Transformer(
width=width,
layers=layers,
heads=heads,
mlp_ratio=mlp_ratio,
ls_init_value=ls_init_value,
act_layer=act_layer,
norm_layer=norm_layer,
block_type=block_type,
qk_norm=qk_norm,
scaled_cosine_attn=scaled_cosine_attn,
scale_heads=scale_heads,
scale_attn_inner=scale_attn_inner,
scale_attn=scale_attn,
scale_fc=scale_fc,
)
self.ln_final = norm_layer(width)
if no_causal_mask:
self.attn_mask = None # biβdirectional
else:
self.register_buffer('attn_mask', self.build_causal_mask(), persistent=False)
if proj_type == 'none' or not output_dim:
self.text_projection = None
else:
if proj_bias:
self.text_projection = nn.Linear(width, output_dim)
else:
self.text_projection = nn.Parameter(torch.empty(width, output_dim))
self.init_parameters()
def init_parameters(self):
nn.init.normal_(self.token_embedding.weight, std=0.02)
nn.init.normal_(self.positional_embedding, std=0.01)
if self.cls_emb is not None:
nn.init.normal_(self.cls_emb, std=0.01)
proj_std = (self.transformer.width ** -0.5) * ((2 * self.transformer.layers) ** -0.5)
attn_std = self.transformer.width ** -0.5
fc_std = (2 * self.transformer.width) ** -0.5
for block in self.transformer.resblocks:
nn.init.normal_(block.attn.in_proj_weight, std=attn_std)
nn.init.normal_(block.attn.out_proj.weight, std=proj_std)
nn.init.normal_(block.mlp.c_fc.weight, std=fc_std)
nn.init.normal_(block.mlp.c_proj.weight, std=proj_std)
if self.text_projection is not None:
if isinstance(self.text_projection, nn.Linear):
nn.init.normal_(self.text_projection.weight, std=self.transformer.width ** -0.5)
if self.text_projection.bias is not None:
nn.init.zeros_(self.text_projection.bias)
else:
nn.init.normal_(self.text_projection, std=self.transformer.width ** -0.5)
@torch.jit.ignore
def set_grad_checkpointing(self, enable=True):
self.transformer.grad_checkpointing = enable
def lock(self, unlocked_layers: int = 0, freeze_layer_norm: bool = True):
"""
Lock the text transformer layers, optionally leaving some layers unlocked.
Args:
unlocked_layers: Number of layers to leave unlocked (from the end).
freeze_layer_norm: LayerNorm freeze (only for API compatibility, not functional)
"""
assert freeze_layer_norm, 'Unfreezing LayerNorm is not supported. LayerNorm treated like other weights.'
lock_text_tower(self, unlocked_layers)
@torch.jit.ignore
def no_weight_decay(self):
# for timm optimizers, 1d params like logit_scale, logit_bias, ln/bn scale, biases are excluded by default
no_wd = {'positional_embedding'}
if self.cls_emb is not None:
no_wd.add('cls_emb')
return no_wd
def build_causal_mask(self):
# lazily create causal attention mask, with full attention between the tokens
# pytorch uses additive attention mask; fill with -inf
mask = torch.empty(self.num_pos, self.num_pos)
mask.fill_(float("-inf"))
mask.triu_(1) # zero out the lower diagonal
return mask
def _build_additive_mask(
self,
text: torch.Tensor, # [B, L] β original text ids without CLS yet
seq_len: int, # L (+1 if CLS added)
dtype: torch.dtype,
) -> torch.Tensor:
"""
Returns an additive (-inf) mask of shape [B*heads, seq_len, seq_len] that
simultaneously masks padding tokens and (optionally) the CLS token.
"""
valid = text != self.pad_id # [B, L] (True = keep)
if self.cls_emb is not None:
cls_valid = valid.new_ones(valid.size(0), 1) # [B, 1]
# cls mask pos at end if correct or front for incorrect legacy mode in existing CoCa weights
valid = torch.cat([valid, cls_valid] if self.correct_cls_mask else [cls_valid, valid], 1)
# broadcast over query dimension
key_mask = valid.unsqueeze(1).expand(-1, seq_len, -1) # [B, Q, K]
additive = torch.zeros_like(key_mask, dtype=dtype)
additive.masked_fill_(~key_mask, float("-inf"))
additive = additive.repeat_interleave(self.heads, 0) # [B*H, Q, K]
return additive
def _embeds(self, text) -> Tuple[torch.Tensor, Optional[torch.Tensor]]:
cast_dtype = self.transformer.get_cast_dtype()
B, seq_len = text.shape
x = self.token_embedding(text).to(cast_dtype)
# Optional class token (always appended ala CoCa)
if self.cls_emb is not None:
x = torch.cat([x, _expand_token(self.cls_emb, x.size(0))], 1)
seq_len += 1
attn_mask = self.attn_mask # Base causal mask (if any)
# Class + padding additive mask
if self.use_pad_mask or self.cls_emb is not None:
add_mask = self._build_additive_mask(text, seq_len, x.dtype)
if attn_mask is not None:
# Slice the causal mask to match current sequence length
attn_mask = attn_mask[:seq_len, :seq_len].unsqueeze(0) + add_mask
else:
attn_mask = add_mask
x = x + self.positional_embedding[:seq_len].to(cast_dtype)
return x, attn_mask
def forward_intermediates(
self,
text: torch.Tensor,
indices: Optional[Union[int, List[int]]] = None,
stop_early: bool = False,
normalize_intermediates: bool = False,
intermediates_only: bool = False,
output_fmt: str = 'NCHW',
output_extra_tokens: bool = False,
) -> Dict[str, Union[torch.Tensor, List[torch.Tensor]]]:
""" Forward features that returns intermediates.
Args:
text: Input text ids
indices: Take last n blocks if int, all if None, select matching indices if sequence
stop_early: Stop iterating over blocks when last desired intermediate hit
normalize_intermediates: Apply norm layer to all intermediates
intermediates_only: Only return intermediate features
output_fmt: Shape of intermediate feature outputs
output_extra_tokens: Return both prefix and intermediate tokens
Returns:
"""
assert output_fmt in ('NLC',), 'Output format must be NLC.'
# forward pass
x, attn_mask = self._embeds(text)
x, intermediates = self.transformer.forward_intermediates(
x,
attn_mask=attn_mask,
indices=indices,
stop_early=stop_early,
)
# process intermediates
if normalize_intermediates:
# apply final norm to all intermediates
intermediates = [self.ln_final(xi) for xi in intermediates]
output = {}
if self.cls_emb is not None:
seq_intermediates = [xi[:, :-1] for xi in intermediates] # separate concat'd class token from sequence
if output_extra_tokens:
# return suffix class tokens separately
cls_intermediates = [xi[:, -1:] for xi in intermediates]
output['text_intermediates_suffix'] = cls_intermediates
intermediates = seq_intermediates
output['text_intermediates'] = intermediates
if intermediates_only:
return output
if self.cls_emb is not None:
# presence of appended cls embed (CoCa) overrides pool_type, always take last token
pooled = text_global_pool(x, pool_type='last')
pooled = self.ln_final(pooled) # final LN applied after pooling in this case
else:
x = self.ln_final(x)
pooled = text_global_pool(x, text, pool_type=self.pool_type, eos_token_id=getattr(self, "eos_id", None))
if self.text_projection is not None:
if isinstance(self.text_projection, nn.Linear):
pooled = self.text_projection(pooled)
else:
pooled = pooled @ self.text_projection
output['text_features'] = pooled
return output
def prune_intermediate_layers(
self,
indices: Union[int, List[int]] = 1,
prune_norm: bool = False,
prune_head: bool = True,
):
""" Prune layers not required for specified intermediates.
"""
take_indices = self.transformer.prune_intermediate_layers(indices)
if prune_norm:
self.ln_final = nn.Identity()
if prune_head:
self.text_projection = None
return take_indices
def forward(self, text):
x, attn_mask = self._embeds(text)
x = self.transformer(x, attn_mask=attn_mask)
# x.shape = [batch_size, n_ctx, transformer.width]
if self.cls_emb is not None:
# presence of appended cls embed (CoCa) overrides pool_type, always take last token
pooled = text_global_pool(x, pool_type='last')
pooled = self.ln_final(pooled) # final LN applied after pooling in this case
tokens = x[:, :-1]
else:
x = self.ln_final(x)
pooled = text_global_pool(x, text, pool_type=self.pool_type, eos_token_id=getattr(self, "eos_id", None))
tokens = x
if self.text_projection is not None:
if isinstance(self.text_projection, nn.Linear):
pooled = self.text_projection(pooled)
else:
pooled = pooled @ self.text_projection
if self.output_tokens:
return pooled, tokens
return pooled
class MultimodalTransformer(Transformer):
"""Cross-attention based multimodal decoder.
Text and image/biosignals embeddings are kept separate.
Each layer has:
1. Self-attention on text (causal)
2. Cross-attention from text to image/biosignals
"""
def __init__(
self,
width: int,
layers: int,
heads: int,
context_length: int = 77,
mlp_ratio: float = 4.0,
ls_init_value: float = None,
act_layer: Type[nn.Module] = nn.GELU,
norm_layer: Type[nn.Module] = LayerNorm,
output_dim: int = 512,
batch_first: bool = True,
prefix_len: int = 0,
):
super().__init__(
width=width,
layers=layers,
heads=heads,
mlp_ratio=mlp_ratio,
ls_init_value=ls_init_value,
act_layer=act_layer,
norm_layer=norm_layer,
batch_first=batch_first,
)
self.context_length = context_length
self.cross_attn = nn.ModuleList([
ResidualAttentionBlock(
width,
heads,
mlp_ratio,
ls_init_value=ls_init_value,
act_layer=act_layer,
norm_layer=norm_layer,
is_cross_attention=True,
batch_first=batch_first,
)
for _ in range(layers)
])
# Register attention masks based on prefix configuration
self.prefix_len = prefix_len
if prefix_len > 0:
# Pre-build prefix-causal mask for condition tokens + text
prefix_causal_mask = self.build_prefix_causal_mask(prefix_len, context_length)
self.register_buffer('prefix_causal_mask', prefix_causal_mask, persistent=False)
else:
# Only register standard causal mask when not using prefix tokens
self.register_buffer('attn_mask', self.build_attention_mask(), persistent=False)
self.ln_final = norm_layer(width)
self.text_projection = nn.Parameter(torch.empty(width, output_dim))
self.init_parameters()
def init_parameters(self):
proj_std = (self.width ** -0.5) * ((2 * self.layers) ** -0.5)
attn_std = self.width ** -0.5
fc_std = (2 * self.width) ** -0.5
for block in self.resblocks:
nn.init.normal_(block.attn.in_proj_weight, std=attn_std)
nn.init.normal_(block.attn.out_proj.weight, std=proj_std)
nn.init.normal_(block.mlp.c_fc.weight, std=fc_std)
nn.init.normal_(block.mlp.c_proj.weight, std=proj_std)
for block in self.cross_attn:
nn.init.normal_(block.attn.in_proj_weight, std=attn_std)
nn.init.normal_(block.attn.out_proj.weight, std=proj_std)
nn.init.normal_(block.mlp.c_fc.weight, std=fc_std)
nn.init.normal_(block.mlp.c_proj.weight, std=proj_std)
if self.text_projection is not None:
nn.init.normal_(self.text_projection, std=self.width ** -0.5)
def build_attention_mask(self):
# lazily create causal attention mask, with full attention between the tokens
# pytorch uses additive attention mask; fill with -inf
mask = torch.empty(self.context_length, self.context_length)
mask.fill_(float("-inf"))
mask.triu_(1) # zero out the lower diagonal
return mask
# def build_prefix_causal_mask(self, prefix_len: int, text_len: int):
# """Build a prefix-causal attention mask for condition tokens + text.
# Args:
# prefix_len: Length of prefix (condition tokens)
# These tokens receive full bidirectional attention among themselves.
# text_len: Length of text sequence
# These tokens receive causal attention.
# Returns:
# Additive mask of shape (prefix_len + text_len, prefix_len + text_len)
# Where -inf = cannot attend, 0 = can attend
# Attention pattern:
# - Prefix tokens β Prefix tokens: Full bidirectional (can attend)
# - Text tokens β Prefix tokens: Full attention (can attend)
# - Text tokens β Text tokens: Causal attention (only previous tokens)
# - Prefix tokens β Text tokens: Cannot attend (masked)
# """
# total_len = prefix_len + text_len
# mask = torch.zeros(total_len, total_len)
# # Prefix tokens can attend to all prefix tokens (bidirectional)
# # mask[:prefix_len, :prefix_len] remains 0 (can attend)
# # Prefix tokens cannot attend to text tokens
# mask[:prefix_len, prefix_len:] = float("-inf")
# # Text tokens can attend to all prefix tokens
# # mask[prefix_len:, :prefix_len] remains 0 (can attend)
# # Text tokens attend to previous text tokens only (causal)
# text_causal_mask = torch.triu(torch.ones(text_len, text_len), diagonal=1) * float("-inf")
# mask[prefix_len:, prefix_len:] = text_causal_mask
# return mask
def build_prefix_causal_mask(self, prefix_len: int, text_len: int):
"""Additive mask; 0 = attend, NEG = block (fp32 for stability)."""
total_len = prefix_len + text_len
# fp32 on CPU; we'll .to(device) later without changing dtype
mask = torch.zeros(total_len, total_len, dtype=torch.float32)
# large finite negative (safer than -inf for fp16/bf16 kernels)
NEG = -torch.finfo(mask.dtype).max
# Prefix β Text: block
mask[:prefix_len, prefix_len:] = NEG
# Text β Text: causal (block future). Use masked_fill, not 0 * -inf.
tri = torch.triu(torch.ones(text_len, text_len, dtype=torch.bool), diagonal=1)
mask[prefix_len:, prefix_len:].masked_fill_(tri, NEG)
return mask
def forward_intermediates(
self,
x: torch.Tensor,
attn_mask: Optional[torch.Tensor] = None,
indices: Optional[Union[int, List[int]]] = None,
stop_early: bool = False,
):
assert False, "Not currently implemented for MultimodalTransformer w/ xattn"
def forward(self, image_embs, text_embs, condition_embs=None):
"""Forward pass with cross-attention between text and image.
Args:
image_embs: (batch_size, num_image_tokens, width)
text_embs: (batch_size, num_text_tokens, width)
condition_embs: Optional (batch_size, num_condition_tokens, width)
Additional conditioning tokens that will be prepended to text.
These tokens get full bidirectional attention among themselves,
then cross-attend to image embeddings.
Returns:
Text decoder outputs: (batch_size, num_text_tokens, output_dim)
Note: Only text token outputs are returned (condition token outputs are excluded)
"""
# Determine text length before prepending conditions
original_text_len = text_embs.shape[1]
assert original_text_len <= self.context_length, "original_text_len must be less than or equal to context_length"
# Prepend condition tokens to text if provided
if condition_embs is not None:
condition_len = condition_embs.shape[1]
# Safety check: condition_len must not exceed the pre-configured prefix_len
assert condition_len <= self.prefix_len, \
f"condition_len ({condition_len}) exceeds prefix_len ({self.prefix_len})"
text_embs = torch.cat([condition_embs, text_embs], dim=1) # (batch, cond_len + text_len, width)
else:
condition_len = 0
# Get attention mask based on prefix configuration
if self.prefix_len > 0:
# Slice the pre-built prefix-causal mask based on actual condition_len
# The mask is built for (prefix_len + context_length)
# When condition_len < prefix_len, we slice from offset to get the right structure
offset = self.prefix_len - condition_len # How many prefix positions to skip
seq_len = condition_len + original_text_len # Total sequence length
attn_mask = self.prefix_causal_mask[offset:offset+seq_len, offset:offset+seq_len].to(device=text_embs.device)
else:
# Use standard causal mask when prefix_len == 0
seq_len = original_text_len
attn_mask = self.attn_mask[:seq_len, :seq_len].to(device=text_embs.device)
if not self.batch_first:
image_embs = image_embs.permute(1, 0, 2) # NLD -> LND
text_embs = text_embs.permute(1, 0, 2) # NLD -> LND
for resblock, cross_attn in zip(self.resblocks, self.cross_attn):
if self.grad_checkpointing and not torch.jit.is_scripting():
# TODO: handle kwargs https://github.com/pytorch/pytorch/issues/79887#issuecomment-1161758372
text_embs = checkpoint(
resblock, text_embs, None, None, attn_mask, use_reentrant=False)
text_embs = checkpoint(
cross_attn, text_embs, image_embs, image_embs, None, use_reentrant=False)
else:
text_embs = resblock(text_embs, attn_mask=attn_mask)
text_embs = cross_attn(text_embs, k_x=image_embs, v_x=image_embs)
if not self.batch_first:
text_embs = text_embs.permute(1, 0, 2) # LND -> NLD
out = self.ln_final(text_embs)
if self.text_projection is not None:
out = out @ self.text_projection
# Extract only the text portion (skip condition tokens if present)
if condition_len > 0:
out = out[:, condition_len:, :] # (batch, text_len, output_dim)
return out
@torch.jit.ignore
def set_grad_checkpointing(self, enable=True):
self.grad_checkpointing = enable
class ConcatMultimodalTransformer(Transformer):
"""Concatenation-based multimodal decoder.
Concatenates [condition_tokens (optional), image/biosignals_tokens, text_tokens] into a single sequence.
Uses unified self-attention with a prefix-causal mask that allows:
- Condition tokens attend to all condition + image tokens (full bidirectional)
- Image/biosignals tokens attend to all condition + image tokens (full bidirectional)
- Text tokens attend to all condition + image tokens (full attention to prefix)
- Text tokens attend to all previous text tokens (causal)
This enables flexible conditioning where any prefix tokens (condition + image) get full
bidirectional attention, while text maintains causal generation properties.
"""
def __init__(
self,
width: int,
layers: int,
heads: int,
context_length: int = 77,
mlp_ratio: float = 4.0,
ls_init_value: float = None,
act_layer: Type[nn.Module] = nn.GELU,
norm_layer: Type[nn.Module] = LayerNorm,
output_dim: int = 512,
batch_first: bool = True,
prefix_len: int = 0,
):
super().__init__(
width=width,
layers=layers,
heads=heads,
mlp_ratio=mlp_ratio,
ls_init_value=ls_init_value,
act_layer=act_layer,
norm_layer=norm_layer,
batch_first=batch_first,
)
self.context_length = context_length
self.condition_prefix_len = prefix_len # Number of condition tokens (0, 1, or N)
# Pre-register an empty buffer for the attention mask
# Will be populated on first forward pass when image token count is known
self.register_buffer('_cached_attn_mask', torch.empty(0), persistent=False)
self._cached_prefix_len = None # Track the prefix length used to build the cache
# No cross-attention layers needed - uses self-attention only
self.ln_final = norm_layer(width)
self.text_projection = nn.Parameter(torch.empty(width, output_dim))
# self.init_parameters()
def init_parameters(self):
proj_std = (self.width ** -0.5) * ((2 * self.layers) ** -0.5)
attn_std = self.width ** -0.5
fc_std = (2 * self.width) ** -0.5
for block in self.resblocks:
nn.init.normal_(block.attn.in_proj_weight, std=attn_std)
nn.init.normal_(block.attn.out_proj.weight, std=proj_std)
nn.init.normal_(block.mlp.c_fc.weight, std=fc_std)
nn.init.normal_(block.mlp.c_proj.weight, std=proj_std)
if self.text_projection is not None:
nn.init.normal_(self.text_projection, std=self.width ** -0.5)
# def build_prefix_causal_mask(self, prefix_len: int, text_len: int):
# """Build a prefix-causal attention mask.
# Args:
# prefix_len: Length of the prefix (condition + image/biosignals tokens)
# All prefix tokens receive full bidirectional attention among themselves.
# text_len: Length of text sequence
# Returns:
# Additive mask of shape (prefix_len + text_len, prefix_len + text_len)
# Where -inf = cannot attend, 0 = can attend
# Attention pattern:
# - Prefix tokens β Prefix tokens: Full bidirectional (can attend)
# - Text tokens β Prefix tokens: Full attention (can attend)
# - Text tokens β Text tokens: Causal attention (only previous tokens)
# - Prefix tokens β Text tokens: Cannot attend (masked)
# """
# total_len = prefix_len + text_len
# # Start with a float mask of zeros (all positions can attend)
# mask = torch.zeros(total_len, total_len, dtype=torch.float32)
# # Prefix tokens can attend to all prefix tokens (bidirectional)
# # mask[:prefix_len, :prefix_len] remains 0 (can attend)
# # Prefix tokens CANNOT attend to text tokens (CRITICAL FIX)
# mask[:prefix_len, prefix_len:] = float("-inf")
# # Text tokens can attend to all prefix tokens
# # mask[prefix_len:, :prefix_len] remains 0 (can attend)
# # Text tokens attend to previous text tokens only (causal)
# text_causal_mask = torch.triu(torch.ones(text_len, text_len), diagonal=1) * float("-inf")
# mask[prefix_len:, prefix_len:] = text_causal_mask
# return mask
def build_prefix_causal_mask(self, prefix_len: int, text_len: int):
"""Additive mask; 0 = attend, NEG = block (fp32 for stability)."""
total_len = prefix_len + text_len
# build in fp32; move to GPU later with .to(device=...) but DON'T cast dtype
mask = torch.zeros(total_len, total_len, dtype=torch.float32)
# large finite negative (safer than -inf with fp16/bf16 + fused kernels)
NEG = -torch.finfo(mask.dtype).max
# Prefix β Text: block
mask[:prefix_len, prefix_len:] = NEG
# Text β Text: causal (block future). Use masked_fill, not multiply by -inf.
tri = torch.triu(torch.ones(text_len, text_len, dtype=torch.bool), diagonal=1)
mask[prefix_len:, prefix_len:].masked_fill_(tri, NEG)
return mask
def forward_intermediates(
self,
x: torch.Tensor,
attn_mask: Optional[torch.Tensor] = None,
indices: Optional[Union[int, List[int]]] = None,
stop_early: bool = False,
):
assert False, "Not currently implemented for ConcatMultimodalTransformer"
def forward(self, image_embs, text_embs, condition_embs=None):
"""Forward pass with concatenated embeddings.
Args:
image_embs: (batch_size, num_image_tokens, width)
text_embs: (batch_size, num_text_tokens, width)
condition_embs: Optional (batch_size, num_condition_tokens, width)
Additional conditioning tokens that will be prepended before image tokens.
These tokens receive full bidirectional attention like image tokens.
Returns:
Text decoder outputs: (batch_size, num_text_tokens, output_dim)
"""
batch_size = text_embs.shape[0]
text_len = text_embs.shape[1]
# Guard: text length must not exceed context length
assert text_len <= self.context_length, \
f"text_len ({text_len}) must be <= context_length ({self.context_length})"
# Build prefix: [condition_tokens (optional), image_tokens]
# All prefix tokens get full bidirectional attention
if condition_embs is not None:
condition_len = condition_embs.shape[1]
# Safety check: condition_len must not exceed the pre-configured condition_prefix_len
assert condition_len <= self.condition_prefix_len, \
f"condition_len ({condition_len}) exceeds condition_prefix_len ({self.condition_prefix_len})"
prefix = torch.cat([condition_embs, image_embs], dim=1) # (batch, cond_len + img_len, width)
else:
condition_len = 0
prefix = image_embs
prefix_len = prefix.shape[1] # Total prefix length (condition + image tokens)
# Concatenate prefix and text embeddings
x = torch.cat([prefix, text_embs], dim=1) # (batch, prefix_len + text_len, width)
if not self.batch_first:
x = x.permute(1, 0, 2) # NLD -> LND
# Build or retrieve cached prefix-causal attention mask
# Dynamically rebuilds when prefix_len changes (handles variable condition_len or image_len)
if self._cached_prefix_len != prefix_len or self._cached_attn_mask.numel() == 0:
# Build mask for max possible text length (context_length)
mask = self.build_prefix_causal_mask(prefix_len, self.context_length)
# Directly update the buffer (already registered in __init__)
self._cached_attn_mask = mask
self._cached_prefix_len = prefix_len
# Slice cached mask to actual sequence length
seq_len = prefix_len + text_len
attn_mask = self._cached_attn_mask[:seq_len, :seq_len].to(device=x.device)
# Apply transformer layers with unified self-attention
for resblock in self.resblocks:
if self.grad_checkpointing and not torch.jit.is_scripting():
x = checkpoint(resblock, x, None, None, attn_mask, use_reentrant=False)
else:
x = resblock(x, attn_mask=attn_mask)
if not self.batch_first:
x = x.permute(1, 0, 2) # LND -> NLD
# Apply final layer norm
x = self.ln_final(x)
# Extract only the text portion (skip image prefix)
text_output = x[:, prefix_len:, :] # (batch, text_len, width)
# Project to output dimension
if self.text_projection is not None:
text_output = text_output @ self.text_projection
return text_output
@torch.jit.ignore
def set_grad_checkpointing(self, enable=True):
self.grad_checkpointing = enable
def lock_text_tower(
model: nn.Module,
unlocked_layers: int = 0,
):
"""
Lock text tower layers for CLIP models.
Works with both model architectures:
- CustomTextCLIP where text components are in self.text
- Standard CLIP where text components are unpacked as attributes
Args:
model: The CLIP model or TextTransformer module
unlocked_layers: Number of layers to leave unlocked (from the end)
"""
# Determine where to look for text components
if hasattr(model, 'text'):
# CustomTextCLIP or already a TextTransformer with nested structure
text_module = model.text
else:
# Standard CLIP or direct TextTransformer
text_module = model
# Collect text components
text_params = {}
text_params['token_embedding'] = getattr(text_module, 'token_embedding', None)
text_params['positional_embedding'] = getattr(text_module, 'positional_embedding', None)
text_params['cls_emb'] = getattr(text_module, 'cls_emb', None)
text_params['transformer'] = getattr(text_module, 'transformer', None)
text_params['ln_final'] = getattr(text_module, 'ln_final', None)
text_params['text_projection'] = getattr(text_module, 'text_projection', None)
# Filter out None values
text_params = {k: v for k, v in text_params.items() if v is not None}
# Freeze all text parameters first
for module in text_params.values():
if isinstance(module, nn.Parameter):
module.requires_grad = False
elif isinstance(module, nn.Module):
for param in module.parameters():
param.requires_grad = False
if unlocked_layers == 0:
return
# Check if we have transformer blocks to work with
transformer = text_params['transformer']
if not transformer or not hasattr(transformer, 'resblocks'):
return
total_layers = len(transformer.resblocks)
if total_layers == 0:
return
# Build groups for selective unlocking
groups = []
# Group 1: Embeddings
embedding_group = []
for key in ['token_embedding', 'positional_embedding', 'cls_emb']:
if key in text_params:
embedding_group.append(text_params[key])
if embedding_group:
groups.append(embedding_group)
# Group 2-N: Individual transformer blocks (except last)
if total_layers > 1:
for block in transformer.resblocks[:-1]:
groups.append([block])
# Combine last transformer block + final ln as the penultimate group
last_block = [transformer.resblocks[-1]]
if 'ln_final' in text_params:
last_block.append(text_params['ln_final'])
groups.append(last_block)
# The final group is the projection only
if 'text_projection' in text_params:
groups.append([text_params['text_projection']])
# Helper function to unlock parameters
def _unlock(module):
if isinstance(module, Sequence):
for m in module:
_unlock(m)
elif isinstance(module, nn.Parameter):
module.requires_grad = True
elif isinstance(module, nn.Module):
for name, param in module.named_parameters():
param.requires_grad = True
# Unlock the specified number of layer groups from the end
num_groups_to_unlock = min(unlocked_layers, len(groups))
for group in groups[-num_groups_to_unlock:]:
_unlock(group)
|