OMG / inference /core /managers /entities.py
Fucius's picture
Upload 422 files
df6c67d verified
raw history blame
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]