trackio-on-spaces-339606 / typehints.py
abidlabs's picture
abidlabs HF Staff
Upload folder using huggingface_hub
7deb4a3 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