Skip to content

Commit 0d9ced2

Browse files
author
Prasanna
committed
webpage updates
1 parent f40910d commit 0d9ced2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+2787
-7
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ __pycache__/
33
*.py[cod]
44
*$py.class
55

6+
.DS_Store
7+
68
# C extensions
79
*.so
810

config.toml

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1-
baseURL = "http://example.org/"
1+
baseURL = "https://distributed-training-workshop.go-aws.com"
22
languageCode = "en-us"
3-
title = "My New Hugo Site"
3+
defaultContentLanguage = "en"
4+
title = "Distributed training with Amazon SageMaker / Amazon EKS Workshop"
5+
theme = "learn"
6+
uglyurls = true
7+
#googleAnalytics = "UA-129511631-1"
8+
sectionPagesMenu = "main"
9+
pygmentsCodeFences = true
10+
11+
[blackfriday]
12+
hrefTargetBlank = true
13+
14+
[params]
15+
themeVariant = "mine"
16+
showVisitedLinks = false
17+
author = "Shashank Prasanna"
18+
description = "Distributed training workshop with Amazon SageMaker and Amazon EKS"
19+
disableSearch = false
20+
disableAssetsBusting = false
21+
disableLanguageSwitchingButton = true
22+
disableShortcutsTitle=true
23+
24+
[[menu.shortcuts]]
25+
name = "<i class='fab fa-twitter fa-lg'></i> @shshnkp"
26+
identifier = "tw"
27+
url = "https://twitter.com/shshnkp"
28+
weight = 1
29+
30+
[outputs]
31+
home = [ "HTML", "AMP", "RSS", "JSON"]
32+
page = [ "HTML", "AMP"]

content/_index.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,17 @@ chapter: true
44
weight: 1
55
---
66

7-
## Large-scale distributed training on AWS
8-
9-
### TensorFlow World 2019 - TensorFlow on AWS Workshop
10-
7+
## TensorFlow on AWS Workshop at TensorFlow World 2019
118
<p style='text-align: left;'>
12-
Welcome!
9+
Welcome to the Distributed training with TensorFlow models on Amazon SageMaker and Amazon Elastic Container Service for Kubernetes (EKS) workshop
10+
11+
At the end of this workshop, you'll be able to:
1312
</p>
13+
14+
* Identify when to consider distributed training
15+
* Describe different approaches to distributed training
16+
* Outline libraries and tools needed for distributing training workloads on large clusters
17+
* Demonstrate code changes required to go from single-GPU to multi-GPU distributed training
18+
* Demonstrate using Amazon SageMaker and Amazon EKS to run distributed training jobs
19+
* Apply these skills to your own deep learning problem
20+

content/eks_dist_training/_index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
+++
2+
title = "Distributed Training with Amazon EKS"
3+
date = 2019-10-21T13:21:28-07:00
4+
weight = 3
5+
chapter = true
6+
pre = "<b>2. </b>"
7+
+++
8+
9+
### Chapter X
10+
11+
# Some Chapter title
12+
13+
Lorem Ipsum.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
+++
2+
title = "Distributed Training with Amazon Sagemaker"
3+
date = 2019-10-21T13:21:01-07:00
4+
weight = 2
5+
chapter = true
6+
pre = "<b>1. </b>"
7+
+++
8+
9+
### Chapter X
10+
11+
# Some Chapter title
12+
13+
Lorem Ipsum.

content/setup/_index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
+++
2+
title = "Setup Development Environment"
3+
date = 2019-10-21T13:30:44-07:00
4+
weight = 1
5+
chapter = true
6+
pre = "<b>0. </b>"
7+
+++
8+
9+
### Chapter X
10+
11+
# Some Chapter title
12+
13+
Lorem Ipsum.

layouts/partials/custom-footer.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{ template "_internal/google_analytics.html" . }}

