diff options
author | Adithya Balaji <adithya.b94@gmail.com> | 2023-04-05 16:36:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 17:36:12 +0300 |
commit | 594cc95fabab0b662dabba3ea619ca5dca18bf6b (patch) | |
tree | 3350820b35ab9ca4fcb977d8ae149906ffe31c1b | |
parent | 88ed5761b869a221bc26847ff3f6977e7ee6425e (diff) |
readme : update with CMake and windows example (#748)
* README: Update with CMake and windows example
* README: update with code-review for cmake build
-rw-r--r-- | README.md | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -145,6 +145,13 @@ git clone https://github.com/ggerganov/llama.cpp cd llama.cpp make +#For Windows and CMake, use the following command instead: +cd <path_to_llama_folder> +mkdir build +cd build +cmake .. +cmake --build . --config Release + # obtain the original LLaMA model weights and place them in ./models ls ./models 65B 30B 13B 7B tokenizer_checklist.chk tokenizer.model |