EasyCV/easycv/datasets/registry.py
Cathy0908 54e9571423
add BEVFormer (#203)
* add BEVFormer and benchmark
2022-10-24 17:20:12 +08:00

9 lines
265 B
Python

# Copyright (c) Alibaba, Inc. and its affiliates.
from easycv.utils.registry import Registry
DATASOURCES = Registry('datasource')
DATASETS = Registry('dataset')
DALIDATASETS = Registry('dalidataset')
PIPELINES = Registry('pipeline')
SAMPLERS = Registry('sampler')