trackio-94758 / typehints.py
saba9's picture
saba9 HF Staff
Upload folder using huggingface_hub
efe734f verified
raw
history blame contribute delete
142 Bytes
from typing import Any, TypedDict
class LogEntry(TypedDict):
project: str
run: str
metrics: dict[str, Any]
step: int | None