huggingfacepremium commited on
Commit
493d38e
1 Parent(s): 1793269

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +148 -0
README.md ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: SpectreLynx/Ryeta-0
3
+ library_name: transformers
4
+ tags:
5
+ - medical
6
+ - llama-cpp
7
+ - gguf-my-repo
8
+ license: other
9
+ datasets:
10
+ - mlabonne/orpo-dpo-mix-40k
11
+ - Open-Orca/SlimOrca-Dedup
12
+ - jondurbin/airoboros-3.2
13
+ - microsoft/orca-math-word-problems-200k
14
+ - m-a-p/Code-Feedback
15
+ - MaziyarPanahi/WizardLM_evol_instruct_V2_196k
16
+ - ruslanmv/ai-medical-chatbot
17
+ language:
18
+ - en
19
+ model-index:
20
+ - name: Ryeta-0
21
+ results:
22
+ - task:
23
+ type: text-generation
24
+ name: Text Generation
25
+ dataset:
26
+ name: AI2 Reasoning Challenge (25-Shot)
27
+ type: ai2_arc
28
+ config: ARC-Challenge
29
+ split: test
30
+ args:
31
+ num_few_shot: 25
32
+ metrics:
33
+ - type: acc_norm
34
+ value: 59.13
35
+ name: normalized accuracy
36
+ - task:
37
+ type: text-generation
38
+ name: Text Generation
39
+ dataset:
40
+ name: HellaSwag (10-Shot)
41
+ type: hellaswag
42
+ split: validation
43
+ args:
44
+ num_few_shot: 10
45
+ metrics:
46
+ - type: acc_norm
47
+ value: 82.9
48
+ name: normalized accuracy
49
+ - task:
50
+ type: text-generation
51
+ name: Text Generation
52
+ dataset:
53
+ name: MMLU (5-Shot)
54
+ type: cais/mmlu
55
+ config: all
56
+ split: test
57
+ args:
58
+ num_few_shot: 5
59
+ metrics:
60
+ - type: acc
61
+ value: 60.35
62
+ name: accuracy
63
+ - task:
64
+ type: text-generation
65
+ name: Text Generation
66
+ dataset:
67
+ name: TruthfulQA (0-shot)
68
+ type: truthful_qa
69
+ config: multiple_choice
70
+ split: validation
71
+ args:
72
+ num_few_shot: 0
73
+ metrics:
74
+ - type: mc2
75
+ value: 49.65
76
+ - task:
77
+ type: text-generation
78
+ name: Text Generation
79
+ dataset:
80
+ name: Winogrande (5-shot)
81
+ type: winogrande
82
+ config: winogrande_xl
83
+ split: validation
84
+ args:
85
+ num_few_shot: 5
86
+ metrics:
87
+ - type: acc
88
+ value: 78.93
89
+ name: accuracy
90
+ - task:
91
+ type: text-generation
92
+ name: Text Generation
93
+ dataset:
94
+ name: GSM8k (5-shot)
95
+ type: gsm8k
96
+ config: main
97
+ split: test
98
+ args:
99
+ num_few_shot: 5
100
+ metrics:
101
+ - type: acc
102
+ value: 60.35
103
+ name: accuracy
104
+ ---
105
+
106
+ # huggingfacepremium/Ryeta-0-Q4_K_M-GGUF
107
+ This model was converted to GGUF format from [`SpectreLynx/Ryeta-0`](https://huggingface.co/SpectreLynx/Ryeta-0) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
108
+ Refer to the [original model card](https://huggingface.co/SpectreLynx/Ryeta-0) for more details on the model.
109
+
110
+ ## Use with llama.cpp
111
+ Install llama.cpp through brew (works on Mac and Linux)
112
+
113
+ ```bash
114
+ brew install llama.cpp
115
+
116
+ ```
117
+ Invoke the llama.cpp server or the CLI.
118
+
119
+ ### CLI:
120
+ ```bash
121
+ llama-cli --hf-repo huggingfacepremium/Ryeta-0-Q4_K_M-GGUF --hf-file ryeta-0-q4_k_m.gguf -p "The meaning to life and the universe is"
122
+ ```
123
+
124
+ ### Server:
125
+ ```bash
126
+ llama-server --hf-repo huggingfacepremium/Ryeta-0-Q4_K_M-GGUF --hf-file ryeta-0-q4_k_m.gguf -c 2048
127
+ ```
128
+
129
+ 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.
130
+
131
+ Step 1: Clone llama.cpp from GitHub.
132
+ ```
133
+ git clone https://github.com/ggerganov/llama.cpp
134
+ ```
135
+
136
+ 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).
137
+ ```
138
+ cd llama.cpp && LLAMA_CURL=1 make
139
+ ```
140
+
141
+ Step 3: Run inference through the main binary.
142
+ ```
143
+ ./llama-cli --hf-repo huggingfacepremium/Ryeta-0-Q4_K_M-GGUF --hf-file ryeta-0-q4_k_m.gguf -p "The meaning to life and the universe is"
144
+ ```
145
+ or
146
+ ```
147
+ ./llama-server --hf-repo huggingfacepremium/Ryeta-0-Q4_K_M-GGUF --hf-file ryeta-0-q4_k_m.gguf -c 2048
148
+ ```