Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/book/layers.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ <h3>What is a Layer?</h3>
<p><a href="./deep-learning-glossary.html#Layer">Layers</a> are the only building
blocks in Leaf. As we will see later on, everything is a layer. Even when
we construct <a href="./deep-learning-glossary.html#Network">networks</a>, we are still just
working with layers composed of smalle layers. This makes the API clean and expressive.</p>
working with layers composed of smaller layers. This makes the API clean and expressive.</p>
<p>A layer is like a function: given an input it computes an output.
It could be some mathematical expression, like Sigmoid, ReLU, or a non-mathematical instruction,
like querying data from a database, logging data, or anything in between.
Expand Down
2 changes: 1 addition & 1 deletion doc/src/layers.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[Layers](./deep-learning-glossary.html#Layer) are the only building
blocks in Leaf. As we will see later on, everything is a layer. Even when
we construct [networks](./deep-learning-glossary.html#Network), we are still just
working with layers composed of smalle layers. This makes the API clean and expressive.
working with layers composed of smaller layers. This makes the API clean and expressive.

A layer is like a function: given an input it computes an output.
It could be some mathematical expression, like Sigmoid, ReLU, or a non-mathematical instruction,
Expand Down