@@ -117,22 +117,22 @@ class IncrementalPCA(_BasePCA):
117117 Notes
118118 -----
119119 Implements the incremental PCA model from:
120- ` D. Ross, J. Lim, R. Lin, M. Yang, Incremental Learning for Robust Visual
120+ * D. Ross, J. Lim, R. Lin, M. Yang, Incremental Learning for Robust Visual
121121 Tracking, International Journal of Computer Vision, Volume 77, Issue 1-3,
122- pp. 125-141, May 2008.`
122+ pp. 125-141, May 2008.*
123123 See https://www.cs.toronto.edu/~dross/ivt/RossLimLinYang_ijcv.pdf
124124
125125 This model is an extension of the Sequential Karhunen-Loeve Transform from:
126- ` A. Levy and M. Lindenbaum, Sequential Karhunen-Loeve Basis Extraction and
126+ * A. Levy and M. Lindenbaum, Sequential Karhunen-Loeve Basis Extraction and
127127 its Application to Images, IEEE Transactions on Image Processing, Volume 9,
128- Number 8, pp. 1371-1374, August 2000.`
128+ Number 8, pp. 1371-1374, August 2000.*
129129 See https://www.cs.technion.ac.il/~mic/doc/skl-ip.pdf
130130
131131 We have specifically abstained from an optimization used by authors of both
132132 papers, a QR decomposition used in specific situations to reduce the
133133 algorithmic complexity of the SVD. The source for this technique is
134- ` Matrix Computations, Third Edition, G. Holub and C. Van Loan, Chapter 5,
135- section 5.4.4, pp 252-253.` . This technique has been omitted because it is
134+ * Matrix Computations, Third Edition, G. Holub and C. Van Loan, Chapter 5,
135+ section 5.4.4, pp 252-253.* . This technique has been omitted because it is
136136 advantageous only when decomposing a matrix with ``n_samples`` (rows)
137137 >= 5/3 * ``n_features`` (columns), and hurts the readability of the
138138 implemented algorithm. This would be a good opportunity for future
@@ -141,11 +141,11 @@ class IncrementalPCA(_BasePCA):
141141 References
142142 ----------
143143 D. Ross, J. Lim, R. Lin, M. Yang. Incremental Learning for Robust Visual
144- Tracking, International Journal of Computer Vision, Volume 77,
145- Issue 1-3, pp. 125-141, May 2008.
144+ Tracking, International Journal of Computer Vision, Volume 77,
145+ Issue 1-3, pp. 125-141, May 2008.
146146
147147 G. Golub and C. Van Loan. Matrix Computations, Third Edition, Chapter 5,
148- Section 5.4.4, pp. 252-253.
148+ Section 5.4.4, pp. 252-253.
149149
150150 See also
151151 --------
0 commit comments