layouts/partials/header.html

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
<!DOCTYPE html>
2+
<html class="no-js" lang="en-US" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
3+
<html lang="{{ .Page.Language | default "en" }}" class="js csstransforms3d">
4+
<head>
5+
<meta charset="utf-8">
6+
<meta property="og:title" content="Distributed Training Workshop" />
7+
<meta property="og:type" content="website" />
8+
<meta property="og:url" content="https://distributed-training-workshop.go-aws.com" />
9+
<meta property="og:image" content="https://distributed-training-workshop.go-aws.com/images/architecture.png" />
10+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
11+
{{ .Hugo.Generator }}
12+
{{ partial "meta.html" . }}
13+
{{ partial "favicon.html" . }}
14+
<title>{{ .Title }} :: {{ .Site.Title }}</title>
15+
16+
{{ $assetBusting := not .Site.Params.disableAssetsBusting }}
17+
<link href="{{"css/nucleus.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
18+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
19+
<link href="{{"css/hybrid.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
20+
<link href="{{"css/featherlight.min.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
21+
<link href="{{"css/perfect-scrollbar.min.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
22+
<link href="{{"css/auto-complete.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
23+
<link href="{{"css/theme.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
24+
<link href="{{"css/hugo-theme.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
25+
{{with .Site.Params.themeVariant}}
26+
<link href="{{(printf "css/theme-%s.css" .) | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
27+
{{end}}
28+
29+
<link href="{{"css/jquery-ui.min.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
30+
<link href="{{"css/jquery-ui.structure.min.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
31+
<link href="{{"css/jquery-ui.theme.min.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet">
32+
<script src="{{"js/jquery-2.x.min.js"| relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}"></script>
33+
<script src="{{"js/jquery-ui.min.js"| relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}"></script>
34+
<script src="{{"js/tabs.js"| relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}"></script>
35+
36+
<style type="text/css">
37+
:root #header + #content > #left > #rlblock_left{
38+
display:none !important;
39+
}
40+
{{ if .Site.Params.disableInlineCopyToClipBoard }}
41+
:not(pre) > code + span.copy-to-clipboard {
42+
display: none;
43+
}
44+
{{ end }}
45+
</style>
46+
{{ partial "custom-header.html" . }}
47+
</head>
48+
<body class="" data-url="{{ .RelPermalink }}">
49+
{{ partial "menu.html" . }}
50+
<section id="body">
51+
<div id="overlay"></div>
52+
<div class="padding highlightable">
53+
{{if not .IsHome}}
54+
<div>
55+
<div id="top-bar">
56+
{{ if and (or .IsPage .IsSection) .Site.Params.editURL }}
57+
{{ $File := .File }}
58+
{{ $Site := .Site }}
59+
{{with $File.Path }}
60+
<div id="top-github-link">
61+
<a class="github-link" title='{{T "Edit-this-page"}}' href="{{ $Site.Params.editURL }}{{ replace $File.Dir "\\" "/" }}{{ $File.LogicalName }}" target="blank">
62+
<i class="fa fa-code-fork"></i>
63+
<span id="top-github-link-text">{{T "Edit-this-page"}}</span>
64+
</a>
65+
</div>
66+
{{ end }}
67+
{{ end }}
68+
{{$toc := (and (not .Params.disableToc) (not .Params.chapter))}}
69+
<div id="breadcrumbs" itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb">
70+
<span id="sidebar-toggle-span">
71+
<a href="#" id="sidebar-toggle" data-sidebar-toggle="">
72+
<i class="fa fa-bars"></i>
73+
</a>
74+
</span>
75+
{{ if $toc }}
76+
<span id="toc-menu"><i class="fa fa-list-alt"></i></span>
77+
{{ end }}
78+
<span class="links">
79+
{{ template "breadcrumb" dict "page" . "value" .Title }}
80+
</span>
81+
</div>
82+
{{ if $toc }}
83+
{{ partial "toc.html" . }}
84+
{{ end }}
85+
</div>
86+
</div>
87+
{{ end }}
88+
89+
{{ if .Params.chapter }}
90+
<div id="chapter">
91+
{{ end }}
92+
<div id="body-inner">
93+
{{if and (not .IsHome) (not .Params.chapter) }}
94+
<h1>{{.Title}}</h1>
95+
{{end}}
96+
97+
{{define "breadcrumb"}}
98+
{{$parent := .page.Parent }}
99+
{{ if $parent }}
100+
{{ $value := (printf "<a href='%s'>%s</a> > %s" $parent.URL $parent.Title .value) }}
101+
{{ template "breadcrumb" dict "page" $parent "value" $value }}
102+
{{else}}
103+
{{.value|safeHTML}}
104+
{{end}}
105+
{{end}}

