Spaces:
Configuration error
Configuration error
File size: 242 Bytes
2eafbc4 | 1 2 3 4 5 6 7 8 9 10 11 12 | from dataclasses import dataclass
from typing import Optional
@dataclass(frozen=True)
class ModelDescription:
model_id: str
task_type: str
batch_size: Optional[int]
input_height: Optional[int]
input_width: Optional[int]
|