Blog Post Categories Guide
How to Define Categories
Categories should be defined as YAML arrays in the front matter of your blog posts.
✅ Correct Format
---
layout: post
title: "Your Post Title"
date: 2024-07-23
categories: [machine-learning, deep-learning, vae, mnist]
excerpt: "Your excerpt here"
---
❌ Incorrect Format
---
layout: post
title: "Your Post Title"
date: 2024-07-23
categories: machine learning # This creates separate categories "machine" and "learning"
excerpt: "Your excerpt here"
---
Category Naming Conventions
- Use kebab-case for multi-word categories:
machine-learning
,deep-learning
- Use single words when possible:
research
,music
,tools
- Be specific but not too granular
- Use lowercase letters
Current Categories
machine-learning
- Machine learning topicsdeep-learning
- Deep learning and neural networksvae
- Variational Autoencodersmnist
- MNIST dataset relatedresearch
- Research projects and papersmusic
- Music-related contentpublic-domain
- Public domain music and toolstools
- Software tools and utilities
Display
Categories are automatically displayed on the blog page with:
- Hyphens converted to spaces
- First letter capitalized
- Styled as tags
Example: machine-learning
displays as “Machine Learning”