NikolayKozloff commited on
Commit
d5ce778
1 Parent(s): 8e2d76d

Upload README.md with huggingface_hub

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