From 06957e8caa74e896c125f0cc0ac3270ee0914261 Mon Sep 17 00:00:00 2001 From: redwrasse Date: Sun, 29 Nov 2020 18:51:24 -0700 Subject: [PATCH] fix readme fix readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 21e65da67..3e405d64e 100644 --- a/README.md +++ b/README.md @@ -226,7 +226,7 @@ predictions = np.stack(list(map(partial(predict, params), input_batch))) But pushing one example through the network at a time would be slow! It’s better to vectorize the computation, so that at every layer we’re doing matrix-matrix -multiplies rather than matrix-vector multiplies. +multiplication rather than matrix-vector multiplication. The `vmap` function does that transformation for us. That is, if we write