You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/intro/quickstart.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Modula can be installed using pip:
15
15
Functionality
16
16
--------------
17
17
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:
19
19
20
20
.. code-block:: python
21
21
@@ -28,7 +28,7 @@ Modula provides a set of architecture-specific helper functions that get automat
28
28
mlp @= ReLU()
29
29
mlp @= Linear(256, 784)
30
30
31
-
mlp.jit() #JIT compiles all the internal methods of the network
31
+
mlp.jit() #makes everything run faster
32
32
33
33
Behind the scenes, Modula builds a function to randomly initialize the weights of the network:
0 commit comments