Spaces:
Build error
Build error
File size: 196 Bytes
3ed3379 |
1 2 3 4 5 6 7 8 9 10 |
from typing import overload, Any, Dict
import torch
class ImageLoggerMixin:
@overload
def log_images(self, batch: Any, **kwargs: Dict[str, Any]) -> Dict[str, torch.Tensor]:
...
|