Spaces:
Runtime error
Runtime error
File size: 402 Bytes
16aee22 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# -*- coding: utf-8 -*-
# Copyright (c) Facebook, Inc. and its affiliates.
from detectron2.config import CfgNode as CN
def add_maskformer2_video_config(cfg):
# video data
# DataLoader
cfg.INPUT.SAMPLING_FRAME_NUM = 2
cfg.INPUT.SAMPLING_FRAME_RANGE = 20
cfg.INPUT.SAMPLING_FRAME_SHUFFLE = False
cfg.INPUT.AUGMENTATIONS = [] # "brightness", "contrast", "saturation", "rotation"
|