Skip to content

Commit a62a419

Browse files
committed
simplify
1 parent e5fb7bf commit a62a419

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/intro/quickstart.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Modula can be installed using pip:
1515
Functionality
1616
--------------
1717

18-
Modula provides a set of architecture-specific helper functions that get automatically constructed along with the network architecture itself. As an example, let's build a multi-layer perceptron:
18+
Modula provides a set of architecture-specific helper functions that are automatically constructed along with the network architecture itself. As an example, let's build a multi-layer perceptron:
1919

2020
.. code-block:: python
2121
@@ -28,7 +28,7 @@ Modula provides a set of architecture-specific helper functions that get automat
2828
mlp @= ReLU()
2929
mlp @= Linear(256, 784)
3030
31-
mlp.jit() # JIT compiles all the internal methods of the network
31+
mlp.jit() # makes everything run faster
3232
3333
Behind the scenes, Modula builds a function to randomly initialize the weights of the network:
3434

0 commit comments

Comments
 (0)