From 1924a383dd21826531ce98600ac16af6d47067d2 Mon Sep 17 00:00:00 2001 From: Jael Gu Date: Fri, 1 Apr 2022 11:23:31 +0800 Subject: [PATCH] Add example result Signed-off-by: Jael Gu --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9f6453d..b3edd6f 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ dc.glob('./dog.jpg') \ .image_embedding.timm(model_name='resnet50') \ .show() ``` + | [0.052790146, 0.0, 0.0, ...] shape=(2048,) | *Write a same pipeline with explicit inputs/outputs name specifications:* @@ -38,8 +39,8 @@ dc.glob['path']('./dog.jpg') \ .select('vec') \ .to_list() ``` - [array([0. , 0. , 0. , ..., 0. , 0.01748613, - 0. ], dtype=float32)] + [array([0.05279015, 0. , 0. , ..., 0.00239191, 0.06632169, + 0. ], dtype=float32)] ## Factory Constructor