layouts/partials/logo.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<a href="/" title="Go home"><svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 30" width="60%" style="padding:20px 0px;"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#f90;fill-rule:evenodd;}</style></defs><title>AWS-Logo_White-Color</title><path class="cls-1" d="M14.09,10.85a4.7,4.7,0,0,0,.19,1.48,7.73,7.73,0,0,0,.54,1.19.77.77,0,0,1,.12.38.64.64,0,0,1-.32.49l-1,.7a.83.83,0,0,1-.44.15.69.69,0,0,1-.49-.23,3.8,3.8,0,0,1-.6-.77q-.25-.42-.51-1a6.14,6.14,0,0,1-4.89,2.3,4.54,4.54,0,0,1-3.32-1.19,4.27,4.27,0,0,1-1.22-3.2A4.28,4.28,0,0,1,3.61,7.75,6.06,6.06,0,0,1,7.69,6.46a12.47,12.47,0,0,1,1.76.13q.92.13,1.91.36V5.73a3.65,3.65,0,0,0-.79-2.66A3.81,3.81,0,0,0,7.86,2.3a7.71,7.71,0,0,0-1.79.22,12.78,12.78,0,0,0-1.79.57,4.55,4.55,0,0,1-.58.22l-.26,0q-.35,0-.35-.52V2a1.09,1.09,0,0,1,.12-.58,1.2,1.2,0,0,1,.47-.35A10.88,10.88,0,0,1,5.77.32,10.19,10.19,0,0,1,8.36,0a6,6,0,0,1,4.35,1.35,5.49,5.49,0,0,1,1.38,4.09ZM7.34,13.38a5.36,5.36,0,0,0,1.72-.31A3.63,3.63,0,0,0,10.63,12,2.62,2.62,0,0,0,11.19,11a5.63,5.63,0,0,0,.16-1.44v-.7a14.35,14.35,0,0,0-1.53-.28,12.37,12.37,0,0,0-1.56-.1,3.84,3.84,0,0,0-2.47.67A2.34,2.34,0,0,0,5,11a2.35,2.35,0,0,0,.61,1.76A2.4,2.4,0,0,0,7.34,13.38Zm13.35,1.8a1,1,0,0,1-.64-.16,1.3,1.3,0,0,1-.35-.65L15.81,1.51a3,3,0,0,1-.15-.67.36.36,0,0,1,.41-.41H17.7a1,1,0,0,1,.65.16,1.4,1.4,0,0,1,.33.65l2.79,11,2.59-11A1.17,1.17,0,0,1,24.39.6a1.1,1.1,0,0,1,.67-.16H26.4a1.1,1.1,0,0,1,.67.16,1.17,1.17,0,0,1,.32.65L30,12.39,32.88,1.25A1.39,1.39,0,0,1,33.22.6a1,1,0,0,1,.65-.16h1.54a.36.36,0,0,1,.41.41,1.36,1.36,0,0,1,0,.26,3.64,3.64,0,0,1-.12.41l-4,12.86a1.3,1.3,0,0,1-.35.65,1,1,0,0,1-.64.16H29.25a1,1,0,0,1-.67-.17,1.26,1.26,0,0,1-.32-.67L25.67,3.64,23.11,14.34a1.26,1.26,0,0,1-.32.67,1,1,0,0,1-.67.17Zm21.36.44a11.28,11.28,0,0,1-2.56-.29,7.44,7.44,0,0,1-1.92-.67,1,1,0,0,1-.61-.93v-.84q0-.52.38-.52a.9.9,0,0,1,.31.06l.42.17a8.77,8.77,0,0,0,1.83.58,9.78,9.78,0,0,0,2,.2,4.48,4.48,0,0,0,2.43-.55,1.76,1.76,0,0,0,.86-1.57,1.61,1.61,0,0,0-.45-1.16A4.29,4.29,0,0,0,43,9.22l-2.41-.76A5.15,5.15,0,0,1,38,6.78a3.94,3.94,0,0,1-.83-2.41,3.7,3.7,0,0,1,.45-1.85,4.47,4.47,0,0,1,1.19-1.37A5.27,5.27,0,0,1,40.51.29,7.4,7.4,0,0,1,42.6,0a8.87,8.87,0,0,1,1.12.07q.57.07,1.08.19t.95.26a4.27,4.27,0,0,1,.7.29,1.59,1.59,0,0,1,.49.41.94.94,0,0,1,.15.55v.79q0,.52-.38.52a1.76,1.76,0,0,1-.64-.2,7.74,7.74,0,0,0-3.2-.64,4.37,4.37,0,0,0-2.21.47,1.6,1.6,0,0,0-.79,1.48,1.58,1.58,0,0,0,.49,1.18,4.94,4.94,0,0,0,1.83.92L44.55,7a5.08,5.08,0,0,1,2.57,1.6A3.76,3.76,0,0,1,47.9,11a4.21,4.21,0,0,1-.44,1.93,4.4,4.4,0,0,1-1.21,1.47,5.43,5.43,0,0,1-1.85.93A8.25,8.25,0,0,1,42.05,15.62Z"></path><path class="cls-2" d="M45.19,23.81C39.72,27.85,31.78,30,25,30A36.64,36.64,0,0,1,.22,20.57c-.51-.46-.06-1.09.56-.74A49.78,49.78,0,0,0,25.53,26.4,49.23,49.23,0,0,0,44.4,22.53C45.32,22.14,46.1,23.14,45.19,23.81Z"></path><path class="cls-2" d="M47.47,21.21c-.7-.9-4.63-.42-6.39-.21-.53.06-.62-.4-.14-.74,3.13-2.2,8.27-1.57,8.86-.83s-.16,5.89-3.09,8.35c-.45.38-.88.18-.68-.32C46.69,25.8,48.17,22.11,47.47,21.21Z"></path></svg></a>

layouts/partials/menu-footer.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<left>
2+
3+
<h2 class="github-title">Github Repo</h2>
4+
5+
<h3 class="github-title">Distributed training workshop</h3>
6+
<a class="github-button" href="https://github.com/shashankprasanna/distributed-training-workshop" data-icon="octicon-star" data-show-count="true" aria-label="Star on GitHub">Star</a>
7+
&nbsp;<a class="github-button" href="https://github.com/shashankprasanna/distributed-training-workshop/fork" data-icon="octicon-repo-forked" data-show-count="true" aria-label="Fork on GitHub">Fork</a><br />
8+
9+
<h5 class="copyright">&copy; 2018 Amazon Web Services, Inc. or its Affiliates. All rights reserved.<h5>
10+
11+
</left>
12+
<!-- Place this tag in your head or just before your close body tag. -->
13+
<script async defer src="https://buttons.github.io/buttons.js"></script>

0 commit comments

Comments
 (0)