sunitha-ravi
commited on
Commit
•
be9b74e
1
Parent(s):
8eedcf7
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: PatronusAI/Llama-3-Patronus-Lynx-8B-Instruct-v1.1
|
3 |
+
library_name: transformers
|
4 |
+
tags:
|
5 |
+
- patronus
|
6 |
+
- hallucination detection
|
7 |
+
- llama 3
|
8 |
+
license: cc-by-nc-4.0
|
9 |
+
---
|
10 |
+
|
11 |
+
# PatronusAI/Llama-3-Patronus-Lynx-8B-v1.1-Instruct-Q8-GGUF
|
12 |
+
This model is a quantized version of [`PatronusAI/Llama-3-Patronus-Lynx-8B-Instruct-v1.1`](https://huggingface.co/PatronusAI/Llama-3-Patronus-Lynx-8B-Instruct-v1.1).
|
13 |
+
Refer to the [original model card](https://huggingface.co/PatronusAI/Llama-3-Patronus-Lynx-8B-Instruct-v1.1) for more details on the model.
|
14 |
+
|
15 |
+
License: [https://creativecommons.org/licenses/by-nc/4.0/](https://creativecommons.org/licenses/by-nc/4.0/)
|
16 |
+
|
17 |
+
## Use with llama.cpp
|
18 |
+
Install llama.cpp through brew (works on Mac and Linux)
|
19 |
+
|
20 |
+
```bash
|
21 |
+
brew install llama.cpp
|
22 |
+
|
23 |
+
```
|
24 |
+
Invoke the llama.cpp server or the CLI.
|
25 |
+
|
26 |
+
### CLI:
|
27 |
+
```bash
|
28 |
+
llama-cli --hf-repo PatronusAI/Llama-3-Patronus-Lynx-8B-v1.1-Instruct-Q8-GGUF --hf-file patronus-lynx-8b-instruct-q8.gguf -p "The meaning to life and the universe is"
|
29 |
+
```
|
30 |
+
|
31 |
+
### Server:
|
32 |
+
```bash
|
33 |
+
llama-server --hf-repo PatronusAI/Llama-3-Patronus-Lynx-8B-v1.1-Instruct-Q8-GGUF --hf-file patronus-lynx-8b-instruct-q8.gguf -c 2048
|
34 |
+
```
|
35 |
+
|
36 |
+
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
|
37 |
+
|
38 |
+
Step 1: Clone llama.cpp from GitHub.
|
39 |
+
```
|
40 |
+
git clone https://github.com/ggerganov/llama.cpp
|
41 |
+
```
|
42 |
+
|
43 |
+
Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
|
44 |
+
```
|
45 |
+
cd llama.cpp && LLAMA_CURL=1 make
|
46 |
+
```
|
47 |
+
|
48 |
+
Step 3: Run inference through the main binary.
|
49 |
+
```
|
50 |
+
./llama-cli --hf-repo PatronusAI/Llama-3-Patronus-Lynx-8B-v1.1-Instruct-Q8-GGUF --hf-file patronus-lynx-8b-instruct-q8.gguf -p "The meaning to life and the universe is"
|
51 |
+
```
|
52 |
+
or
|
53 |
+
```
|
54 |
+
./llama-server --hf-repo PatronusAI/Llama-3-Patronus-Lynx-8B-v1.1-Instruct-Q8-GGUF --hf-file patronus-lynx-8b-instruct-q8.gguf -c 2048
|
55 |
+
```
|