Browse Source
Align output name
Signed-off-by: Jael Gu <mengjia.gu@zilliz.com>
test
1 changed files with
2 additions and
2 deletions
-
timm_image.py
|
@ -70,8 +70,8 @@ class TimmImage(NNOperator): |
|
|
features = global_pool(features) |
|
|
features = global_pool(features) |
|
|
|
|
|
|
|
|
features = features.to('cpu') |
|
|
features = features.to('cpu') |
|
|
feature_vector = features.flatten().detach().numpy() |
|
|
|
|
|
return feature_vector |
|
|
|
|
|
|
|
|
vec = features.flatten().detach().numpy() |
|
|
|
|
|
return vec |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# if __name__ == '__main__': |
|
|
# if __name__ == '__main__': |
|
|