Browse Source
Fix image mode issue
Signed-off-by: Jael Gu <mengjia.gu@zilliz.com>
main
1 changed files with
3 additions and
2 deletions
-
benchmark/run.py
|
@ -49,8 +49,9 @@ query_data = query_data[:query_size] if query_size else query_data |
|
|
# Warm up |
|
|
# Warm up |
|
|
print('Warming up...') |
|
|
print('Warming up...') |
|
|
op = ops.image_embedding.timm(model_name=model_name, device=device).get_op() |
|
|
op = ops.image_embedding.timm(model_name=model_name, device=device).get_op() |
|
|
dummy_input = numpy.random.randn(op.config['input_size'][0]) |
|
|
|
|
|
dim = op(dummy_input).shape[0] |
|
|
|
|
|
|
|
|
dim = towhee.glob('https://raw.githubusercontent.com/towhee-io/towhee/main/towhee_logo.png') \ |
|
|
|
|
|
.image_decode() \ |
|
|
|
|
|
.image_embedding.timm(model_name=model_name, device=device)[0].shape[0] |
|
|
print(f'output dim: {dim}') |
|
|
print(f'output dim: {dim}') |
|
|
|
|
|
|
|
|
# Prepare Milvus |
|
|
# Prepare Milvus |
|
|