Add lectures, separate update script

This commit is contained in:
Carl Pearson
2017-10-29 16:31:37 -05:00
parent f2f01d8e4c
commit d6b72b929d
6 changed files with 14 additions and 9 deletions

View File

@@ -24,8 +24,6 @@ fi
# Try building the website locally
cd "$HUGO_ROOT"
echo "Updating theme"
git submodule update --recursive --remote
echo "Building site"
hugo

View File

@@ -30,14 +30,12 @@ caption = ""
+++
I developed new course content for ECE 408 / CS 483 during the fall semester of 2017.
I developed new course content for University of Illinois ECE 408 / CS 483 during the 2017 fall semester.
* Three lectures on machine learning
* Three lectures on machine learning ([1][l1], [2][l2], [3][l3])
* A [course project][project_repo] where students add a GPU convolution operator to MXNet.
[project_repo]: https://bitbucket.org/hwuligans/2017fa_ece408_project
<!--->
[l1]:
[l2]:
[l3]:
<--->
[l1]: ../../pdf/2017FA_ECE408_dl01_Intro.pdf
[l2]: ../../pptx/2017FA_ECE408_dl02_FF-Gradient.pptx
[l3]: ../../pptx/2017FA_ECE408_dl03_CNN01.pptx

Binary file not shown.

Binary file not shown.

Binary file not shown.

9
update.sh Normal file
View File

@@ -0,0 +1,9 @@
#! /bin/bash
set -eoux pipefail
HUGO_ROOT=`pwd`
cd "$HUGO_ROOT"
echo "Updating theme"
git submodule update --recursive --remote