From bba8d9c3f2547fdb8052bbc09e7a9b9f1d02c9d2 Mon Sep 17 00:00:00 2001 From: Zhaofeng Miao <522856232@qq.com> Date: Fri, 28 May 2021 12:09:38 +0800 Subject: [PATCH] docs(cookbook): fix two typos in the executor part (#2494) --- .github/2.0/cookbooks/Executor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/2.0/cookbooks/Executor.md b/.github/2.0/cookbooks/Executor.md index f27da131e7bc1..44140e831caf1 100644 --- a/.github/2.0/cookbooks/Executor.md +++ b/.github/2.0/cookbooks/Executor.md @@ -548,7 +548,7 @@ by [fastai](https://github.com/fastai/fastai). The `encode` function of this executor generates a feature vector for each image in each `Document` of the input `DocumentArray`. The feature vector generated is the output activations of the neural network (a vector of 1000 -components). Note the embedding of each text is perfomed in a joined operation (all embeddings are creted for all images +components). Note the embedding of each text is performed in a joined operation (all embeddings are created for all images in a single function call) to achieve higher performance. As a result each `Document` in the input `DocumentArray` _docs_ will have an `embedding` after `encode()` has