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 2014/08/20 22:58:09 UTC

svn commit: r919948 - in /websites/staging/mahout/trunk/content: ./ users/sparkbindings/play-with-shell.html

Author: buildbot
Date: Wed Aug 20 20:58:09 2014
New Revision: 919948

Log:
Staging update by buildbot for mahout

Modified:
    websites/staging/mahout/trunk/content/   (props changed)
    websites/staging/mahout/trunk/content/users/sparkbindings/play-with-shell.html

Propchange: websites/staging/mahout/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Wed Aug 20 20:58:09 2014
@@ -1 +1 @@
-1619229
+1619230

Modified: websites/staging/mahout/trunk/content/users/sparkbindings/play-with-shell.html
==============================================================================
--- websites/staging/mahout/trunk/content/users/sparkbindings/play-with-shell.html (original)
+++ websites/staging/mahout/trunk/content/users/sparkbindings/play-with-shell.html Wed Aug 20 20:58:09 2014
@@ -436,7 +436,7 @@ val yFitted = (drmX %*% beta).collect(::
 <p>We put all the commands for ordinary least squares into a function <code>ols</code>. </p>
 <div class="codehilite"><pre>
 def ols(drmX: DrmLike[Int], y: Vector) = 
-  solve(drmX.t %*% drmX, drmX.t %*% y)(::,0)
+  solve(drmX.t %*% drmX, drmX.t %*% y)(::, 0)
 
 </pre></div>