Skip to content

Commit

Permalink
Add host listing
Browse files Browse the repository at this point in the history
  • Loading branch information
twinkarma committed May 31, 2024
1 parent d22f22e commit 34ba357
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ notebooks/__pycache__/
notebooks/cifar-10-batches-py/
*.tar.gz
*E.0.0*
.DS_Store
.DS_Store
site/.vuepress/components/aws_ec2_hosts.json
28 changes: 28 additions & 0 deletions site/.vuepress/components/HostListing.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<script setup>
import awsHosts from "./aws_ec2_hosts.json"
function getHostUrls(){
let hostUrls = [];
for( let i = 0 ;i < awsHosts.aws_ec2.hosts.length; i++){
const hostName = awsHosts.aws_ec2.hosts[i];
hostUrls.push(`http://${hostName}/lab`);
}
return hostUrls;
}
</script>

<template>
<div>
<ul>
<li v-for="(hostUrl, index) in getHostUrls()">
<a :href="hostUrl" target="_blank">Machine {{index}} - {{hostUrl}}</a>
</li>
</ul>
</div>

</template>

<style scoped>
</style>
4 changes: 4 additions & 0 deletions site/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"Deep Learning Demystified: Foundations for Non-Computer Scientists" is an accessible and comprehensive course designed to introduce individuals from diverse backgrounds to the fundamental concepts of deep learning. Through clear explanations and real-world examples, participants will gain a solid understanding of key components of deep learning. By the end of the course, students will be equipped with the knowledge and confidence to engage with and apply deep learning techniques in various fields, regardless of their technical background.



## Objectives
- Utilise the Tensorflow Keras framework to execute standard deep learning workflows.
- Explore diverse data, training parameters, network architectures, and other methodologies to enhance performance and functionality.
Expand Down Expand Up @@ -44,6 +45,9 @@
* **16:15-17:00** | 07: Final Exercise & Wrap-up


## Host Listings
<HostListing/>

## Overview

* <a href="slides/00_overview.html" target="_blank">Slides</a>
Expand Down

0 comments on commit 34ba357

Please sign in to comment.