fix shop_segmentation to use old timm lib and bump version to 1.9.4rc2

This commit is contained in:
wenmeng.zwm
2023-10-26 19:16:35 +08:00
parent cbb870d128
commit 32d6d02889
2 changed files with 3 additions and 3 deletions

View File

@@ -9,8 +9,8 @@ import numpy as np
import torch
import torch.nn as nn
from mmcv.cnn import ConvModule
from timm.layers.drop import drop_path
from timm.layers.weight_init import trunc_normal_
from timm.models.layers.drop import drop_path
from timm.models.layers.weight_init import trunc_normal_
from .common import Upsample, resize

View File

@@ -1,5 +1,5 @@
# Make sure to modify __release_datetime__ to release time when making official release.
__version__ = '1.9.4rc1'
__version__ = '1.9.4rc2'
# default release datetime for branches under active development is set
# to be a time far-far-away-into-the-future
__release_datetime__ = '2023-10-28 00:00:00'