Filipstrozik commited on
Commit
49b27cb
1 Parent(s): 8e9893b

Refactor type aliases in types.py for improved clarity and consistency

Browse files
Files changed (1) hide show
  1. ellipse_rcnn/utils/types.py +5 -6
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
- type ImageTargetTuple = tuple[torch.Tensor, TargetDict] # Tensor shape: (C, H, W)
33
- type CollatedBatchType = tuple[
34
  tuple[torch.Tensor, ...], tuple[TargetDict, ...]
35
  ] # Tensor shape: (C, H, W)
36
- type UncollatedBatchType = list[ImageTargetTuple]
37
 
38
- type EllipseType = torch.Tensor
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):