summaryrefslogtreecommitdiff
path: root/models/hpm.py
diff options
context:
space:
mode:
Diffstat (limited to 'models/hpm.py')
-rw-r--r--models/hpm.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/models/hpm.py b/models/hpm.py
index 9879cfb..b49be3a 100644
--- a/models/hpm.py
+++ b/models/hpm.py
@@ -1,3 +1,5 @@
+from typing import Tuple
+
import torch
import torch.nn as nn
@@ -10,7 +12,7 @@ class HorizontalPyramidMatching(nn.Module):
in_channels: int,
out_channels: int = 128,
use_1x1conv: bool = False,
- scales: tuple[int, ...] = (1, 2, 4),
+ scales: Tuple[int, ...] = (1, 2, 4),
use_avg_pool: bool = True,
use_max_pool: bool = False,
**kwargs