jy-hxy commited on
Commit
66d5a58
1 Parent(s): 714b375

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: wtfpl
3
+ language:
4
+ - en
5
+ - zh
6
+ - ja
7
+ - de
8
+ datasets:
9
+ - JosephusCheung/GuanacoDataset
10
+ - meta-math/MetaMathQA
11
+ - jondurbin/airoboros-3.1
12
+ - WizardLM/WizardLM_evol_instruct_V2_196k
13
+ - RyokoAI/ShareGPT52K
14
+ - RyokoAI/Fandom23K
15
+ - milashkaarshif/MoeGirlPedia_wikitext_raw_archive
16
+ - wikipedia
17
+ - wiki_lingua
18
+ - garage-bAInd/Open-Platypus
19
+ - LDJnr/Puffin
20
+ - BAAI/COIG
21
+ - TigerResearch/tigerbot-zhihu-zh-10k
22
+ - liwu/MNBVC
23
+ - teknium/openhermes
24
+ - CausalLM/Refined-Anime-Text
25
+ - microsoft/orca-math-word-problems-200k
26
+ - m-a-p/CodeFeedback-Filtered-Instruction
27
+ base_model: CausalLM/35b-beta-long
28
+ tags:
29
+ - llama-cpp
30
+ - gguf-my-repo
31
+ ---
32
+
33
+ # jy-hxy/35b-beta-long-Q4_K_M-GGUF
34
+ This model was converted to GGUF format from [`CausalLM/35b-beta-long`](https://huggingface.co/CausalLM/35b-beta-long) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
35
+ Refer to the [original model card](https://huggingface.co/CausalLM/35b-beta-long) for more details on the model.
36
+
37
+ ## Use with llama.cpp
38
+ Install llama.cpp through brew (works on Mac and Linux)
39
+
40
+ ```bash
41
+ brew install llama.cpp
42
+
43
+ ```
44
+ Invoke the llama.cpp server or the CLI.
45
+
46
+ ### CLI:
47
+ ```bash
48
+ llama-cli --hf-repo jy-hxy/35b-beta-long-Q4_K_M-GGUF --hf-file 35b-beta-long-q4_k_m.gguf -p "The meaning to life and the universe is"
49
+ ```
50
+
51
+ ### Server:
52
+ ```bash
53
+ llama-server --hf-repo jy-hxy/35b-beta-long-Q4_K_M-GGUF --hf-file 35b-beta-long-q4_k_m.gguf -c 2048
54
+ ```
55
+
56
+ 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.
57
+
58
+ Step 1: Clone llama.cpp from GitHub.
59
+ ```
60
+ git clone https://github.com/ggerganov/llama.cpp
61
+ ```
62
+
63
+ 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).
64
+ ```
65
+ cd llama.cpp && LLAMA_CURL=1 make
66
+ ```
67
+
68
+ Step 3: Run inference through the main binary.
69
+ ```
70
+ ./llama-cli --hf-repo jy-hxy/35b-beta-long-Q4_K_M-GGUF --hf-file 35b-beta-long-q4_k_m.gguf -p "The meaning to life and the universe is"
71
+ ```
72
+ or
73
+ ```
74
+ ./llama-server --hf-repo jy-hxy/35b-beta-long-Q4_K_M-GGUF --hf-file 35b-beta-long-q4_k_m.gguf -c 2048
75
+ ```