DavidAU commited on
Commit
e734670
1 Parent(s): 1275a8d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - mergekit
5
+ - merge
6
+ - llama-cpp
7
+ - gguf-my-repo
8
+ base_model:
9
+ - NickyNicky/TinyDolphin-2.8-1.1b_oasst2_chatML_Cluster_3_V1
10
+ - cognitivecomputations/TinyDolphin-2.8-1.1b
11
+ - NickyNicky/TinyDolphin-2.8-1.1b_oasst2_chatML_Cluster_1_V1
12
+ - NickyNicky/TinyDolphin-2.8-1.1b_oasst2_chatML_Cluster_2_V1
13
+ widget:
14
+ - text: '<|im_start|>system
15
+
16
+ You are a helpful AI assistant.<|im_end|>
17
+
18
+ <|im_start|>user
19
+
20
+ podrias escribir un codigo de ejemplo en Python<|im_end|>
21
+
22
+ <|im_start|>assistant
23
+
24
+ '
25
+ ---
26
+
27
+ # DavidAU/TinyDolphin-2.8-1.1b_oasst2_chatML_all_Cluster_dare_ties_v2-Q8_0-GGUF
28
+ This model was converted to GGUF format from [`NickyNicky/TinyDolphin-2.8-1.1b_oasst2_chatML_all_Cluster_dare_ties_v2`](https://huggingface.co/NickyNicky/TinyDolphin-2.8-1.1b_oasst2_chatML_all_Cluster_dare_ties_v2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
29
+ Refer to the [original model card](https://huggingface.co/NickyNicky/TinyDolphin-2.8-1.1b_oasst2_chatML_all_Cluster_dare_ties_v2) for more details on the model.
30
+ ## Use with llama.cpp
31
+
32
+ Install llama.cpp through brew.
33
+
34
+ ```bash
35
+ brew install ggerganov/ggerganov/llama.cpp
36
+ ```
37
+ Invoke the llama.cpp server or the CLI.
38
+
39
+ CLI:
40
+
41
+ ```bash
42
+ llama-cli --hf-repo DavidAU/TinyDolphin-2.8-1.1b_oasst2_chatML_all_Cluster_dare_ties_v2-Q8_0-GGUF --model tinydolphin-2.8-1.1b_oasst2_chatml_all_cluster_dare_ties_v2.Q8_0.gguf -p "The meaning to life and the universe is"
43
+ ```
44
+
45
+ Server:
46
+
47
+ ```bash
48
+ llama-server --hf-repo DavidAU/TinyDolphin-2.8-1.1b_oasst2_chatML_all_Cluster_dare_ties_v2-Q8_0-GGUF --model tinydolphin-2.8-1.1b_oasst2_chatml_all_cluster_dare_ties_v2.Q8_0.gguf -c 2048
49
+ ```
50
+
51
+ 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.
52
+
53
+ ```
54
+ 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_v2.Q8_0.gguf -n 128
55
+ ```