Fix break of 2 years old torchvision installs :/

pull/2033/head
Ross Wightman 2023-11-04 02:32:09 -07:00
parent d3e83a190f
commit 9fab8d8f58
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ from typing import Type
import torch.nn as nn
from .norm import GroupNorm, GroupNorm1, LayerNorm, LayerNorm2d, RmsNorm
from torchvision.ops import FrozenBatchNorm2d
from torchvision.ops.misc import FrozenBatchNorm2d
_NORM_MAP = dict(
batchnorm=nn.BatchNorm2d,