DavidAU commited on
Commit
4736f6c
1 Parent(s): df8486f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +125 -0
README.md ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - merge
5
+ - llama-cpp
6
+ - gguf-my-repo
7
+ base_model:
8
+ - teknium/OpenHermes-2.5-Mistral-7B
9
+ - Intel/neural-chat-7b-v3-3
10
+ model-index:
11
+ - name: OpenHermes-2.5-neural-chat-v3-3-Slerp
12
+ results:
13
+ - task:
14
+ type: text-generation
15
+ name: Text Generation
16
+ dataset:
17
+ name: AI2 Reasoning Challenge (25-Shot)
18
+ type: ai2_arc
19
+ config: ARC-Challenge
20
+ split: test
21
+ args:
22
+ num_few_shot: 25
23
+ metrics:
24
+ - type: acc_norm
25
+ value: 68.09
26
+ name: normalized accuracy
27
+ - task:
28
+ type: text-generation
29
+ name: Text Generation
30
+ dataset:
31
+ name: HellaSwag (10-Shot)
32
+ type: hellaswag
33
+ split: validation
34
+ args:
35
+ num_few_shot: 10
36
+ metrics:
37
+ - type: acc_norm
38
+ value: 86.2
39
+ name: normalized accuracy
40
+ - task:
41
+ type: text-generation
42
+ name: Text Generation
43
+ dataset:
44
+ name: MMLU (5-Shot)
45
+ type: cais/mmlu
46
+ config: all
47
+ split: test
48
+ args:
49
+ num_few_shot: 5
50
+ metrics:
51
+ - type: acc
52
+ value: 64.26
53
+ name: accuracy
54
+ - task:
55
+ type: text-generation
56
+ name: Text Generation
57
+ dataset:
58
+ name: TruthfulQA (0-shot)
59
+ type: truthful_qa
60
+ config: multiple_choice
61
+ split: validation
62
+ args:
63
+ num_few_shot: 0
64
+ metrics:
65
+ - type: mc2
66
+ value: 62.78
67
+ - task:
68
+ type: text-generation
69
+ name: Text Generation
70
+ dataset:
71
+ name: Winogrande (5-shot)
72
+ type: winogrande
73
+ config: winogrande_xl
74
+ split: validation
75
+ args:
76
+ num_few_shot: 5
77
+ metrics:
78
+ - type: acc
79
+ value: 79.16
80
+ name: accuracy
81
+ - task:
82
+ type: text-generation
83
+ name: Text Generation
84
+ dataset:
85
+ name: GSM8k (5-shot)
86
+ type: gsm8k
87
+ config: main
88
+ split: test
89
+ args:
90
+ num_few_shot: 5
91
+ metrics:
92
+ - type: acc
93
+ value: 67.78
94
+ name: accuracy
95
+ ---
96
+
97
+ # DavidAU/OpenHermes-2.5-neural-chat-v3-3-Slerp-Q6_K-GGUF
98
+ This model was converted to GGUF format from [`Weyaxi/OpenHermes-2.5-neural-chat-v3-3-Slerp`](https://huggingface.co/Weyaxi/OpenHermes-2.5-neural-chat-v3-3-Slerp) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
99
+ Refer to the [original model card](https://huggingface.co/Weyaxi/OpenHermes-2.5-neural-chat-v3-3-Slerp) for more details on the model.
100
+ ## Use with llama.cpp
101
+
102
+ Install llama.cpp through brew.
103
+
104
+ ```bash
105
+ brew install ggerganov/ggerganov/llama.cpp
106
+ ```
107
+ Invoke the llama.cpp server or the CLI.
108
+
109
+ CLI:
110
+
111
+ ```bash
112
+ llama-cli --hf-repo DavidAU/OpenHermes-2.5-neural-chat-v3-3-Slerp-Q6_K-GGUF --model openhermes-2.5-neural-chat-v3-3-slerp.Q6_K.gguf -p "The meaning to life and the universe is"
113
+ ```
114
+
115
+ Server:
116
+
117
+ ```bash
118
+ llama-server --hf-repo DavidAU/OpenHermes-2.5-neural-chat-v3-3-Slerp-Q6_K-GGUF --model openhermes-2.5-neural-chat-v3-3-slerp.Q6_K.gguf -c 2048
119
+ ```
120
+
121
+ 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.
122
+
123
+ ```
124
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m openhermes-2.5-neural-chat-v3-3-slerp.Q6_K.gguf -n 128
125
+ ```