From 56d0fd9808a0d9c7a82dd8bbad50e6b75989f2d5 Mon Sep 17 00:00:00 2001 From: wxywb Date: Wed, 15 Feb 2023 10:26:36 +0800 Subject: [PATCH] fix the readme. Signed-off-by: wxywb --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 82e199a..868a0ad 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ Get a list of all supported model names or supported model names for specified m from towhee import ops -op = towhee.ops.image_text_embedding.clip(model_name='clip_vit_base_patch16', modality='image').get_op() +op = ops.image_text_embedding.clip(model_name='clip_vit_base_patch16', modality='image').get_op() full_list = op.supported_model_names() onnx_list = op.supported_model_names(format='onnx') print(f'Onnx-support/Total Models: {len(onnx_list)}/{len(full_list)}')