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: doc/gettingstarted.txt
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,7 @@ List of Symbols and acronyms
153
153
154
154
* :math:`D`: number of input dimensions.
155
155
* :math:`D_h^{(i)}`: number of hidden units in the :math:`i`-th layer.
156
-
* :math:`f_{\theta}(x)`, :math:`f(x)`: classification function associated with a model :math:`P(Y|x,\theta)`, defined as :math:`argmax_k P(Y=k|x,\theta)`.
156
+
* :math:`f_{\theta}(x)`, :math:`f(x)`: classification function associated with a model :math:`P(Y|x,\theta)`, defined as :math:`{\rm argmax}_k P(Y=k|x,\theta)`.
157
157
Note that we will often drop the :math:`\theta` subscript.
Copy file name to clipboardExpand all lines: doc/intro.txt
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,12 @@
2
2
Deep Learning Tutorials
3
3
=======================
4
4
5
+
Deep Learning is a new area of Machine Learning research, which
6
+
has been introduced with the objective of moving Machine Learning
7
+
closer to one of its original goals: Artificial Intelligence.
8
+
See these course notes for a `brief introduction to Machine Learning for AI <http://www.iro.umontreal.ca/~pift6266/H10/notes/mlintro.html>`_
9
+
and an `introduction to Deep Learning algorithms <http://www.iro.umontreal.ca/~pift6266/H10/notes/deepintro.html>`_.
10
+
5
11
Deep Learning is about learning multiple levels of representation
6
12
and abstraction that help to
7
13
make sense of data such as images, sound, and text.
@@ -12,7 +18,7 @@ For more about deep learning algorithms, see for example:
12
18
- The LISA `public wiki <http://www.iro.umontreal.ca/~lisa/twiki/bin/view.cgi/Public/WebHome>`_ has a `reading list <http://www.iro.umontreal.ca/~lisa/twiki/bin/view.cgi/Public/ReadingOnDeepNetworks>`_ and a `bibliography <http://www.iro.umontreal.ca/~lisa/twiki/bin/view.cgi/Public/DeepNetworksBibliography>`_.
13
19
- Geoff Hinton has `readings <http://www.cs.toronto.edu/~hinton/deeprefs.html>`_ from last year's `NIPS tutorial <http://videolectures.net/jul09_hinton_deeplearn/>`_.
14
20
15
-
These tutorials will introduce you to some of the most important deep learning
21
+
The tutorials presented here will introduce you to some of the most important deep learning
16
22
algorithms and will also show you how to run them using Theano_. Theano is a python library that makes writing deep learning models easy, and gives the option of
0 commit comments