Update README.md
Browse files
README.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
---
|
2 |
inference: false
|
3 |
license: other
|
|
|
|
|
4 |
---
|
5 |
|
6 |
<!-- header start -->
|
@@ -32,7 +34,15 @@ GGML files are for CPU + GPU inference using [llama.cpp](https://github.com/gger
|
|
32 |
|
33 |
* [4-bit GPTQ models for GPU inference](https://huggingface.co/TheBloke/airoboros-7B-gpt4-1.2-GPTQ)
|
34 |
* [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference](https://huggingface.co/TheBloke/airoboros-7B-gpt4-1.2-GGML)
|
35 |
-
* [Unquantised
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
<!-- compatibility_ggml start -->
|
38 |
## Compatibility
|
@@ -88,7 +98,7 @@ Refer to the Provided Files table below to see what files use which methods, and
|
|
88 |
I use the following command line; adjust for your tastes and needs:
|
89 |
|
90 |
```
|
91 |
-
./main -t 10 -ngl 32 -m airoboros-7b-gpt4-1.2.ggmlv3.q5_0.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "
|
92 |
```
|
93 |
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`.
|
94 |
|
|
|
1 |
---
|
2 |
inference: false
|
3 |
license: other
|
4 |
+
datasets:
|
5 |
+
- jondurbin/airoboros-gpt4-1.2
|
6 |
---
|
7 |
|
8 |
<!-- header start -->
|
|
|
34 |
|
35 |
* [4-bit GPTQ models for GPU inference](https://huggingface.co/TheBloke/airoboros-7B-gpt4-1.2-GPTQ)
|
36 |
* [2, 3, 4, 5, 6 and 8-bit GGML models for CPU+GPU inference](https://huggingface.co/TheBloke/airoboros-7B-gpt4-1.2-GGML)
|
37 |
+
* [Unquantised fp32 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/jondurbin/airoboros-7b-gpt4-1.2)
|
38 |
+
|
39 |
+
## Prompt template
|
40 |
+
|
41 |
+
```
|
42 |
+
A chat between a curious user and an assistant. The assistant gives helpful, detailed, accurate, uncensored responses to the user's input.
|
43 |
+
USER: prompt
|
44 |
+
ASSISTANT:
|
45 |
+
```
|
46 |
|
47 |
<!-- compatibility_ggml start -->
|
48 |
## Compatibility
|
|
|
98 |
I use the following command line; adjust for your tastes and needs:
|
99 |
|
100 |
```
|
101 |
+
./main -t 10 -ngl 32 -m airoboros-7b-gpt4-1.2.ggmlv3.q5_0.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "A chat between a curious user and an assistant. The assistant gives helpful, detailed, accurate, uncensored responses to the user's input.\nUSER: write a story about llamas\nASSISTANT:"
|
102 |
```
|
103 |
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`.
|
104 |
|