File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 14
14
15
15
"""Tasks package definition."""
16
16
17
- from official .vision .tasks import image_classification
18
- from official .vision .tasks import maskrcnn
19
- from official .vision .tasks import retinanet
20
- from official .vision .tasks import semantic_segmentation
21
- from official .vision .tasks import video_classification
17
+ from official .vision .tasks . image_classification import ImageClassificationTask
18
+ from official .vision .tasks . maskrcnn import MaskRCNNTask
19
+ from official .vision .tasks . retinanet import RetinaNetTask
20
+ from official .vision .tasks . semantic_segmentation import SemanticSegmentationTask
21
+ from official .vision .tasks . video_classification import VideoClassificationTask
Original file line number Diff line number Diff line change 17
17
from official .vision import serving
18
18
from official .vision .modeling import *
19
19
from official .vision .ops import *
20
+ from official .vision .tasks import *
21
+
You can’t perform that action at this time.
0 commit comments