lint problems fixed.

This commit is contained in:
johnzja 2020-08-11 14:47:53 +08:00
parent 1456a48a0e
commit 70456bbd7c
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
from .fast_scnn import FastSCNN
from .hrnet import HRNet from .hrnet import HRNet
from .resnet import ResNet, ResNetV1c, ResNetV1d from .resnet import ResNet, ResNetV1c, ResNetV1d
from .resnext import ResNeXt from .resnext import ResNeXt
from .fast_scnn import FastSCNN
__all__ = ['ResNet', 'ResNetV1c', 'ResNetV1d', 'ResNeXt', 'HRNet', 'FastSCNN'] __all__ = ['ResNet', 'ResNetV1c', 'ResNetV1d', 'ResNeXt', 'HRNet', 'FastSCNN']

View File

@ -9,7 +9,6 @@ import torch
import torchvision import torchvision
from mmcv.utils.parrots_wrapper import get_build_config from mmcv.utils.parrots_wrapper import get_build_config
import mmseg import mmseg