Unverified Commit 249e1a98 authored by Aditya Oke's avatar Aditya Oke Committed by GitHub
Browse files

Remove unused imports (#3639)

parent 88c16391
from collections import OrderedDict from collections import OrderedDict
import torch
from torch import nn from torch import nn
from typing import Dict from typing import Dict
......
import torch import torch
from torch import Tensor from torch import Tensor
from typing import List, Tuple from typing import Tuple
from ._box_convert import _box_cxcywh_to_xyxy, _box_xyxy_to_cxcywh, _box_xywh_to_xyxy, _box_xyxy_to_xywh from ._box_convert import _box_cxcywh_to_xyxy, _box_xyxy_to_cxcywh, _box_xywh_to_xyxy, _box_xyxy_to_xywh
import torchvision import torchvision
from torchvision.extension import _assert_has_ops from torchvision.extension import _assert_has_ops
......
...@@ -3,7 +3,7 @@ from typing import Any, List, Sequence ...@@ -3,7 +3,7 @@ from typing import Any, List, Sequence
import numpy as np import numpy as np
import torch import torch
from PIL import Image, ImageOps, ImageEnhance, ImageFilter, __version__ as PILLOW_VERSION from PIL import Image, ImageOps, ImageEnhance, __version__ as PILLOW_VERSION
try: try:
import accimage import accimage
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment