Author: apalumbo
Date: Fri Mar 27 23:32:10 2015
New Revision: 1669711
URL: http://svn.apache.org/r1669711
Log:
add list of algorithms under algo tab. fixed imports in d-ssvd, d-qr
Modified:
mahout/site/mahout_cms/trunk/content/users/algorithms/d-qr.mdtext
mahout/site/mahout_cms/trunk/content/users/algorithms/d-ssvd.mdtext
mahout/site/mahout_cms/trunk/content/users/basics/algorithms.mdtext
mahout/site/mahout_cms/trunk/templates/standard.html
Modified: mahout/site/mahout_cms/trunk/content/users/algorithms/d-qr.mdtext
URL:
http://svn.apache.org/viewvc/mahout/site/mahout_cms/trunk/content/users/algorithms/d-qr.mdtext?rev=1669711&r1=1669710&r2=1669711&view=diff
==============================================================================
--- mahout/site/mahout_cms/trunk/content/users/algorithms/d-qr.mdtext (original)
+++ mahout/site/mahout_cms/trunk/content/users/algorithms/d-qr.mdtext Fri Mar
27 23:32:10 2015
@@ -38,7 +38,8 @@ Mahout `dqrThin(...)` is implemented in
The scala `dqrThin(...)` method can easily be called in any Spark or H2O
application built with the `math-scala` library and the corresponding `Spark`
or `H2O` engine module as follows:
import org.apache.mahout.math._
- import org.decompsitions._
+ import decompositions._
+ import drm._
val(drmQ, inCoreR) = dqrThin(drma)
Modified: mahout/site/mahout_cms/trunk/content/users/algorithms/d-ssvd.mdtext
URL:
http://svn.apache.org/viewvc/mahout/site/mahout_cms/trunk/content/users/algorithms/d-ssvd.mdtext?rev=1669711&r1=1669710&r2=1669711&view=diff
==============================================================================
--- mahout/site/mahout_cms/trunk/content/users/algorithms/d-ssvd.mdtext
(original)
+++ mahout/site/mahout_cms/trunk/content/users/algorithms/d-ssvd.mdtext Fri Mar
27 23:32:10 2015
@@ -114,7 +114,8 @@ Note: As a side effect of checkpointing,
The scala `dssvd(...)` method can easily be called in any Spark or H2O
application built with the `math-scala` library and the corresponding `Spark`
or `H2O` engine module as follows:
import org.apache.mahout.math._
- import org.decompsitions._
+ import decompositions._
+ import drm._
val(drmU, drmV, s) = dssvd(drma, k = 40, q = 1)
Modified: mahout/site/mahout_cms/trunk/content/users/basics/algorithms.mdtext
URL:
http://svn.apache.org/viewvc/mahout/site/mahout_cms/trunk/content/users/basics/algorithms.mdtext?rev=1669711&r1=1669710&r2=1669711&view=diff
==============================================================================
--- mahout/site/mahout_cms/trunk/content/users/basics/algorithms.mdtext
(original)
+++ mahout/site/mahout_cms/trunk/content/users/basics/algorithms.mdtext Fri Mar
27 23:32:10 2015
@@ -37,9 +37,9 @@ Title: Algorithms
**Dimensionality Reduction** * note: most scala-based dimensionality reduction
algorithms are available through the [Mahout Math-Scala Core Library for all
engines](https://mahout.apache.org/users/sparkbindings/home.html) *||
Singular Value Decomposition | x | x |
[x](http://mahout.apache.org/users/sparkbindings/home.html)
|[x](http://mahout.apache.org/users/sparkbindings/home.html)
Lanczos Algorithm | x | x |
- Stochastic SVD |
[x](https://mahout.apache.org/users/dim-reduction/ssvd.html) |
[x](https://mahout.apache.org/users/dim-reduction/ssvd.html) |
[x](http://mahout.apache.org/users/sparkbindings/home.html) |
[x](http://mahout.apache.org/users/sparkbindings/home.html)
+ Stochastic SVD |
[x](https://mahout.apache.org/users/dim-reduction/ssvd.html) |
[x](https://mahout.apache.org/users/dim-reduction/ssvd.html) |
[x](http://mahout.apache.org/users/algorithms/d-ssvd.html) |
[x](http://mahout.apache.org/users/algorithms/d-ssvd.html)
PCA (via Stochastic SVD) | x | x |
[x](http://mahout.apache.org/users/sparkbindings/home.html)
|[x](http://mahout.apache.org/users/sparkbindings/home.html)
- QR Decomposition | x | x |
[x](http://mahout.apache.org/users/sparkbindings/home.html)
|[x](http://mahout.apache.org/users/sparkbindings/home.html)
+ QR Decomposition | x | x |
[x](http://mahout.apache.org/users/algorithms/d-qr.html)
|[x](http://mahout.apache.org/users/algorithms/d-qr.html)
||
**Topic Models**||
Latent Dirichlet Allocation | x | x |
Modified: mahout/site/mahout_cms/trunk/templates/standard.html
URL:
http://svn.apache.org/viewvc/mahout/site/mahout_cms/trunk/templates/standard.html?rev=1669711&r1=1669710&r2=1669711&view=diff
==============================================================================
--- mahout/site/mahout_cms/trunk/templates/standard.html (original)
+++ mahout/site/mahout_cms/trunk/templates/standard.html Fri Mar 27 23:32:10
2015
@@ -164,7 +164,8 @@
</ul>
</li>
<li class="dropdown"> <a href="#" class="dropdown-toggle"
data-toggle="dropdown">Algorithms<b class="caret"></b></a>
- <ul class="dropdown-menu">
+ <ul class="dropdown-menu">
+ <li><a href="/users/basics/algorithms.html">List of
algorithms</a>
<li class="nav-header">Distributed Matrix Decomposition</li>
<li><a href="/users/algorithms/d-qr.html">Cholesky
QR</a></li>
<li><a href="/users/algorithms/d-ssvd.html">SSVD</a></li>