diff options
author | Jordan Gong <jordan.gong@protonmail.com> | 2020-12-31 21:00:01 +0800 |
---|---|---|
committer | Jordan Gong <jordan.gong@protonmail.com> | 2020-12-31 21:00:01 +0800 |
commit | 86421e899c87976d8559795979415e3fae2bd7ed (patch) | |
tree | c4bfa828da64cc71b43ed12d3fd78be8a8930181 /models/__init__.py | |
parent | 57275a210b93f9ffd30a53e22c3c28f49f228d14 (diff) |
Implement some parts of RGB-GaitPart wrapper
1. Triplet loss function and weight init function haven't been implement yet
2. Tuplize features returned by auto-encoder for later unpack
3. Correct comment error in auto-encoder
4. Swap batch_size dim and time dim in HPM and PartNet in case of redundant transpose
5. Find backbone problems in HPM and disable it temporarily
6. Make feature structure by HPM consistent to that by PartNet
7. Fix average pooling dimension issue and incorrect view change in HP
Diffstat (limited to 'models/__init__.py')
-rw-r--r-- | models/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/models/__init__.py b/models/__init__.py index 3b4d86e..51c86af 100644 --- a/models/__init__.py +++ b/models/__init__.py @@ -1 +1,4 @@ from .model import Model +from .auto_encoder import AutoEncoder +from .hpm import HorizontalPyramidMatching +from .part_net import PartNet |