Spaces:
Runtime error
Runtime error
File size: 376 Bytes
16aee22 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# Copyright (c) Facebook, Inc. and its affiliates.
from . import modeling
# config
from .config import add_maskformer2_video_config
# models
from .video_maskformer_model import VideoMaskFormer
# video
from .data_video import (
YTVISDatasetMapper,
YTVISEvaluator,
build_detection_train_loader,
build_detection_test_loader,
get_detection_dataset_dicts,
)
|