Upload README.md
Browse files
README.md
CHANGED
@@ -60,13 +60,13 @@ The key benefit of GGUF is that it is a extensible, future-proof format which st
|
|
60 |
|
61 |
Here are a list of clients and libraries that are known to support GGUF:
|
62 |
* [llama.cpp](https://github.com/ggerganov/llama.cpp).
|
63 |
-
* [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI
|
64 |
-
* [KoboldCpp](https://github.com/LostRuins/koboldcpp),
|
65 |
-
* [LM Studio](https://lmstudio.ai/),
|
66 |
-
* [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui),
|
67 |
-
* [ctransformers](https://github.com/marella/ctransformers),
|
68 |
-
* [llama-cpp-python](https://github.com/abetlen/llama-cpp-python),
|
69 |
-
* [candle](https://github.com/huggingface/candle),
|
70 |
|
71 |
<!-- README_GGUF.md-about-gguf end -->
|
72 |
<!-- repositories-available start -->
|
@@ -146,7 +146,7 @@ Make sure you are using `llama.cpp` from commit [6381d4e110bd0ec02843a60bbeb8b6f
|
|
146 |
For compatibility with older versions of llama.cpp, or for any third-party libraries or clients that haven't yet updated for GGUF, please use GGML files instead.
|
147 |
|
148 |
```
|
149 |
-
./main -t 10 -ngl 32 -m wizardcoder-python-13b-v1.0.q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n### Instruction:\
|
150 |
```
|
151 |
Change `-t 10` to the number of physical CPU cores you have. For example if your system has 8 cores/16 threads, use `-t 8`. If offloading all layers to GPU, set `-t 1`.
|
152 |
|
|
|
60 |
|
61 |
Here are a list of clients and libraries that are known to support GGUF:
|
62 |
* [llama.cpp](https://github.com/ggerganov/llama.cpp).
|
63 |
+
* [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions.
|
64 |
+
* [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with full GPU accel across multiple platforms and GPU architectures. Especially good for story telling.
|
65 |
+
* [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
|
66 |
+
* [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with many interesting and unique features, including a full model library for easy model selection.
|
67 |
+
* [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
|
68 |
+
* [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
|
69 |
+
* [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
|
70 |
|
71 |
<!-- README_GGUF.md-about-gguf end -->
|
72 |
<!-- repositories-available start -->
|
|
|
146 |
For compatibility with older versions of llama.cpp, or for any third-party libraries or clients that haven't yet updated for GGUF, please use GGML files instead.
|
147 |
|
148 |
```
|
149 |
+
./main -t 10 -ngl 32 -m wizardcoder-python-13b-v1.0.q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n### Instruction:\n{prompt}\n\n### Response:"
|
150 |
```
|
151 |
Change `-t 10` to the number of physical CPU cores you have. For example if your system has 8 cores/16 threads, use `-t 8`. If offloading all layers to GPU, set `-t 1`.
|
152 |
|