30 | 31 | ### Download website dependencies 32 | 33 | ```bash 34 | npm install 35 | ``` 36 | 37 | ### Build website contents 38 | 39 | ```bash 40 | gulp 41 | ``` 42 | 43 | If all goes well it open the site in your browser at `http://localhost:3000`. 44 | 45 | ### Troubleshooting 46 | 47 | `Error: spawn jekyll.bat ENOENT` can be resolved by 48 | 49 | ```bash 50 | gem install jekyll 51 | ``` 52 | 53 | If you are still facing the issue, perhaps the discussion 54 | [here](https://github.com/j143/systemds-website/issues/3) might would give some pointers. 55 | 56 |
57 |
65 |
66 | 1. Create a new branch (for example, `update-website`) from the `asf-staging` branch.
67 |
68 | ```bash
69 | git checkout asf-staging
70 | git checkout -b update-website
71 | ```
72 |
73 | 2. Copy the generated files to the website `content` folder.
74 |
75 | ```bash
76 | cp -r _site/* content/
77 | git add content/*
78 | git commit -m "Update SystemDS website with latest changes"
79 | ```
80 |
81 | 3. Add changes to the personal fork and create a PR against `asf-staging` branch.
82 |
83 | ```bash
84 | git push https://github.com/
98 | 99 | 100 | **Step 0: Prerequisites** 101 | 102 | ```sh 103 | git clone https://github.com/apache/systemds 104 | git clone https://github.com/apache/systemds-website 105 | ``` 106 | 107 | **Step 1:** 108 | 109 | generate docs with as per https://github.com/apache/systemds/tree/main/docs 110 | 111 | **1.1. API Documentation** 112 | 113 | ```sh 114 | 115 | # In this case the release tag is 2.1.0-rc3 116 | git checkout 2.1.0-rc3 117 | 118 | cd systemds/docs 119 | 120 | ./updateAPI.sh 121 | ``` 122 | 123 | **1.2. Documentation website** 124 | 125 | ```sh 126 | # Build jekyll based docs 127 | 128 | jekyll serve -w 129 | ``` 130 | 131 | **Step 2:** 132 | 133 | copy the contents to `systemds-website` repo 134 | 135 | ```sh 136 | cd systemds-website 137 | 138 | # create a new directory with release no. 139 | mkdir content/docs/2.1.0 140 | 141 | # copy the files in docs/_site folder to 2.1.0 142 | cp -r ../systemds/docs/_site/* content/docs/2.1.0 143 | ``` 144 | 145 | Then follow, https://github.com/apache/systemds-website#updating-the-website 146 | 147 | **Step 3:** 148 | 149 | Open a PR against `asf-staging` branch. 150 | 151 | > Example PR: https://github.com/apache/systemds-website/pull/94 152 | 153 | Website Preview at https://systemds.staged.apache.org 154 | 155 | **Step 4:** 156 | 157 | Production release via `asf-site` branch. For this approval from the 158 | team is recommended. 159 | 160 | > Example PR: https://github.com/apache/systemds-website/pull/95 161 | 162 | Now, sync `asf-staging` and `asf-site` as: 163 | 164 | ```sh 165 | # apply asf-staging commits onto asf-site 166 | git rebase asf-staging asf-site 167 | 168 | git push origin asf-site 169 | ``` 170 | 171 | > Important: Along with this update project metadata by modifying `release_version:` in 172 | > [_src/_data/project.yml](https://github.com/apache/systemds-website/blob/main/_src/_data/project.yml#L46) 173 | > 174 | > And Update links in the documentation page as 175 | > [`9203626`](https://github.com/apache/systemds-website/commit/9203626f945e11706f36ff6693cd5eda454fe389) 176 | 177 |
178 |x
'; 28 | head.appendChild(div.childNodes[1]); 29 | } 30 | 31 | if ( options ) { 32 | $.extend( settings, options ); 33 | } 34 | 35 | return this.each(function(){ 36 | var selectors = [ 37 | 'iframe[src*="player.vimeo.com"]', 38 | 'iframe[src*="youtube.com"]', 39 | 'iframe[src*="youtube-nocookie.com"]', 40 | 'iframe[src*="kickstarter.com"][src*="video.html"]', 41 | 'object', 42 | 'embed' 43 | ]; 44 | 45 | if (settings.customSelector) { 46 | selectors.push(settings.customSelector); 47 | } 48 | 49 | var ignoreList = '.fitvidsignore'; 50 | 51 | if(settings.ignore) { 52 | ignoreList = ignoreList + ', ' + settings.ignore; 53 | } 54 | 55 | var $allVideos = $(this).find(selectors.join(',')); 56 | $allVideos = $allVideos.not('object object'); // SwfObj conflict patch 57 | $allVideos = $allVideos.not(ignoreList); // Disable FitVids on this video. 58 | 59 | $allVideos.each(function(){ 60 | var $this = $(this); 61 | if($this.parents(ignoreList).length > 0) { 62 | return; // Disable FitVids on this video. 63 | } 64 | if (this.tagName.toLowerCase() === 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; } 65 | if ((!$this.css('height') && !$this.css('width')) && (isNaN($this.attr('height')) || isNaN($this.attr('width')))) 66 | { 67 | $this.attr('height', 9); 68 | $this.attr('width', 16); 69 | } 70 | var height = ( this.tagName.toLowerCase() === 'object' || ($this.attr('height') && !isNaN(parseInt($this.attr('height'), 10))) ) ? parseInt($this.attr('height'), 10) : $this.height(), 71 | width = !isNaN(parseInt($this.attr('width'), 10)) ? parseInt($this.attr('width'), 10) : $this.width(), 72 | aspectRatio = height / width; 73 | if(!$this.attr('name')){ 74 | var videoName = 'fitvid' + $.fn.fitVids._count; 75 | $this.attr('name', videoName); 76 | $.fn.fitVids._count++; 77 | } 78 | $this.wrap('').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+'%'); 79 | $this.removeAttr('height').removeAttr('width'); 80 | }); 81 | }); 82 | }; 83 | 84 | // Internal counter for unique video names. 85 | $.fn.fitVids._count = 0; 86 | 87 | // Works with either jQuery or Zepto 88 | })( window.jQuery || window.Zepto ); 89 | -------------------------------------------------------------------------------- /_src/_scripts/main.js: -------------------------------------------------------------------------------- 1 | console.log('hello main.js'); 2 | 3 | $(document).ready(function() { 4 | 5 | stickyHeader(); 6 | 7 | $(window).resize(function() { 8 | stickyHeader(); 9 | }); 10 | 11 | // Modal Triggers 12 | $('.jq-modal-trigger').click(function(event) { 13 | var el_show = $(this).attr("href"); 14 | $(el_show).fadeIn('slow'); 15 | event.preventDefault(); 16 | hideModal(); 17 | }); 18 | 19 | $('.jq-modal').fitVids(); 20 | 21 | //Call tabs for Install page 22 | $('ul.ml-tabs li').click(function(){ 23 | var tab_id = $(this).attr('data-tab'); 24 | 25 | $('ul.ml-tabs li').removeClass('current'); 26 | $('.tab-content').removeClass('current'); 27 | 28 | $(this).addClass('current'); 29 | $("#"+tab_id).addClass('current'); 30 | }); 31 | 32 | }); 33 | 34 | //End Ready...................................... 35 | 36 | //StickyHeader 37 | function stickyHeader() { 38 | // get height of first two headers 39 | var scrollHeight = 80; 40 | var self = this; 41 | if($( window ).width() > 750) { 42 | 43 | $(window).scroll(function() { 44 | // get current scroll position 45 | var scrollTop = $(this).scrollTop(); 46 | 47 | // if current position > scrollHeight 48 | if (scrollTop > scrollHeight) { 49 | // make fixed and change background color 50 | $('.site-header').addClass('sticky').animate({top: "0"}, 300); 51 | 52 | } else if (scrollTop == 0) { 53 | // unfix and go back to default color 54 | $('.site-header').css('top','-80px').removeClass('sticky'); 55 | } 56 | 57 | }); 58 | 59 | } 60 | } 61 | 62 | // Show Modal 63 | function hideModal() { 64 | $(".jq-close").click(function(event){ 65 | var src = $(this).parent().find('iframe').attr('src'); 66 | $(this).parent().fadeOut('slow'); 67 | $(this).parent().find('iframe').attr('src',''); 68 | $(this).parent().find('iframe').attr('src',src); 69 | event.preventDefault(); 70 | }); 71 | } 72 | -------------------------------------------------------------------------------- /_src/_scripts/pushy.js: -------------------------------------------------------------------------------- 1 | !function(a){function b(){g.hasClass(k)?h.toggleClass(l):h.toggleClass(m)}function c(){g.hasClass(k)?(h.addClass(l),g.animate({left:"0px"},p),i.animate({left:q},p),j.animate({left:q},p)):(h.addClass(m),g.animate({right:"0px"},p),i.animate({right:q},p),j.animate({right:q},p))}function d(){g.hasClass(k)?(h.removeClass(l),g.animate({left:"-"+q},p),i.animate({left:"0px"},p),j.animate({left:"0px"},p)):(h.removeClass(m),g.animate({right:"-"+q},p),i.animate({right:"0px"},p),j.animate({right:"0px"},p))}function e(){a(r).addClass(t),a(r).on("click",function(){var b=a(this);b.hasClass(t)?(a(r).addClass(t).removeClass(s),b.removeClass(t).addClass(s)):b.addClass(t).removeClass(s)})}function f(){a(r).addClass(t),u.children("a").on("click",function(b){b.preventDefault(),a(this).toggleClass(s).next(".pushy-submenu ul").slideToggle(200).end().parent(r).siblings(r).children("a").removeClass(s).next(".pushy-submenu ul").slideUp(200)})}var g=a(".pushy"),h=a("body"),i=a("#container"),j=a(".push"),k="pushy-left",l="pushy-open-left",m="pushy-open-right",n=a(".site-overlay"),o=a(".menu-btn, .pushy-link"),p=200,q=g.width()+"px",r=".pushy-submenu",s="pushy-submenu-open",t="pushy-submenu-closed",u=a(r),v=function(){var a=document.createElement("p"),b=!1,c={webkitTransform:"-webkit-transform",OTransform:"-o-transform",msTransform:"-ms-transform",MozTransform:"-moz-transform",transform:"transform"};document.body.insertBefore(a,null);for(var d in c)void 0!==a.style[d]&&(a.style[d]="translate3d(1px,1px,1px)",b=window.getComputedStyle(a).getPropertyValue(c[d]));return document.body.removeChild(a),void 0!==b&&b.length>0&&"none"!==b}();if(v)g.css({visibility:"visible"}),e(),o.on("click",function(){b()}),n.on("click",function(){b()});else{h.addClass("no-csstransforms3d"),g.hasClass(k)?g.css({left:"-"+q}):g.css({right:"-"+q}),g.css({visibility:"visible"}),i.css({"overflow-x":"hidden"});var w=!1;f(),o.on("click",function(){w?(d(),w=!1):(c(),w=!0)}),n.on("click",function(){w?(d(),w=!1):(c(),w=!0)})}}(jQuery); 2 | -------------------------------------------------------------------------------- /_src/assets/datasets/clickbait/clickbait.7z: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d76f0ea13de1b975385f5632d4b09e78d5fc868637925063d5c98404c83e9b13 3 | size 561715 4 | -------------------------------------------------------------------------------- /_src/assets/datasets/hadoop/native-3.3.4.zip: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33f67a688ca387bd3949373462c5a95d636313531726c4daba71193e0f51d0c6 3 | size 52742946 4 | -------------------------------------------------------------------------------- /_src/assets/datasets/mnist/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8d422c7b0a1c1c79245a5bcf07fe86e33eeafee792b84584aec276f5a2dbc4e6 3 | size 1648877 4 | -------------------------------------------------------------------------------- /_src/assets/datasets/mnist/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f7ae60f92e00ec6debd23a6088c31dbd2371eca3ffa0defaefb259924204aec6 3 | size 4542 4 | -------------------------------------------------------------------------------- /_src/assets/datasets/mnist/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:440fcabf73cc546fa21475e81ea370265605f56be210a4024d2ca8f203523609 3 | size 9912422 4 | -------------------------------------------------------------------------------- /_src/assets/datasets/mnist/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3552534a0a558bbed6aed32b30c495cca23d567ec52cac8be1a0730e8010255c 3 | size 28881 4 | -------------------------------------------------------------------------------- /_src/assets/img/SystemML-logo-white-32-cleaned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/SystemML-logo-white-32-cleaned.png -------------------------------------------------------------------------------- /_src/assets/img/airport-traffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/airport-traffic.png -------------------------------------------------------------------------------- /_src/assets/img/apache-foundation-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/apache-foundation-logo.png -------------------------------------------------------------------------------- /_src/assets/img/apache-incubator-logo-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/apache-incubator-logo-old.png -------------------------------------------------------------------------------- /_src/assets/img/apache-incubator-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/apache-incubator-logo.png -------------------------------------------------------------------------------- /_src/assets/img/apache-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/apache-logo.png -------------------------------------------------------------------------------- /_src/assets/img/automotive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/automotive.png -------------------------------------------------------------------------------- /_src/assets/img/avatars/.metadata/metadata.yml: -------------------------------------------------------------------------------- 1 | --- 2 | ae2015: 3 | etag: '"88e86f61b57d6d3109510ffbc34976bc694b34cb5fc661ec14f94ef023ec592b"' 4 | last_modified: Sat, 02 May 2015 15:01:36 GMT 5 | phaniarnab: 6 | etag: '"06fceca82aba23e83d6c661b3d09b1d81d918f0d83e66c8caad93c948873081b"' 7 | last_modified: Fri, 12 Jul 2024 21:06:09 GMT 8 | asurve: 9 | etag: '"503aeffe134d57975ee975d093338ee2a9268127ccbb9aca5d0b4c06cfa82bc6"' 10 | last_modified: Wed, 28 Oct 2015 17:41:20 GMT 11 | BACtaki: 12 | etag: '"cd95e29deefa0ff63c67b6a1247f90c0f5a9ef3899e04ef376154332ef40d86a"' 13 | last_modified: Sat, 02 May 2015 15:01:36 GMT 14 | bertholdreinwald: 15 | etag: '"8642d7447dd2b2d365bc4acc72f86e4e7db0b902d7da04d40c86299f482e916b"' 16 | last_modified: Sun, 23 Oct 2016 05:37:40 GMT 17 | ywcb00: 18 | etag: '"0405526ff14518ab62d44a56637050ea1592906681464a48911b60bb98f15c22"' 19 | last_modified: Sat, 02 May 2015 15:01:36 GMT 20 | dbtsai: 21 | etag: '"09ff9dc128b12ce2afd5c732390bd0bdb9407fd2fdd9a65da1a2d95603811aa9"' 22 | last_modified: Tue, 10 Jun 2014 22:42:13 GMT 23 | deroneriksson: 24 | etag: '"70b78cfb1cd7a54c2ca8d23081ab84e6dc45a2c666b54a0f01eb4677cd5e8c28"' 25 | last_modified: Wed, 01 Jul 2015 18:42:34 GMT 26 | fmakari: 27 | etag: '"4451d0e84bed47fb139c508e1b5e4a08e051fe45439ae952b67bbdcb87cf0ff2"' 28 | last_modified: Fri, 28 Apr 2017 12:15:44 GMT 29 | fschueler: 30 | etag: 31 | last_modified: Tue, 24 Sep 2013 14:46:00 GMT 32 | frreiss: 33 | etag: '"1674414a6a0c7949af322ba32f28de49d5002a9ff3d6c9f9bc1b2839e2b16a96"' 34 | last_modified: Mon, 24 Jun 2024 20:14:27 GMT 35 | gweidner: 36 | etag: '"cf9f5a2d267c350f1ae7bf681dd20e7354e87ba6fcf7a0ce9f8609432d3bc81e"' 37 | last_modified: Wed, 30 Sep 2015 20:39:05 GMT 38 | EdgarLGB: 39 | etag: '"276581349793b598f5535fa6fe150546aeef0e97b805414cf13ce08953a49140"' 40 | last_modified: Mon, 13 Nov 2017 14:15:06 GMT 41 | hsaputra: 42 | etag: '"9a3fcfa4a9944c4c377376c84f325c3a5795776a6f07ecf05f908e6ab2833919"' 43 | last_modified: Mon, 02 Feb 2015 20:49:52 GMT 44 | holdenk: 45 | etag: 46 | last_modified: Tue, 04 Dec 2012 02:21:02 GMT 47 | j143: 48 | etag: '"56d0b022238cbd3a259721f3aa44bbfa40a45ee9e9e81ba279b1cc04867cff0b"' 49 | last_modified: Fri, 29 Oct 2021 18:24:34 GMT 50 | jkbradley: 51 | etag: '"3235eed8302c7ffd77fd3f32ec3963d193c9cd1fb227045a05894bd9c45a4e47"' 52 | last_modified: Sat, 02 May 2015 15:01:36 GMT 53 | kev-inn: 54 | etag: '"90c32cb4953463f0bb061dce46b4e319c4caf9d8baddb2829d2903da6ce4a4fe"' 55 | last_modified: Mon, 21 Nov 2022 14:52:57 GMT 56 | krishnakalyan3: 57 | etag: '"8d66a63baf5ace0ef349fe9f46d0a9341942c7eee1959b1d3591074ecbbf9a2e"' 58 | last_modified: Sat, 18 Jun 2022 23:27:02 GMT 59 | lresende: 60 | etag: '"ddb2be794e75e36a7003c98a8ba03e18e5ef909102f7ce9f4a3c4dcb23728f8e"' 61 | last_modified: Wed, 09 Dec 2020 04:19:15 GMT 62 | corepointer: 63 | etag: '"dec4d54e940328ea97ca7d39811a8da89ca662b2f9102b95016224563c1c18d3"' 64 | last_modified: Mon, 26 Jun 2023 14:33:55 GMT 65 | mboehm7: 66 | etag: '"b9ad82d205557c7a10af2ed4f2bbb2bc4d8e67b4d863c1cc1323cfb93670c343"' 67 | last_modified: Sun, 09 Aug 2015 20:58:15 GMT 68 | dusenberrymw: 69 | etag: '"8214346a3edb810790c12d4f4b26ca91300c37a7d40724acecf7d3500fa0960f"' 70 | last_modified: Tue, 02 Aug 2016 17:09:50 GMT 71 | nakul02: 72 | etag: '"3a4ee7985ef9fe366e0f3ca4af9d1e2f5bcaf9ebb2b247e1c05f29168fbee4a6"' 73 | last_modified: Fri, 08 Jan 2016 02:21:34 GMT 74 | niketanpansare: 75 | etag: 76 | last_modified: Sun, 15 Jun 2014 16:05:04 GMT 77 | OlgaOvcharenko: 78 | etag: '"870478e44146c49681f269297b5ec813271a55c836d06e7efb24b722a04b5fd6"' 79 | last_modified: Sun, 03 Jan 2021 18:31:42 GMT 80 | pwendell: 81 | etag: '"6ac4d173092d13c36578b3f5e4bed1d461a29113244c19d5e08729597d3a4c2e"' 82 | last_modified: Mon, 14 Sep 2015 21:46:02 GMT 83 | prithvirajsen: 84 | etag: '"e588c1ebcfa09f07e218f024425885c49078b44928e735ef577a04586357d0ae"' 85 | last_modified: Sat, 02 May 2015 15:01:36 GMT 86 | rxin: 87 | etag: '"3afacc3d9641230c1a0b4a0041e3022ef74c996bab569011d30cbb2e78bad917"' 88 | last_modified: Mon, 03 Mar 2025 01:28:38 GMT 89 | Baunsgaard: 90 | etag: '"7f11c27c7e27b0077e5eddfdc9358c1faea74525620d9902299d5d46ae2d5b8c"' 91 | last_modified: Sun, 05 Nov 2023 13:18:42 GMT 92 | shirisht: 93 | etag: '"952fbc91eeff8f58bfdb0cd068c82ed323c7bf8c8fdd1ae21848144d1b0fe225"' 94 | last_modified: Sat, 02 May 2015 15:01:36 GMT 95 | Shafaq-Siddiqi: 96 | etag: '"3e8f6474b0ddf35f090546871e2a462e39cacf4953ffdae996b916f2684f820b"' 97 | last_modified: Sat, 02 May 2015 15:01:36 GMT 98 | mengxr: 99 | etag: '"3024504bf3d26f3e5b0e9b9d7cd094dc23c19d7802aba428c8603e0d8deb526a"' 100 | last_modified: Mon, 16 Feb 2015 21:10:39 GMT 101 | christinadionysio: 102 | etag: '"13a1e9d5a8126011bef43c38b0b218281367f8666ae8309821382084c5c815da"' 103 | last_modified: Tue, 17 Oct 2023 07:36:59 GMT 104 | e-strauss: 105 | etag: '"601f30aebf4cfb879824cb1e7cc4ac95ea4f3abd37ad148ec9f738e46f463162"' 106 | last_modified: Wed, 07 Feb 2024 11:32:50 GMT 107 | -------------------------------------------------------------------------------- /_src/assets/img/avatars/BACtaki.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/BACtaki.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/Baunsgaard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/Baunsgaard.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/EdgarLGB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/EdgarLGB.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/OlgaOvcharenko.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/OlgaOvcharenko.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/Shafaq-Siddiqi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/Shafaq-Siddiqi.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/ae2015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/ae2015.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/asurve.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/asurve.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/bertholdreinwald.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/bertholdreinwald.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/christinadionysio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/christinadionysio.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/corepointer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/corepointer.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/dbtsai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/dbtsai.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/deroneriksson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/deroneriksson.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/dusenberrymw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/dusenberrymw.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/e-strauss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/e-strauss.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/fmakari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/fmakari.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/frreiss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/frreiss.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/fschueler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/fschueler.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/gweidner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/gweidner.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/holdenk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/holdenk.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/hsaputra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/hsaputra.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/j143.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/j143.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/jkbradley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/jkbradley.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/kev-inn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/kev-inn.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/krishnakalyan3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/krishnakalyan3.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/lresende.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/lresende.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/mboehm7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/mboehm7.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/mengxr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/mengxr.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/nakul02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/nakul02.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/niketanpansare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/niketanpansare.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/phaniarnab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/phaniarnab.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/prithvirajsen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/prithvirajsen.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/pwendell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/pwendell.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/rxin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/rxin.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/shirisht.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/shirisht.jpg -------------------------------------------------------------------------------- /_src/assets/img/avatars/ywcb00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/avatars/ywcb00.jpg -------------------------------------------------------------------------------- /_src/assets/img/award.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/award.png -------------------------------------------------------------------------------- /_src/assets/img/award.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 55 | -------------------------------------------------------------------------------- /_src/assets/img/awardLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/awardLeft.png -------------------------------------------------------------------------------- /_src/assets/img/awardRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/awardRight.png -------------------------------------------------------------------------------- /_src/assets/img/databricks-logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_src/assets/img/datasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/datasets.png -------------------------------------------------------------------------------- /_src/assets/img/diagramAnim-v4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/diagramAnim-v4.gif -------------------------------------------------------------------------------- /_src/assets/img/dsx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/dsx-logo.png -------------------------------------------------------------------------------- /_src/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/favicon.png -------------------------------------------------------------------------------- /_src/assets/img/hadoop-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/hadoop-logo.png -------------------------------------------------------------------------------- /_src/assets/img/hero-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/hero-about.png -------------------------------------------------------------------------------- /_src/assets/img/hero-home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/hero-home.jpg -------------------------------------------------------------------------------- /_src/assets/img/hero-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/hero-mobile.png -------------------------------------------------------------------------------- /_src/assets/img/icon-announcment.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | -------------------------------------------------------------------------------- /_src/assets/img/icon-chevron-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | -------------------------------------------------------------------------------- /_src/assets/img/icon-close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_src/assets/img/icon-code.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_src/assets/img/icon-data.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_src/assets/img/icon-math.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_src/assets/img/icon-play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_src/assets/img/icons/icon_github.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_src/assets/img/icons/icon_medium.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_src/assets/img/icons/icon_twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_src/assets/img/icons/icon_youtube.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_src/assets/img/jupyter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/jupyter-logo.png -------------------------------------------------------------------------------- /_src/assets/img/jupyter-logo.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/logo.png -------------------------------------------------------------------------------- /_src/assets/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/mask.png -------------------------------------------------------------------------------- /_src/assets/img/menuicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/menuicon.png -------------------------------------------------------------------------------- /_src/assets/img/mobile-award.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/mobile-award.png -------------------------------------------------------------------------------- /_src/assets/img/play-button.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_src/assets/img/r-logo.svg: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /_src/assets/img/robotTutorial.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/robotTutorial.gif -------------------------------------------------------------------------------- /_src/assets/img/robotTutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/robotTutorial.png -------------------------------------------------------------------------------- /_src/assets/img/robotTutorialSm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/robotTutorialSm.png -------------------------------------------------------------------------------- /_src/assets/img/social-banking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/social-banking.png -------------------------------------------------------------------------------- /_src/assets/img/spark-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/spark-logo.png -------------------------------------------------------------------------------- /_src/assets/img/systemML-logo-white-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/systemML-logo-white-32.png -------------------------------------------------------------------------------- /_src/assets/img/systemML_Diagram.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/systemML_Diagram.gif -------------------------------------------------------------------------------- /_src/assets/img/systemml-juypter-install-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/systemml-juypter-install-2.jpeg -------------------------------------------------------------------------------- /_src/assets/img/systemml-juypter-install.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/systemml-juypter-install.jpeg -------------------------------------------------------------------------------- /_src/assets/img/what-is-systemml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/what-is-systemml.png -------------------------------------------------------------------------------- /_src/assets/img/zeppelin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/img/zeppelin-logo.png -------------------------------------------------------------------------------- /_src/assets/media/hero.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/systemds-website/beedabb595cc16e08b814397cbcb798470cf2d1a/_src/assets/media/hero.mp4 -------------------------------------------------------------------------------- /_src/datasets.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: datasets 3 | title: Dataset catalog 4 | description: The datasets used for working with SystemDS 5 | --- 6 | 7 |{{ dataset.description }}
13 |Documentation such as programming guides, reference guides, and API docs is available for SystemDS below:
39 | Latest 40 | 41 | 3.3.0 42 | ReleaseNotes 43 |each released version of SystemML/DS:
46 |We do not collect any information about your usage of this website 29 | to the best of our knowledge. If there is any info collected, please 30 | let us know. 31 |
32 |29 | The Apache Software Foundation takes a very active stance in eliminating security problems with its projects. 30 | If you have any security concerns regarding Apache SystemDS™, or believe you have uncovered a vulnerability or 31 | potential threat, contact the Apache Security Team at security@apache.org. 33 | Include a description of the issue and try to provide steps to reproduce the problem. 34 | The Apache SystemDS™ Community and the Apache Security Team take security issues very seriously and will 35 | respond. 36 |
37 |38 | Note the general Apache Security mailing address security@apache.org is 39 | private and should be used only for undisclosed vulnerabilities. 40 | Please report any security problems to Apache Security Team before disclosing it publicly. 41 |
42 |43 | The ASF Security team maintains a page with a description of how vulnerabilities and 44 | potential threats are handled. Refer to their security page for more 45 | information. 46 |
47 |