Spaces:
Runtime error
Runtime error
File size: 328 Bytes
54a7220 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# Copyright (c) Facebook, Inc. and its affiliates.
from . import data # register all new datasets
from . import modeling
# config
from .config import add_maskformer2_config
# models
from .maskformer_model import MaskFormer
from .cropformer_model import CropFormer
from .test_time_augmentation import SemanticSegmentorWithTTA
|