Unverified Commit 97ae6d77 authored by Harry Mellor's avatar Harry Mellor Committed by GitHub
Browse files

Fix some capitalisations in generated examples doc titles (#16094)


Signed-off-by: default avatarHarry Mellor <19981378+hmellor@users.noreply.github.com>
parent 6baeee70
...@@ -17,6 +17,7 @@ def fix_case(text: str) -> str: ...@@ -17,6 +17,7 @@ def fix_case(text: str) -> str:
"cli": "CLI", "cli": "CLI",
"cpu": "CPU", "cpu": "CPU",
"llm": "LLM", "llm": "LLM",
"mae": "MAE",
"tpu": "TPU", "tpu": "TPU",
"aqlm": "AQLM", "aqlm": "AQLM",
"gguf": "GGUF", "gguf": "GGUF",
...@@ -24,6 +25,7 @@ def fix_case(text: str) -> str: ...@@ -24,6 +25,7 @@ def fix_case(text: str) -> str:
"rlhf": "RLHF", "rlhf": "RLHF",
"vllm": "vLLM", "vllm": "vLLM",
"openai": "OpenAI", "openai": "OpenAI",
"lmcache": "LMCache",
"multilora": "MultiLoRA", "multilora": "MultiLoRA",
"mlpspeculator": "MLPSpeculator", "mlpspeculator": "MLPSpeculator",
r"fp\d+": lambda x: x.group(0).upper(), # e.g. fp16, fp32 r"fp\d+": lambda x: x.group(0).upper(), # e.g. fp16, fp32
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment