From 156b7c9cdc100f9c1d33e4dbd74d1c29c88259f3 Mon Sep 17 00:00:00 2001 From: Jael Gu Date: Thu, 9 Jun 2022 17:18:33 +0800 Subject: [PATCH] Debug examples Signed-off-by: Jael Gu --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 472fd36..24c97a1 100644 --- a/README.md +++ b/README.md @@ -43,8 +43,8 @@ import towhee .video_decode.ffmpeg['path', 'frames']() .action_classification.pytorchvideo['frames', ('labels', 'scores', 'features')]( model_name='slowfast_r50') - .select['labels', 'scores', 'features']() - .show(formatter={'path':'video_path'}) + .select['path', 'labels', 'scores', 'features']() + .show(formatter={'path': 'video_path'}) ) ```