YOLO / config /config.py
henry000's picture
πŸ› [Fix] Fix the bug of using hydra
7c6ce21
raw
history blame
231 Bytes
from dataclasses import dataclass
from typing import List, Dict, Union
@dataclass
class Model:
anchor: List[List[int]]
model: Dict[str, List[Dict[str, Union[Dict, List, int]]]]
@dataclass
class Config:
model: Model