Author: buildbot
Date: Tue Aug 11 22:55:34 2015
New Revision: 961540

Log:
Staging update by buildbot for mahout

Modified:
    websites/staging/mahout/trunk/content/   (props changed)
    websites/staging/mahout/trunk/content/general/release-notes.html

Propchange: websites/staging/mahout/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 11 22:55:34 2015
@@ -1 +1 @@
-1695389
+1695394

Modified: websites/staging/mahout/trunk/content/general/release-notes.html
==============================================================================
--- websites/staging/mahout/trunk/content/general/release-notes.html (original)
+++ websites/staging/mahout/trunk/content/general/release-notes.html Tue Aug 11 
22:55:34 2015
@@ -263,8 +263,52 @@
 
   <div id="content-wrap" class="clearfix">
    <div id="main">
-    <h1 id="release-notes">Release Notes</h1>
-<h4 id="31-may-2015-apache-mahout-0101-released">31 May 2015 - Apache Mahout 
0.10.1 released</h4>
+    <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, 
h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, 
dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="release-notes">Release Notes<a class="headerlink" 
href="#release-notes" title="Permanent link">&para;</a></h1>
+<h4 id="07-august-2015-apache-mahout-0110-released">07 August 2015 - Apache 
Mahout 0.11.0 released<a class="headerlink" 
href="#07-august-2015-apache-mahout-0110-released" title="Permanent 
link">&para;</a></h4>
+<h4 id="06-august-2015-apache-mahout-0102-released">06 August 2015 - Apache 
Mahout 0.10.2 released<a class="headerlink" 
href="#06-august-2015-apache-mahout-0102-released" title="Permanent 
link">&para;</a></h4>
+<p>Highlights include:</p>
+<ul>
+<li>In-core transpose view rewrites. Modifiable transpose views eg. (for (col 
&lt;- a.t) col := 5).</li>
+<li>Performance and parallelization improvements for AB', A'B, A'A spark 
physical operators.</li>
+<li>Optional structural "flavor" abstraction for in-core matrices. In-core 
matrices can now be tagged as e.g. sparse or dense.</li>
+<li>%*% optimization based on matrix flavors.</li>
+<li>In-core ::= sparse assignment functions.</li>
+<li>Assign := optimization (do proper traversal based on matrix flavors, 
similarly to %*%).</li>
+<li>Adding in-place elementwise functional assignment (e.g. mxA := exp <em>, 
mxA ::= exp </em>).</li>
+<li>Distributed and in-core version of simple elementwise analogues of 
scala.math._. for example, for log(x) the convention is dlog(drm), mlog(mx), 
vlog(vec). Unfortunately we cannot overload these functions over what is done 
in scala.math, i.e. scala would not allow log(mx) or log(drm) and log(Double) 
at the same time, mainly because they are being defined in different 
packages.</li>
+<li>Distributed and in-core first and second moment routines. R analogs: 
mean(), colMeans(), rowMeans(), variance(), sd(). By convention, distributed 
versions are prepended by (d) letter: colMeanVars() colMeanStdevs() 
dcolMeanVars() dcolMeanStdevs().</li>
+<li>Distance and squared distance matrix routines. R analog: dist(). Provide 
both squared and non-squared Euclidean distance matrices. By convention, 
distributed versions are prepended by (d) letter: dist(x), sqDist(x), 
dsqDist(x). Also a variation for pair-wise distance matrix of two different 
inputs x and y: sqDist(x,y), dsqDist(x,y). </li>
+<li>DRM row sampling api.</li>
+<li>Distributed performance bug fixes. This relates mostly to (a) matrix 
multiplication deficiencies, and (b) handling parallelism.</li>
+<li>Distributed engine neutral allreduceBlock() operator api for Spark and 
H2O.</li>
+<li>Distributed optimizer operators for elementwise functions. Rewrites 
recognizing e.g. 1+ drmX * dexp(drmX) as a single fused elementwise physical 
operator: elementwiseFunc(f1(f2(drmX)) where f1 = 1 + x and f2 = exp(x).</li>
+<li>More cbind, rbind flavors (e.g. 1 cbind mxX, 1 cbind drmX or the other way 
around) for Spark and H2O.</li>
+<li>Added +=: and *=: operators on vectors.</li>
+<li>Closeable API for broadcast tensors.</li>
+<li>Support for conversion of any type-keyed DRM into ordinally-keyed DRM.</li>
+<li>Scala logging style. </li>
+<li>rowSumsMap() summary for non-int-keyed DRMs.</li>
+<li>elementwise power operator ^ . </li>
+<li>R-like vector concatenation operator. </li>
+<li>In-core functional assignments e.g.: mxA := { (x) =&gt; x * x}. </li>
+<li>Straighten out behavior of Matrix.iterator() and iterateNonEmpty().</li>
+<li>New mutable transposition view for in-core matrices.  In-core matrix 
transpose view. rewrite with mostly two goals in mind: (1) enable mutability, 
e.g. for (col &lt;- mxA.t) col := k (2) translate matrix structural flavor for 
optimizers correctly. i.e. new SparseRowMatrix.t carries on as column-major 
structure.</li>
+<li>Native support for kryo serialization of tensor types.</li>
+<li>Deprecation of the MultiLayerPerceptron, ConcatenateVectorsJob and all 
related classes.</li>
+<li>Deprecation of SparseColumnMatrix.</li>
+</ul>
+<h4 id="31-may-2015-apache-mahout-0101-released">31 May 2015 - Apache Mahout 
0.10.1 released<a class="headerlink" 
href="#31-may-2015-apache-mahout-0101-released" title="Permanent 
link">&para;</a></h4>
 <p>Highlights include:</p>
 <ul>
 <li>Major memory use improvements in  cooccurrence analysis including the 
spark-itemsimilarity driver <a 
href="https://issues.apache.org/jira/browse/MAHOUT-1707";>MAHOUT-1707</a></li>
@@ -273,7 +317,7 @@
 <li>Trim down packages size to &lt; 200MB MAHOUT-1704 and MAHOUT-1706</li>
 <li>Minor testing indicates binary compatibility with Spark 1.3 with the 
exception of the Mahout Shell.</li>
 </ul>
-<h4 id="11-april-2015-apache-mahout-0100-released">11 April 2015 - Apache 
Mahout 0.10.0 released</h4>
+<h4 id="11-april-2015-apache-mahout-0100-released">11 April 2015 - Apache 
Mahout 0.10.0 released<a class="headerlink" 
href="#11-april-2015-apache-mahout-0100-released" title="Permanent 
link">&para;</a></h4>
 <p>Mahout 0.10.0 was a major release, which separates out a ML environment (we 
call Mahout-Samsara) including an 
 extended version of Scala that is largely backend independent but runs fully 
on Spark. The Hadoop MapReduce versions of 
 Mahout algorithms are still maintained but no new MapReduce contributions are 
accepted. From this release onwards 
@@ -301,7 +345,7 @@ contributions must be Mahout Samsara bas
 <li>Distributed and in-core</li>
 </ul>
 <p>Changes in 0.10.0 are detailed <a 
href="https://github.com/apache/mahout/blob/mahout-0.10.0/CHANGELOG";>here</a></p>
-<h4 id="1-february-2014-apache-mahout-09-released">1 February 2014 - Apache 
Mahout 0.9 released</h4>
+<h4 id="1-february-2014-apache-mahout-09-released">1 February 2014 - Apache 
Mahout 0.9 released<a class="headerlink" 
href="#1-february-2014-apache-mahout-09-released" title="Permanent 
link">&para;</a></h4>
 <p><p>Highlights include:</p></p>
 <p><ul>
    <li>New and improved Mahout website based on Apache CMS - <a 
href="https://issues.apache.org/jira/browse/MAHOUT-1245";>MAHOUT-1245</a></li>
@@ -315,7 +359,7 @@ contributions must be Mahout Samsara bas
    <li>Upgrade to Lucene 4.6.1 - <a 
href="https://issues.apache.org/jira/browse/MAHOUT-1364";>MAHOUT-1364</a></li>
   </ul></p>
 <p><p>Changes in 0.9 are detailed <a 
href="http://svn.apache.org/viewvc/mahout/trunk/CHANGELOG?view=markup&pathrev=1563661";>here</a>.</p></p>
-<h4 id="25-july-2013-apache-mahout-08-released">25 July 2013 - Apache Mahout 
0.8 released</h4>
+<h4 id="25-july-2013-apache-mahout-08-released">25 July 2013 - Apache Mahout 
0.8 released<a class="headerlink" 
href="#25-july-2013-apache-mahout-08-released" title="Permanent 
link">&para;</a></h4>
 <p><p>Highlights include:</p></p>
 <p><ul>
     <li>Numerous performance improvements to Vector and Matrix 
implementations, API's and their iterators</li>
@@ -333,7 +377,7 @@ contributions must be Mahout Samsara bas
 </ul>
 
 <p><p>Changes in 0.8 are detailed <a 
href="http://svn.apache.org/viewvc/mahout/trunk/CHANGELOG?revision=1501110&view=markup";>here</a>.</p></p>
-<h4 id="16-june-2012-apache-mahout-07-released">16 June 2012 - Apache Mahout 
0.7 released</h4>
+<h4 id="16-june-2012-apache-mahout-07-released">16 June 2012 - Apache Mahout 
0.7 released<a class="headerlink" 
href="#16-june-2012-apache-mahout-07-released" title="Permanent 
link">&para;</a></h4>
 <p><p>Highlights include:</p></p>
 <p><ul>
     <li>Outlier removal capability in K-Means, Fuzzy K, Canopy and Dirichlet 
Clustering</li>
@@ -344,7 +388,7 @@ contributions must be Mahout Samsara bas
     <li>Many bug fixes, refactorings, and other small improvements</li>
   </ul></p>
 <p><p>Changes in 0.7 are detailed <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310751&version=12319261";>here</a>.</p></p>
-<h4 id="6-feb-2012-apache-mahout-06-released">6 Feb 2012 - Apache Mahout 0.6 
released</h4>
+<h4 id="6-feb-2012-apache-mahout-06-released">6 Feb 2012 - Apache Mahout 0.6 
released<a class="headerlink" href="#6-feb-2012-apache-mahout-06-released" 
title="Permanent link">&para;</a></h4>
 <p><p>Highlights include:</p></p>
 <p><ul>
     <li>Improved Decision Tree performance and added support for regression 
problems</li>
@@ -360,7 +404,7 @@ contributions must be Mahout Samsara bas
     <li>Many bug fixes, refactorings, and other small improvements</li>
   </ul></p>
 <p><p>Changes in 0.6 are detailed <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310751&version=12316364";>here</a>.</p></p>
-<h4 id="past-releases">Past Releases</h4>
+<h4 id="past-releases">Past Releases<a class="headerlink" 
href="#past-releases" title="Permanent link">&para;</a></h4>
 <ul>
 <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12315255&amp;styleName=Text&amp;projectId=12310751&amp;Create=Create&amp;atl_token=A5KQ-2QAV-T4JA-FDED|20f0d06214912accbd47acf2f0a89231ed00a767|lin">Mahout
 0.5</a></li>
 <li><a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12314281&amp;styleName=Text&amp;projectId=12310751&amp;Create=Create&amp;atl_token=A5KQ-2QAV-T4JA-FDED|20f0d06214912accbd47acf2f0a89231ed00a767|lin">Mahout
 0.4</a></li>


Reply via email to