Repository: incubator-systemml-website
Updated Branches:
  refs/heads/master 53ffe6d3c -> e9dc0b9ed


Update about copy and embed video

Closes #48.


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/commit/e9dc0b9e
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/tree/e9dc0b9e
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/diff/e9dc0b9e

Branch: refs/heads/master
Commit: e9dc0b9ededd446cad599be298085afbcf88f8e1
Parents: 53ffe6d
Author: Jeremy Anderson <jeremyanderson@Jeremys-MacBook-Pro-3.local>
Authored: Wed May 17 11:30:30 2017 -0700
Committer: Deron Eriksson <de...@us.ibm.com>
Committed: Wed May 17 11:30:30 2017 -0700

----------------------------------------------------------------------
 _src/_includes/themes/apache/home.html | 13 ++++++++-----
 _src/_sass/_modules.scss               | 15 +++++++++++++++
 2 files changed, 23 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/blob/e9dc0b9e/_src/_includes/themes/apache/home.html
----------------------------------------------------------------------
diff --git a/_src/_includes/themes/apache/home.html 
b/_src/_includes/themes/apache/home.html
index b568dea..9567f77 100644
--- a/_src/_includes/themes/apache/home.html
+++ b/_src/_includes/themes/apache/home.html
@@ -49,16 +49,19 @@ limitations under the License.
 
 <!-- About -->
 <section class="full-stripe">
-  <div class="ml-container ml-container--vertically-centered 
ml-container--reverse-order">
+  <div class="ml-container ml-container--vertically-top 
ml-container--reverse-order">
     <div class="col col-6 content-group content-group--more-padding">
-      <img src="/assets/img/diagramAnim-v4.gif" alt="What is Apache SystemML?">
+      <!--<img src="/assets/img/diagramAnim-v4.gif" alt="What is Apache 
SystemML?">-->
+      <div class="video-wrapper">
+        <iframe src="https://www.youtube.com/embed/r-kFYkYoD_4"; 
frameborder="0" allowfullscreen></iframe>
+      </div>
     </div>
     <div class="col col-6 content-group content-group--more-padding">
       <!-- bdi tag prevents reverse punctuation when rtl direction property is 
applied -->
       <h2><bdi>What is SystemML?</bdi></h2>
-      <p><bdi>Apache SystemML provides an optimal workplace for machine 
learning using big data.
-        It can be run on top of Apache Spark, where it automatically scales 
your data, line by line,
-        determining whether your code should be run on the driver or an Apache 
Spark cluster.</bdi></p>
+      <p><bdi>Apache SystemML provides declarative, large-scalable machine 
learning and deep learning. Data scientists are able to implement algorithms 
and neural network architectures in a high-level language without knowledge of 
distributed programming or Apache Spark. Depending on data characteristics such 
as data size/shape and data sparsity (dense/sparse), and cluster 
characteristics such as cluster size and memory configurations, SystemML's 
cost-based optimizing compiler automatically generates hybrid runtime execution 
plans that are composed of single-node and distributed operations on a Apache 
Spark cluster for best performance.</bdi></p>
+
+      <p><bdi>Very soon, additional deep learning capabilities will allow for 
importing and running popular neural network architectures and pre-trained 
models from Caffe for training and scoring in SystemML.</bdi></p>
     </div>
   </div>
 </section>

http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/blob/e9dc0b9e/_src/_sass/_modules.scss
----------------------------------------------------------------------
diff --git a/_src/_sass/_modules.scss b/_src/_sass/_modules.scss
index 1c2b46d..c9be210 100644
--- a/_src/_sass/_modules.scss
+++ b/_src/_sass/_modules.scss
@@ -110,3 +110,18 @@
     width: 500px;
   }
 }
+
+//Responsive Video Embed
+.video-wrapper {
+       position: relative;
+       padding-bottom: 56.25%; /* 16:9 */
+       padding-top: 25px;
+       height: 0;
+}
+.video-wrapper iframe {
+       position: absolute;
+       top: 0;
+       left: 0;
+       width: 100%;
+       height: 100%;
+}

Reply via email to