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
|You see, the deep learning world is moving fast, and new ideas keep on coming.
28
28
|tavolo gathers implementations of these useful ideas from the community (by contribution, from `Kaggle`_ etc.)
29
29
and makes them accessible in a single PyPI hosted package that compliments the `tf.keras`_ module.
30
-
|
31
-
|*Notice: tavolo is developed for TensorFlow 2.0 (right now on pre-release), most modules will work with earlier versions but some won't (like LayerNormalization)*
30
+
32
31
33
32
Documentation
34
33
-------------
@@ -41,8 +40,8 @@ Showcase
41
40
--------
42
41
43
42
|tavolo's API is straightforward and adopting its modules is as easy as it gets.
44
-
|In tavolo, you'll find implementations for basic layers like `LayerNormalization`_ to complex modules like the Transformer's
45
-
`MultiHeadedSelfAttention`_. You'll also find non-layer implementations that can ease development, like the `LearningRateFinder`_.
43
+
|In tavolo, you'll find implementations for basic layers like `PositionalEncoding`_ to complex modules like the Transformer's
44
+
`MultiHeadedAttention`_. You'll also find non-layer implementations that can ease development, like the `LearningRateFinder`_.
46
45
|For example, if we wanted to add head a multi-headed attention mechanism into our model and look for the optimal learning rate, it would look something like:
Copy file name to clipboardExpand all lines: docs/source/index.rst
+3-7Lines changed: 3 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,16 +9,13 @@ Welcome to tavolo's documentation!
9
9
|tavolo gathers implementations of these useful ideas from the community (by contribution, from `Kaggle`_ etc.)
10
10
and makes them accessible in a single PyPI hosted package that compliments the `tf.keras`_ module.
11
11
12
-
.. warning::
13
-
14
-
tavolo is developed for TensorFlow 2.0 (right now on pre-release), most modules will work with earlier versions but some won't (like LayerNormalization)
15
12
16
13
Showcase
17
14
--------
18
15
19
16
|tavolo's API is straightforward and adopting its modules is as easy as it gets.
20
-
|In tavolo, you'll find implementations for basic layers like :ref:`layer_normalization` to complex modules like the Transformer's
21
-
:ref:`multi_headed_self_attention`. You'll also find non-layer implementations that can ease development, like the :ref:`learning_rate_finder`.
17
+
|In tavolo, you'll find implementations for basic layers like :ref:`positional_encoding` to complex modules like the Transformer's
18
+
:ref:`multi_headed_attention`. You'll also find non-layer implementations that can ease development, like the :ref:`learning_rate_finder`.
22
19
|For example, if we wanted to add head a multi-headed attention mechanism into our model and look for the optimal learning rate, it would look something like:
0 commit comments