From e6fd170dc9431ca600e65fcf00a0100474ba2c2b Mon Sep 17 00:00:00 2001 From: James Delancey Date: Mon, 29 Apr 2024 01:48:20 -0700 Subject: [PATCH] Add llama3.c port to README.md A faithful clone of Karpathy's llama2.c (one file inference, zero dependency) but fully functional with LLaMA 3 8B base and instruct models. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7411013..34cc4fe 100644 --- a/README.md +++ b/README.md @@ -349,6 +349,8 @@ If your candidate PRs have elements of these it doesn't mean they won't get merg - Android - [llama2.c-android](https://github.com/Manuel030/llama2.c-android): by @[Manuel030](https://github.com/Manuel030): adds Android binaries of this project - [llama2.c-android-wrapper](https://github.com/celikin/llama2.c-android-wrapper): by @[celikin](https://github.com/celikin): added JNI wrapper, PoC +- C + - [llama3.c](https://github.com/jameswdelancey/llama3.c): by @[jameswdelancey](https://github.com/jameswdelancey): a LLaMA 3 8B Base and Instruct port of this project - C++ - [llama2.cpp](https://github.com/leloykun/llama2.cpp) by @[leloykun](https://github.com/leloykun): a C++ port of this project - [llama2.cpp](https://github.com/coldlarry/llama2.cpp) by @[coldlarry](https://github.com/coldlarry): a C++ port of this project