Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
- es
|
5 |
+
- ru
|
6 |
+
- zh
|
7 |
+
- de
|
8 |
+
- fr
|
9 |
+
- th
|
10 |
+
- ca
|
11 |
+
- it
|
12 |
+
- ja
|
13 |
+
- pl
|
14 |
+
- eo
|
15 |
+
- eu
|
16 |
+
- vi
|
17 |
+
- fi
|
18 |
+
- hu
|
19 |
+
- ar
|
20 |
+
- nl
|
21 |
+
- da
|
22 |
+
- tr
|
23 |
+
- ko
|
24 |
+
- he
|
25 |
+
- id
|
26 |
+
- cs
|
27 |
+
- bn
|
28 |
+
- sv
|
29 |
+
license: apache-2.0
|
30 |
+
tags:
|
31 |
+
- mergekit
|
32 |
+
- merge
|
33 |
+
- llama-cpp
|
34 |
+
- gguf-my-repo
|
35 |
+
base_model:
|
36 |
+
- NickyNicky/TinyDolphin-2.8-1.1b_oasst2_chatML_Cluster_1_V1
|
37 |
+
- NickyNicky/TinyDolphin-2.8-1.1b_oasst2_chatML_Cluster_3_V1
|
38 |
+
- NickyNicky/TinyDolphin-2.8-1.1b_oasst2_chatML_Cluster_2_V1
|
39 |
+
widget:
|
40 |
+
- text: '<|im_start|>system
|
41 |
+
|
42 |
+
You are a helpful AI assistant.<|im_end|>
|
43 |
+
|
44 |
+
<|im_start|>user
|
45 |
+
|
46 |
+
podrias escribir un codigo de ejemplo en Python<|im_end|>
|
47 |
+
|
48 |
+
<|im_start|>assistant
|
49 |
+
|
50 |
+
'
|
51 |
+
---
|
52 |
+
|
53 |
+
# DavidAU/TinyDolphin-2.8-1.1b_oasst2_chatML_all_Cluster_dare_ties_v1-Q8_0-GGUF
|
54 |
+
This model was converted to GGUF format from [`NickyNicky/TinyDolphin-2.8-1.1b_oasst2_chatML_all_Cluster_dare_ties_v1`](https://huggingface.co/NickyNicky/TinyDolphin-2.8-1.1b_oasst2_chatML_all_Cluster_dare_ties_v1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
55 |
+
Refer to the [original model card](https://huggingface.co/NickyNicky/TinyDolphin-2.8-1.1b_oasst2_chatML_all_Cluster_dare_ties_v1) for more details on the model.
|
56 |
+
## Use with llama.cpp
|
57 |
+
|
58 |
+
Install llama.cpp through brew.
|
59 |
+
|
60 |
+
```bash
|
61 |
+
brew install ggerganov/ggerganov/llama.cpp
|
62 |
+
```
|
63 |
+
Invoke the llama.cpp server or the CLI.
|
64 |
+
|
65 |
+
CLI:
|
66 |
+
|
67 |
+
```bash
|
68 |
+
llama-cli --hf-repo DavidAU/TinyDolphin-2.8-1.1b_oasst2_chatML_all_Cluster_dare_ties_v1-Q8_0-GGUF --model tinydolphin-2.8-1.1b_oasst2_chatml_all_cluster_dare_ties_v1.Q8_0.gguf -p "The meaning to life and the universe is"
|
69 |
+
```
|
70 |
+
|
71 |
+
Server:
|
72 |
+
|
73 |
+
```bash
|
74 |
+
llama-server --hf-repo DavidAU/TinyDolphin-2.8-1.1b_oasst2_chatML_all_Cluster_dare_ties_v1-Q8_0-GGUF --model tinydolphin-2.8-1.1b_oasst2_chatml_all_cluster_dare_ties_v1.Q8_0.gguf -c 2048
|
75 |
+
```
|
76 |
+
|
77 |
+
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.
|
78 |
+
|
79 |
+
```
|
80 |
+
git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m tinydolphin-2.8-1.1b_oasst2_chatml_all_cluster_dare_ties_v1.Q8_0.gguf -n 128
|
81 |
+
```
|