from dataclasses import dataclass | |
from typing import List, Dict, Union | |
class Model: | |
anchor: List[List[int]] | |
model: Dict[str, List[Dict[str, Union[Dict, List, int]]]] | |
class Config: | |
model: Model | |
from dataclasses import dataclass | |
from typing import List, Dict, Union | |
class Model: | |
anchor: List[List[int]] | |
model: Dict[str, List[Dict[str, Union[Dict, List, int]]]] | |
class Config: | |
model: Model | |