This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Toy example of using a deep neural network to predict average temperature | |
# by month. Note that this is not any better than just taking the average | |
# of the dataset; it's just meant as an example of a regression analysis using | |
# neural networks. | |
import logging | |
import datetime | |
import pandas as pd | |
import torch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm -rf dist | |
mkdir dist | |
cp -r images dist | |
cp *.css dist/ | |
echo "Writing index..." | |
pandoc index.md -o dist/index.html --template templates/default.html | |
for d in pages/*; do | |
mkdir -p dist/$d | |
for i in $d/*.md; do | |
f="${i##*/}" |
OlderNewer