You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by bu...@apache.org on 2015/04/16 03:09:54 UTC

svn commit: r947813 - in /websites/staging/mahout/trunk/content: ./ users/environment/out-of-core-reference.html

Author: buildbot
Date: Thu Apr 16 01:09:54 2015
New Revision: 947813

Log:
Staging update by buildbot for mahout

Modified:
    websites/staging/mahout/trunk/content/   (props changed)
    websites/staging/mahout/trunk/content/users/environment/out-of-core-reference.html

Propchange: websites/staging/mahout/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Apr 16 01:09:54 2015
@@ -1 +1 @@
-1673983
+1673985

Modified: websites/staging/mahout/trunk/content/users/environment/out-of-core-reference.html
==============================================================================
--- websites/staging/mahout/trunk/content/users/environment/out-of-core-reference.html (original)
+++ websites/staging/mahout/trunk/content/users/environment/out-of-core-reference.html Thu Apr 16 01:09:54 2015
@@ -312,11 +312,11 @@
 <p><strong>Warning: The collection of distributed matrices happens implicitly whenever conversion to an in-core (o.a.m.math.Matrix) type is required. E.g.:</strong></p>
 <div class="codehilite"><pre>val inCoreA: Matrix = ...
 val drmB: DrmLike[Int] =...
-val inCoreC: Matrix = inCoreA %*% drmB
+val inCoreC: Matrix = inCoreA %*%: drmB
 </pre></div>
 
 
-<p><strong>implies (incoreA %*% drmB).collect</strong></p>
+<p><strong>implies (incoreA %*%: drmB).collect</strong></p>
 <p>Collecting to (HD)FS as a Mahout's DRM formatted file:</p>
 <div class="codehilite"><pre><span class="n">A</span><span class="p">.</span><span class="n">dfsWrite</span><span class="p">(</span><span class="n">path</span> <span class="p">=</span> <span class="n">hdfsPath</span><span class="p">)</span>
 </pre></div>