Spaces:
Running
Running
File size: 190 Bytes
863856d |
1 2 3 4 5 6 7 8 |
from pydantic import BaseModel, Field
class Device(BaseModel):
memory_size: int = Field(alias="memorySize")
memory_bandwidth: float = Field(alias="memoryBandwidth")
FLOPS: str
|