From: Georgi Gerganov Date: Wed, 29 Nov 2023 09:00:17 +0000 (+0200) Subject: examples : add readme files X-Git-Tag: upstream/0.0.4488~2910 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=1f5cd83275fabb43f2ae92c30033b384a3eb37b4;p=pkg%2Fggml%2Fsources%2Fllama.cpp examples : add readme files --- diff --git a/examples/lookahead/README.md b/examples/lookahead/README.md new file mode 100644 index 00000000..252a6689 --- /dev/null +++ b/examples/lookahead/README.md @@ -0,0 +1,7 @@ +# llama.cpp/examples/lookahead + +Demonstartion of lookahead decoding technique: + +https://lmsys.org/blog/2023-11-21-lookahead-decoding/ + +More info: https://github.com/ggerganov/llama.cpp/pull/4207 diff --git a/examples/speculative/README.md b/examples/speculative/README.md new file mode 100644 index 00000000..d88fd379 --- /dev/null +++ b/examples/speculative/README.md @@ -0,0 +1,8 @@ +# llama.cpp/examples/speculative + +Demonstartion of speculative decoding and tree-based speculative decoding techniques + +More info: + +- https://github.com/ggerganov/llama.cpp/pull/2926 +- https://github.com/ggerganov/llama.cpp/pull/3624