Upload README.md
Browse files
README.md
CHANGED
@@ -29,23 +29,25 @@ quantized_by: TheBloke
|
|
29 |
- Model creator: [Caleb Morgan](https://huggingface.co/The-Face-Of-Goonery)
|
30 |
- Original model: [Huginn v3 13B](https://huggingface.co/The-Face-Of-Goonery/Huginn-v3-13b)
|
31 |
|
|
|
32 |
## Description
|
33 |
|
34 |
This repo contains GGUF format model files for [Caleb Morgan's Huginn v3 13B](https://huggingface.co/The-Face-Of-Goonery/Huginn-v3-13b).
|
35 |
|
|
|
36 |
<!-- README_GGUF.md-about-gguf start -->
|
37 |
### About GGUF
|
38 |
|
39 |
-
GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp.
|
40 |
|
41 |
-
|
42 |
|
43 |
-
|
44 |
-
* [
|
45 |
-
* [
|
46 |
-
* [
|
47 |
-
* [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI with GPU acceleration on both Windows (NVidia and AMD), and macOS.
|
48 |
* [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.
|
|
|
49 |
* [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
|
50 |
* [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
|
51 |
* [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
|
@@ -74,12 +76,14 @@ Below is an instruction that describes a task. Write a response that appropriate
|
|
74 |
```
|
75 |
|
76 |
<!-- prompt-template end -->
|
|
|
|
|
77 |
<!-- compatibility_gguf start -->
|
78 |
## Compatibility
|
79 |
|
80 |
-
These quantised
|
81 |
|
82 |
-
They are
|
83 |
|
84 |
## Explanation of quantisation methods
|
85 |
<details>
|
@@ -123,18 +127,15 @@ Refer to the Provided Files table below to see what files use which methods, and
|
|
123 |
<!-- README_GGUF.md-how-to-run start -->
|
124 |
## Example `llama.cpp` command
|
125 |
|
126 |
-
Make sure you are using `llama.cpp` from commit [
|
127 |
-
|
128 |
-
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.
|
129 |
|
|
|
|
|
130 |
```
|
131 |
-
./main -t 10 -ngl 32 -m huginn-v3-13b.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:"
|
132 |
-
```
|
133 |
-
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`.
|
134 |
|
135 |
Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
|
136 |
|
137 |
-
Change `-c 4096` to the desired sequence length
|
138 |
|
139 |
If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
|
140 |
|
@@ -191,10 +192,12 @@ For further support, and discussions on these models and AI in general, join us
|
|
191 |
|
192 |
[TheBloke AI's Discord server](https://discord.gg/theblokeai)
|
193 |
|
194 |
-
## Thanks, and how to contribute
|
195 |
|
196 |
Thanks to the [chirper.ai](https://chirper.ai) team!
|
197 |
|
|
|
|
|
198 |
I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training.
|
199 |
|
200 |
If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects.
|
|
|
29 |
- Model creator: [Caleb Morgan](https://huggingface.co/The-Face-Of-Goonery)
|
30 |
- Original model: [Huginn v3 13B](https://huggingface.co/The-Face-Of-Goonery/Huginn-v3-13b)
|
31 |
|
32 |
+
<!-- description start -->
|
33 |
## Description
|
34 |
|
35 |
This repo contains GGUF format model files for [Caleb Morgan's Huginn v3 13B](https://huggingface.co/The-Face-Of-Goonery/Huginn-v3-13b).
|
36 |
|
37 |
+
<!-- description end -->
|
38 |
<!-- README_GGUF.md-about-gguf start -->
|
39 |
### About GGUF
|
40 |
|
41 |
+
GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp. GGUF offers numerous advantages over GGML, such as better tokenisation, and support for special tokens. It is also supports metadata, and is designed to be extensible.
|
42 |
|
43 |
+
Here is an incomplate list of clients and libraries that are known to support GGUF:
|
44 |
|
45 |
+
* [llama.cpp](https://github.com/ggerganov/llama.cpp). The source project for GGUF. Offers a CLI and a server option.
|
46 |
+
* [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions. Supports GPU acceleration.
|
47 |
+
* [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with GPU accel across all platforms and GPU architectures. Especially good for story telling.
|
48 |
+
* [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration.
|
|
|
49 |
* [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.
|
50 |
+
* [Faraday.dev](https://faraday.dev/), an attractive and easy to use character-based chat GUI for Windows and macOS (both Silicon and Intel), with GPU acceleration.
|
51 |
* [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server.
|
52 |
* [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server.
|
53 |
* [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use.
|
|
|
76 |
```
|
77 |
|
78 |
<!-- prompt-template end -->
|
79 |
+
|
80 |
+
|
81 |
<!-- compatibility_gguf start -->
|
82 |
## Compatibility
|
83 |
|
84 |
+
These quantised GGUFv2 files are compatible with llama.cpp from August 27th onwards, as of commit [d0cee0d36d5be95a0d9088b674dbb27354107221](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221)
|
85 |
|
86 |
+
They are also compatible with many third party UIs and libraries - please see the list at the top of this README.
|
87 |
|
88 |
## Explanation of quantisation methods
|
89 |
<details>
|
|
|
127 |
<!-- README_GGUF.md-how-to-run start -->
|
128 |
## Example `llama.cpp` command
|
129 |
|
130 |
+
Make sure you are using `llama.cpp` from commit [d0cee0d36d5be95a0d9088b674dbb27354107221](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) or later.
|
|
|
|
|
131 |
|
132 |
+
```shell
|
133 |
+
./main -ngl 32 -m huginn-v3-13b.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:"
|
134 |
```
|
|
|
|
|
|
|
135 |
|
136 |
Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration.
|
137 |
|
138 |
+
Change `-c 4096` to the desired sequence length. For extended sequence models - eg 8K, 16K, 32K - the necessary RoPE scaling parameters are read from the GGUF file and set by llama.cpp automatically.
|
139 |
|
140 |
If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins`
|
141 |
|
|
|
192 |
|
193 |
[TheBloke AI's Discord server](https://discord.gg/theblokeai)
|
194 |
|
195 |
+
## Thanks, and how to contribute
|
196 |
|
197 |
Thanks to the [chirper.ai](https://chirper.ai) team!
|
198 |
|
199 |
+
Thanks to Clay from [gpus.llm-utils.org](llm-utils)!
|
200 |
+
|
201 |
I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training.
|
202 |
|
203 |
If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects.
|