From 97ae6d777f7ce2d2054a36b2ddd2f6b81d5f379a Mon Sep 17 00:00:00 2001 From: Harry Mellor <19981378+hmellor@users.noreply.github.com> Date: Sat, 5 Apr 2025 14:44:03 +0100 Subject: [PATCH] Fix some capitalisations in generated examples doc titles (#16094) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> --- docs/source/generate_examples.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/source/generate_examples.py b/docs/source/generate_examples.py index 1206d5fe..f77dbefb 100644 --- a/docs/source/generate_examples.py +++ b/docs/source/generate_examples.py @@ -17,6 +17,7 @@ def fix_case(text: str) -> str: "cli": "CLI", "cpu": "CPU", "llm": "LLM", + "mae": "MAE", "tpu": "TPU", "aqlm": "AQLM", "gguf": "GGUF", @@ -24,6 +25,7 @@ def fix_case(text: str) -> str: "rlhf": "RLHF", "vllm": "vLLM", "openai": "OpenAI", + "lmcache": "LMCache", "multilora": "MultiLoRA", "mlpspeculator": "MLPSpeculator", r"fp\d+": lambda x: x.group(0).upper(), # e.g. fp16, fp32