Browse Source
Fix post process
Signed-off-by: Jael Gu <mengjia.gu@zilliz.com>
main
1 changed files with
1 additions and
1 deletions
-
timm_image.py
|
@ -128,7 +128,7 @@ class TimmImage(NNOperator): |
|
|
return img |
|
|
return img |
|
|
|
|
|
|
|
|
def post_proc(self, features): |
|
|
def post_proc(self, features): |
|
|
if 'vit' in self.model_name and features.dim() == 3: |
|
|
|
|
|
|
|
|
if features.dim() == 3: |
|
|
features = features[:, 0] |
|
|
features = features[:, 0] |
|
|
if features.dim() == 4: |
|
|
if features.dim() == 4: |
|
|
global_pool = nn.AdaptiveAvgPool2d(1).to(self.device) |
|
|
global_pool = nn.AdaptiveAvgPool2d(1).to(self.device) |
|
|