@@ -62,6 +62,7 @@ Machine Learning
62
62
------------------------------------------------------------
63
63
Machine Learning Basics
64
64
------------------------------------------------------------
65
+
65
66
.. figure :: _img/deeplearning.png
66
67
.. _lrtutorial : docs/source/content/overview/linear-regression.rst
67
68
.. _lrcode : code/overview/linear_regression
@@ -70,24 +71,24 @@ Machine Learning Basics
70
71
.. _overcode : code/overview/overfitting
71
72
72
73
.. _regtutorial : docs/source/content/overview/regularization.rst
73
- .. _ regpython : code/overview/regularization
74
+ .. _ regcode : code/overview/regularization
74
75
75
76
.. _crosstutorial : docs/source/content/overview/crossvalidation.rst
76
- .. _ crosspython : code/overview/cross-validation
77
+ .. _ crosscode : code/overview/cross-validation
77
78
78
79
79
80
80
81
81
82
+--------------------------------------------------------------------+-------------------------------+--------------------------------+
82
83
| Title | Code | Document |
83
84
+====================================================================+===============================+================================+
84
- | Linear Regression | `Python <lrcode _>`_ | `Tutorial <lrtutorial _>`_ |
85
+ | Linear Regression | `Python <lrcode _>`_ | `Tutorial <lrtutorial _>`_ |
85
86
+--------------------------------------------------------------------+-------------------------------+--------------------------------+
86
- | overfitting | `Python <overcode _>`_ | `Tutorial <overtutorial _>`_ |
87
+ | Overfitting / Underfitting | `Python <overcode _>`_ | `Tutorial <overtutorial _>`_ |
87
88
+--------------------------------------------------------------------+-------------------------------+--------------------------------+
88
- | regularization | `Python <regpython _ >`_ | `Tutorial <regtutorial _>`_ |
89
+ | Regularization | `Python <regcode _ >`_ | `Tutorial <regtutorial _>`_ |
89
90
+--------------------------------------------------------------------+-------------------------------+--------------------------------+
90
- | cross-validation | `Python <crosspython _ >`_ | `Tutorial <crosstutorial _>`_ |
91
+ | Cross-Validation | `Python <crosscode _ >`_ | `Tutorial <crosstutorial _>`_ |
91
92
+--------------------------------------------------------------------+-------------------------------+--------------------------------+
92
93
93
94
@@ -109,7 +110,6 @@ Supervised learning
109
110
.. _logisticrdoc : docs/source/content/supervised/logistic_regression.rst
110
111
.. _logisticrcode : supervised/Logistic_Regression/logistic_ex1.py
111
112
112
-
113
113
.. _linearsvmdoc : docs/source/content/supervised/linear_SVM.rst
114
114
.. _linearsvmcode : code/supervised/Linear_SVM/linear_svm.py
115
115
@@ -118,9 +118,9 @@ Supervised learning
118
118
+--------------------------------------------------------------------+-------------------------------+------------------------------+
119
119
| Title | Code | Document |
120
120
+====================================================================+===============================+==============================+
121
- | Decision trees | `Python <dtcode _>`_ | `Tutorial <dtdoc _>`_ |
121
+ | Decision Trees | `Python <dtcode _>`_ | `Tutorial <dtdoc _>`_ |
122
122
+--------------------------------------------------------------------+-------------------------------+------------------------------+
123
- | K-Nearest Neighbor | `Python <knncode _>`_ | `Tutorial <knndoc _>`_ |
123
+ | K-Nearest Neighbors | `Python <knncode _>`_ | `Tutorial <knndoc _>`_ |
124
124
+--------------------------------------------------------------------+-------------------------------+------------------------------+
125
125
| Naive Bayes | `Python <nbcode _>`_ | `Tutorial <nbdoc _>`_ |
126
126
+--------------------------------------------------------------------+-------------------------------+------------------------------+
@@ -141,44 +141,51 @@ Unsupervised learning
141
141
.. _clusteringdoc : docs/source/content/unsupervised/clustering.rst
142
142
.. _clusteringcode : code/unsupervised/Clustering
143
143
144
+ .. _pcadoc : docs/source/content/unsupervised/pca.rst
145
+ .. _pcacode : code/unsupervised/PCA
146
+
144
147
+--------------------------------------------------------------------+-------------------------------+--------------------------------+
145
148
| Title | Code | Document |
146
149
+====================================================================+===============================+================================+
147
- | clustering | `Python <clusteringcode _>`_ | `Tutorial <clusteringdoc _>`_ |
150
+ | Clustering | `Python <clusteringcode _>`_ | `Tutorial <clusteringdoc _>`_ |
148
151
+--------------------------------------------------------------------+-------------------------------+--------------------------------+
149
- | Principal Components Analysis | | |
152
+ | Principal Components Analysis | ` Python < pcacode _>`_ | ` Tutorial < pcadoc _>`_ |
150
153
+--------------------------------------------------------------------+-------------------------------+--------------------------------+
151
154
152
- .. ------------------------------------------------------------
153
- .. Deep Learning
154
- .. ------------------------------------------------------------
155
- ..
156
- .. .. _conganpaper: https://arxiv.org/abs/1411.1784
157
- .. .. _congancode: https://github.com/zhangqianhui/Conditional-GAN
158
- ..
159
- .. .. _photorealpaper: https://arxiv.org/pdf/1609.04802.pdf
160
- .. .. _photorealcode: https://github.com/tensorlayer/srgan
161
- ..
162
- .. .. _im2impaper: https://arxiv.org/abs/1611.07004
163
- .. .. _im2imcode: https://github.com/phillipi/pix2pix
164
- ..
165
- .. .. _vismanpaper: https://arxiv.org/abs/1609.03552
166
- .. .. _vismancode: https://github.com/junyanz/iGAN
167
- ..
168
- ..
169
- ..
170
- ..
171
- .. +--------------------------------------------------------------------+-------------------------------+---------------------------+
172
- .. | Title | Text | Software |
173
- .. +====================================================================+===============================+===========================+
174
- .. | Neural Networks Overview | | |
175
- .. +--------------------------------------------------------------------+-------------------------------+---------------------------+
176
- .. | Convolutional Neural Networks | | |
177
- .. +--------------------------------------------------------------------+-------------------------------+---------------------------+
178
- .. | Recurrent Neural Networks | | |
179
- .. +--------------------------------------------------------------------+-------------------------------+---------------------------+
180
- .. | Autoencoders | | |
181
- .. +--------------------------------------------------------------------+-------------------------------+---------------------------+
155
+
156
+
157
+
158
+ ------------------------------------------------------------
159
+ Deep Learning
160
+ ------------------------------------------------------------
161
+
162
+ .. _conganpaper : https://arxiv.org/abs/1411.1784
163
+ .. _congancode : https://github.com/zhangqianhui/Conditional-GAN
164
+
165
+ .. _photorealpaper : https://arxiv.org/pdf/1609.04802.pdf
166
+ .. _photorealcode : https://github.com/tensorlayer/srgan
167
+
168
+ .. _im2impaper : https://arxiv.org/abs/1611.07004
169
+ .. _im2imcode : https://github.com/phillipi/pix2pix
170
+
171
+ .. _vismanpaper : https://arxiv.org/abs/1609.03552
172
+ .. _vismancode : https://github.com/junyanz/iGAN
173
+
174
+
175
+ .. _cnndoc : docs/source/content/deep_learning/cnn.rst
176
+
177
+
178
+ +--------------------------------------------------------------------+-------------------------------+---------------------------+
179
+ | Title | Code | Document |
180
+ +====================================================================+===============================+===========================+
181
+ | Neural Networks Overview | | |
182
+ +--------------------------------------------------------------------+-------------------------------+---------------------------+
183
+ | Convolutional Neural Networks | | `Tutorial <cnndoc _>`_ |
184
+ +--------------------------------------------------------------------+-------------------------------+---------------------------+
185
+ | Recurrent Neural Networks | | |
186
+ +--------------------------------------------------------------------+-------------------------------+---------------------------+
187
+ | Autoencoders | | |
188
+ +--------------------------------------------------------------------+-------------------------------+---------------------------+
182
189
183
190
184
191
0 commit comments