From b1565c51216c535172de71e648216d82bc5d25fe Mon Sep 17 00:00:00 2001 From: Jael Gu Date: Thu, 4 Aug 2022 14:40:38 +0800 Subject: [PATCH] Update README Signed-off-by: Jael Gu --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d0223d9..e4d5a31 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ As suggested, it is suitable to extract features at high level or warm up a larg ## Code Example -Generate embeddings for the audio "test.wav". +Generate embeddings for the audio "test.wav". *Write the pipeline in simplified style*: @@ -43,6 +43,7 @@ import towhee .audio_decode.ffmpeg['path', 'frames']() .runas_op['frames', 'frames'](func=lambda x:[y[0] for y in x]) .audio_embedding.vggish['frames', 'vecs']() + .select['path', 'vecs']() .show() ) ```