summaryrefslogtreecommitdiff
path: root/test/hpm.py
diff options
context:
space:
mode:
authorJordan Gong <jordan.gong@protonmail.com>2021-01-07 18:37:43 +0800
committerJordan Gong <jordan.gong@protonmail.com>2021-01-07 18:37:43 +0800
commit4a284084c253b9114fc02e1782962556ff113761 (patch)
treed6ceff8da68b224186d84772ee6153353675bcfe /test/hpm.py
parenta27af5dfd58e7b48cf3bd063fa2b4b51ed1e0277 (diff)
Add typical training script and some bug fixes
1. Resolve deprecated scheduler stepping issue 2. Make losses in the same scale(replace mean with sum in separate triplet loss, enlarge pose similarity loss 10x) 3. Add ReLU when compute distance in triplet loss 4. Remove classes except Model from `models` package init
Diffstat (limited to 'test/hpm.py')
-rw-r--r--test/hpm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hpm.py b/test/hpm.py
index a68337d..0aefbb8 100644
--- a/test/hpm.py
+++ b/test/hpm.py
@@ -1,6 +1,6 @@
import torch
-from models import HorizontalPyramidMatching
+from models.hpm import HorizontalPyramidMatching
T, N, C, H, W = 15, 4, 256, 32, 16