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