Skip to content
Snippets Groups Projects
Commit e111174b authored by Mathieu Beligon's avatar Mathieu Beligon
Browse files

[common] (roco dset) add enum for roco dsets

parent b06bb3b3
No related branches found
No related tags found
No related merge requests found
from enum import Enum
from research_common.constants import ROCO_DSET_DIR
from research_common.dataset.dataset import Dataset
class ROCODataset(Dataset, Enum):
def __init__(self, competition_name: str):
super().__init__(ROCO_DSET_DIR / competition_name, self.name)
CentralChina = "robomaster_Central China Regional Competition"
NorthChina = "robomaster_North China Regional Competition"
SouthChina = "robomaster_South China Regional Competition"
Final = "robomaster_Final Tournament"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment