Skip to content

Commit 5084df5

Browse files
authored
Merge pull request #11 from syhya/codex/establish-consistent-taxonomy-for-naming
Normalize blog taxonomy vocabulary and clean inconsistent terms
2 parents 383766b + fcedb96 commit 5084df5

File tree

9 files changed

+33
-9
lines changed

9 files changed

+33
-9
lines changed

TAXONOMY.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Taxonomy Vocabulary (Categories & Tags)
2+
3+
This file defines the canonical taxonomy vocabulary for blog content.
4+
5+
## Categories
6+
7+
### English (`content/en/posts/**`)
8+
- `Technical Blog`
9+
10+
### Chinese (`content/zh/posts/**`)
11+
- `技术博客`
12+
13+
## Tag normalization rules
14+
15+
Use these canonical spellings in front matter `tags`:
16+
17+
- `LLM` (not `LLMs`)
18+
- `Deep Learning` (not `Deep learning`)
19+
20+
## Migration mapping (applied)
21+
22+
- `Tech Blog` -> `Technical Blog`
23+
- `LLMs` -> `LLM`
24+
- `Deep learning` -> `Deep Learning`

content/en/posts/2021-04-21-deep-learning-stock-prediction/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Stock Price Prediction and Quantitative Strategy Based on Deep Learning"
33
date: 2021-04-21T12:00:00+08:00
44
author: "Yue Shui"
5-
tags: ["Deep learning", "AI", "RNN", "LSTM", "BiLSTM", "GRU", "LightGBM", "Neural Networks", "Stock Prediction", "Financial Modeling", "Machine Learning", "Quantitative Investment", "Portfolio Management", "Financial Engineering", "Algorithmic Trading", "Time Series"]
5+
tags: ["Deep Learning", "AI", "RNN", "LSTM", "BiLSTM", "GRU", "LightGBM", "Neural Networks", "Stock Prediction", "Financial Modeling", "Machine Learning", "Quantitative Investment", "Portfolio Management", "Financial Engineering", "Algorithmic Trading", "Time Series"]
66
categories: ["Technical Blog"]
77
toc: true
88
ShowToc: true

content/en/posts/2024-12-21-build-gpu-server/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Building a Home Deep Learning Rig with Dual RTX 4090 GPUs"
33
date: 2024-12-21T12:00:00+08:00
44
author: "Yue Shui"
55
tags: ["Deep Learning", "AI", "LLM", "RTX 4090", "AI Hardware", "GPU"]
6-
categories: ["Tech Blog"]
6+
categories: ["Technical Blog"]
77
# readingTime: 10
88
ShowReadingTime: true
99
toc: true

content/en/posts/2025-02-08-dpo/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "LLMs Alignment: DPO"
33
date: 2025-02-08T12:00:00+08:00
44
author: "Yue Shui"
5-
tags: ["AI", "NLP", "LLMs", "Post-training", "DPO", "RLHF", "Alignment", "Bradley–Terry Model"]
5+
tags: ["AI", "NLP", "LLM", "Post-training", "DPO", "RLHF", "Alignment", "Bradley–Terry Model"]
66
categories: ["Technical Blog"]
77
readingTime: 25
88
toc: true

content/en/posts/2025-03-01-train-llm/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Parallelism and Memory Optimization Techniques for Training Large Models
33
date: 2025-03-01T12:00:00+08:00
44
lastmod: 2025-03-01T12:00:00+08:00
55
author: Yue Shui
6-
categories: ["Tech Blog"]
7-
tags: [LLMs, Pre-training, Distributed Training, Memory Optimization, Data Parallelism, Model Parallelism, Pipeline Parallelism, Tensor Parallelism, Sequence Parallelism, Hybrid Parallelism, Heterogeneous Systems, MoE, ZeRO, LoRA, AI, Deep Learning, AI Infrastructure]
6+
categories: ["Technical Blog"]
7+
tags: [LLM, Pre-training, Distributed Training, Memory Optimization, Data Parallelism, Model Parallelism, Pipeline Parallelism, Tensor Parallelism, Sequence Parallelism, Hybrid Parallelism, Heterogeneous Systems, MoE, ZeRO, LoRA, AI, Deep Learning, AI Infrastructure]
88
readingTime: 60
99
toc: true
1010
ShowToc: true

content/en/posts/2025-05-17-vllm/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date: 2025-05-17T10:00:00+08:00
44
lastmod: 2025-05-17T10:00:00+08:00
55
author: "Yue Shui"
66
categories: ["Technical Blog"]
7-
tags: ["vLLM", "PagedAttention", "LLM Serving", "Inference", "KV Cache", "Memory Optimization", "LLMs", "AI Infrastructure", "Deep Learning"]
7+
tags: ["vLLM", "PagedAttention", "LLM Serving", "Inference", "KV Cache", "Memory Optimization", "LLM", "AI Infrastructure", "Deep Learning"]
88
ShowReadingTime: true
99
toc: true
1010
ShowToc: true

content/zh/posts/2021-04-21-deep-learning-stock-prediction/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "基于深度学习的股票价格预测和量化策略"
33
date: 2021-04-21T12:00:00+08:00
44
author: "Yue Shui"
5-
tags: ["Deep learning", "AI", "RNN", "LSTM", "BiLSTM", "GRU", "LightGBM", "Neural Networks", "Stock Prediction", "Financial Modeling", "Machine Learning", "Quantitative Investment", "Portfolio Management", "Financial Engineering", "Algorithmic Trading", "Time Series"]
5+
tags: ["Deep Learning", "AI", "RNN", "LSTM", "BiLSTM", "GRU", "LightGBM", "Neural Networks", "Stock Prediction", "Financial Modeling", "Machine Learning", "Quantitative Investment", "Portfolio Management", "Financial Engineering", "Algorithmic Trading", "Time Series"]
66
categories: ["技术博客"]
77
toc: true
88
ShowToc: true

content/zh/posts/2025-03-01-train-llm/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date: 2025-03-01T12:00:00+08:00
44
lastmod: 2025-03-01T12:00:00+08:00
55
author: Yue Shui
66
categories: ["技术博客"]
7-
tags: [LLMs, 预训练, 分布式训练, 内存优化, 数据并行, 模型并行, 流水线并行, 张量并行, 序列并行, 混合并行, 异构系统, MoE, ZeRO, LoRA, AI, 深度学习, AI Infrastructure]
7+
tags: [LLM, 预训练, 分布式训练, 内存优化, 数据并行, 模型并行, 流水线并行, 张量并行, 序列并行, 混合并行, 异构系统, MoE, ZeRO, LoRA, AI, 深度学习, AI Infrastructure]
88
readingTime: 60
99
toc: true
1010
ShowToc: true

content/zh/posts/2025-05-17-vllm/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date: 2025-05-17T10:00:00+08:00
44
lastmod: 2025-05-17T10:00:00+08:00
55
author: "Yue Shui"
66
categories: ["技术博客"]
7-
tags: ["PagedAttention", "LLM Serving", "Inference", "KV Cache", "Memory Optimization", "LLMs", "AI Infrastructure"]
7+
tags: ["PagedAttention", "LLM Serving", "Inference", "KV Cache", "Memory Optimization", "LLM", "AI Infrastructure"]
88
ShowReadingTime: true
99
toc: true
1010
ShowToc: true

0 commit comments

Comments
 (0)