Filipstrozik
commited on
Commit
路
49b27cb
1
Parent(s):
8e9893b
Refactor type aliases in types.py for improved clarity and consistency
Browse files
ellipse_rcnn/utils/types.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
-
from typing import TypedDict, NamedTuple
|
2 |
-
|
3 |
import torch
|
4 |
|
5 |
|
@@ -29,13 +28,13 @@ class PredictionDict(TypedDict):
|
|
29 |
ellipse_matrices: torch.Tensor
|
30 |
|
31 |
|
32 |
-
|
33 |
-
|
34 |
tuple[torch.Tensor, ...], tuple[TargetDict, ...]
|
35 |
] # Tensor shape: (C, H, W)
|
36 |
-
|
37 |
|
38 |
-
|
39 |
|
40 |
|
41 |
class EllipseTuple(NamedTuple):
|
|
|
1 |
+
from typing import TypedDict, NamedTuple, TypeAlias
|
|
|
2 |
import torch
|
3 |
|
4 |
|
|
|
28 |
ellipse_matrices: torch.Tensor
|
29 |
|
30 |
|
31 |
+
ImageTargetTuple: TypeAlias = tuple[torch.Tensor, TargetDict] # Tensor shape: (C, H, W)
|
32 |
+
CollatedBatchType: TypeAlias = tuple[
|
33 |
tuple[torch.Tensor, ...], tuple[TargetDict, ...]
|
34 |
] # Tensor shape: (C, H, W)
|
35 |
+
UncollatedBatchType: TypeAlias = list[ImageTargetTuple]
|
36 |
|
37 |
+
EllipseType: TypeAlias = torch.Tensor
|
38 |
|
39 |
|
40 |
class EllipseTuple(NamedTuple):
|