YorkieOH10 commited on
Commit
03e3c12
1 Parent(s): 69441f0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +117 -0
README.md ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: bigcode-openrail-m
3
+ library_name: transformers
4
+ tags:
5
+ - code
6
+ - llama-cpp
7
+ - gguf-my-repo
8
+ base_model: bigcode/starcoder2-15b
9
+ datasets:
10
+ - bigcode/self-oss-instruct-sc2-exec-filter-50k
11
+ pipeline_tag: text-generation
12
+ model-index:
13
+ - name: starcoder2-15b-instruct-v0.1
14
+ results:
15
+ - task:
16
+ type: text-generation
17
+ dataset:
18
+ name: LiveCodeBench (code generation)
19
+ type: livecodebench-codegeneration
20
+ metrics:
21
+ - type: pass@1
22
+ value: 20.4
23
+ - task:
24
+ type: text-generation
25
+ dataset:
26
+ name: LiveCodeBench (self repair)
27
+ type: livecodebench-selfrepair
28
+ metrics:
29
+ - type: pass@1
30
+ value: 20.9
31
+ - task:
32
+ type: text-generation
33
+ dataset:
34
+ name: LiveCodeBench (test output prediction)
35
+ type: livecodebench-testoutputprediction
36
+ metrics:
37
+ - type: pass@1
38
+ value: 29.8
39
+ - task:
40
+ type: text-generation
41
+ dataset:
42
+ name: LiveCodeBench (code execution)
43
+ type: livecodebench-codeexecution
44
+ metrics:
45
+ - type: pass@1
46
+ value: 28.1
47
+ - task:
48
+ type: text-generation
49
+ dataset:
50
+ name: HumanEval
51
+ type: humaneval
52
+ metrics:
53
+ - type: pass@1
54
+ value: 72.6
55
+ - task:
56
+ type: text-generation
57
+ dataset:
58
+ name: HumanEval+
59
+ type: humanevalplus
60
+ metrics:
61
+ - type: pass@1
62
+ value: 63.4
63
+ - task:
64
+ type: text-generation
65
+ dataset:
66
+ name: MBPP
67
+ type: mbpp
68
+ metrics:
69
+ - type: pass@1
70
+ value: 75.2
71
+ - task:
72
+ type: text-generation
73
+ dataset:
74
+ name: MBPP+
75
+ type: mbppplus
76
+ metrics:
77
+ - type: pass@1
78
+ value: 61.2
79
+ - task:
80
+ type: text-generation
81
+ dataset:
82
+ name: DS-1000
83
+ type: ds-1000
84
+ metrics:
85
+ - type: pass@1
86
+ value: 40.6
87
+ ---
88
+
89
+ # YorkieOH10/starcoder2-15b-instruct-v0.1-Q8_0-GGUF
90
+ This model was converted to GGUF format from [`bigcode/starcoder2-15b-instruct-v0.1`](https://huggingface.co/bigcode/starcoder2-15b-instruct-v0.1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
91
+ Refer to the [original model card](https://huggingface.co/bigcode/starcoder2-15b-instruct-v0.1) for more details on the model.
92
+ ## Use with llama.cpp
93
+
94
+ Install llama.cpp through brew.
95
+
96
+ ```bash
97
+ brew install ggerganov/ggerganov/llama.cpp
98
+ ```
99
+ Invoke the llama.cpp server or the CLI.
100
+
101
+ CLI:
102
+
103
+ ```bash
104
+ llama-cli --hf-repo YorkieOH10/starcoder2-15b-instruct-v0.1-Q8_0-GGUF --model starcoder2-15b-instruct-v0.1.Q8_0.gguf -p "The meaning to life and the universe is"
105
+ ```
106
+
107
+ Server:
108
+
109
+ ```bash
110
+ llama-server --hf-repo YorkieOH10/starcoder2-15b-instruct-v0.1-Q8_0-GGUF --model starcoder2-15b-instruct-v0.1.Q8_0.gguf -c 2048
111
+ ```
112
+
113
+ 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.
114
+
115
+ ```
116
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m starcoder2-15b-instruct-v0.1.Q8_0.gguf -n 128
117
+ ```