Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix code block formatting in Why MXNet doc page (#16334)
Browse files Browse the repository at this point in the history
Signed-off-by: Serge Panev <[email protected]>
  • Loading branch information
Kh4L authored and wkcn committed Oct 2, 2019
1 parent 1363b5a commit e6e2e2e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/static_site/src/pages/api/faq/why_mxnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ In either case, the dataset typically must be managed by the CPU.
To compute the transformation of a neural network quickly, we need both the parameters and data points to make it into GPU memory. For any example _X_, the parameters _W_ are the same. Moreover the size of the model tends to dwarf the size of an individual example. So we might arrive at the natural insight that parameters should always live on the GPU, even if the dataset itself must live on the CPU or stream in. This prevents IO from becoming the bottleneck during training or inference.

Fortunately, _MXNet_ makes this kind of assignment easy.

```python
import mxnet.ndarray as nd

Expand Down

0 comments on commit e6e2e2e

Please sign in to comment.