Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
license: apache-2.0
|
5 |
+
tags:
|
6 |
+
- LLMs
|
7 |
+
- mistral
|
8 |
+
- math
|
9 |
+
- Intel
|
10 |
+
- llama-cpp
|
11 |
+
- gguf-my-repo
|
12 |
+
base_model: Intel/neural-chat-7b-v3-2
|
13 |
+
datasets:
|
14 |
+
- meta-math/MetaMathQA
|
15 |
+
model-index:
|
16 |
+
- name: neural-chat-7b-v3-2
|
17 |
+
results:
|
18 |
+
- task:
|
19 |
+
type: Large Language Model
|
20 |
+
name: Large Language Model
|
21 |
+
dataset:
|
22 |
+
name: meta-math/MetaMathQA
|
23 |
+
type: meta-math/MetaMathQA
|
24 |
+
metrics:
|
25 |
+
- type: ARC (25-shot)
|
26 |
+
value: 67.49
|
27 |
+
name: ARC (25-shot)
|
28 |
+
verified: true
|
29 |
+
- type: HellaSwag (10-shot)
|
30 |
+
value: 83.92
|
31 |
+
name: HellaSwag (10-shot)
|
32 |
+
verified: true
|
33 |
+
- type: MMLU (5-shot)
|
34 |
+
value: 63.55
|
35 |
+
name: MMLU (5-shot)
|
36 |
+
verified: true
|
37 |
+
- type: TruthfulQA (0-shot)
|
38 |
+
value: 59.68
|
39 |
+
name: TruthfulQA (0-shot)
|
40 |
+
verified: true
|
41 |
+
- type: Winogrande (5-shot)
|
42 |
+
value: 79.95
|
43 |
+
name: Winogrande (5-shot)
|
44 |
+
verified: true
|
45 |
+
- type: GSM8K (5-shot)
|
46 |
+
value: 55.12
|
47 |
+
name: GSM8K (5-shot)
|
48 |
+
verified: true
|
49 |
+
---
|
50 |
+
|
51 |
+
# DarkJanissary/neural-chat-7b-v3-2-Q6_K-GGUF
|
52 |
+
This model was converted to GGUF format from [`Intel/neural-chat-7b-v3-2`](https://huggingface.co/Intel/neural-chat-7b-v3-2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
53 |
+
Refer to the [original model card](https://huggingface.co/Intel/neural-chat-7b-v3-2) for more details on the model.
|
54 |
+
|
55 |
+
## Use with llama.cpp
|
56 |
+
Install llama.cpp through brew (works on Mac and Linux)
|
57 |
+
|
58 |
+
```bash
|
59 |
+
brew install llama.cpp
|
60 |
+
|
61 |
+
```
|
62 |
+
Invoke the llama.cpp server or the CLI.
|
63 |
+
|
64 |
+
### CLI:
|
65 |
+
```bash
|
66 |
+
llama --hf-repo DarkJanissary/neural-chat-7b-v3-2-Q6_K-GGUF --hf-file neural-chat-7b-v3-2-q6_k.gguf -p "The meaning to life and the universe is"
|
67 |
+
```
|
68 |
+
|
69 |
+
### Server:
|
70 |
+
```bash
|
71 |
+
llama-server --hf-repo DarkJanissary/neural-chat-7b-v3-2-Q6_K-GGUF --hf-file neural-chat-7b-v3-2-q6_k.gguf -c 2048
|
72 |
+
```
|
73 |
+
|
74 |
+
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.
|
75 |
+
|
76 |
+
Step 1: Clone llama.cpp from GitHub.
|
77 |
+
```
|
78 |
+
git clone https://github.com/ggerganov/llama.cpp
|
79 |
+
```
|
80 |
+
|
81 |
+
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).
|
82 |
+
```
|
83 |
+
cd llama.cpp && LLAMA_CURL=1 make
|
84 |
+
```
|
85 |
+
|
86 |
+
Step 3: Run inference through the main binary.
|
87 |
+
```
|
88 |
+
./main --hf-repo DarkJanissary/neural-chat-7b-v3-2-Q6_K-GGUF --hf-file neural-chat-7b-v3-2-q6_k.gguf -p "The meaning to life and the universe is"
|
89 |
+
```
|
90 |
+
or
|
91 |
+
```
|
92 |
+
./server --hf-repo DarkJanissary/neural-chat-7b-v3-2-Q6_K-GGUF --hf-file neural-chat-7b-v3-2-q6_k.gguf -c 2048
|
93 |
+
```
|