Repo for Jekyll based personal website.
This project uses a GitHub Action to deploy to GitHub Pages from the master branch.
- Custom plugins in
/_plugins
- CI in
/.github
- Helper scripts in
/_helpers
To run the website locally, install Docker and run docker compose up
.
Remember to restart manually when changing _config.yml
.
Run docker compose rm
to delete the container.
Note that dependency versions may not match exactly with the GitHub Action that generates & deploys the site. This can cause subtle issues, such as:
{{ post.excerpt | strip_html | truncatewords: 30 }}
Which locally outputs:
In this post we summarize the math behind deep learning and implement a simple network that achieves 85% accuracy classifying digits from the MNIST dataset. It is assumed that the...
And on the deployed site outputs:
In this post we summarize the math behind deep learning and implement a simple network that achieves 85% accuracy classifying digits from the MNIST dataset.