Fucius's picture
Upload 422 files
2eafbc4 verified
raw
history blame contribute delete
No virus
242 Bytes
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]