AliCat2 commited on
Commit
8195851
1 Parent(s): 4121778

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +67 -0
README.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ datasets:
5
+ - anthracite-org/kalo-opus-instruct-22k-no-refusal
6
+ - Nopm/Opus_WritingStruct
7
+ - Gryphe/Sonnet3.5-SlimOrcaDedupCleaned
8
+ - Gryphe/Sonnet3.5-Charcard-Roleplay
9
+ - Gryphe/ChatGPT-4o-Writing-Prompts
10
+ - Epiculous/Synthstruct-Gens-v1.1-Filtered-n-Cleaned
11
+ - Epiculous/SynthRP-Gens-v1.1-Filtered-n-Cleaned
12
+ - nothingiisreal/Reddit-Dirty-And-WritingPrompts
13
+ - allura-org/Celeste-1.x-data-mixture
14
+ - cognitivecomputations/dolphin-2.9.3
15
+ base_model: EVA-UNIT-01/EVA-Qwen2.5-32B-v0.2
16
+ tags:
17
+ - generated_from_trainer
18
+ - llama-cpp
19
+ - gguf-my-repo
20
+ model-index:
21
+ - name: EVA-Qwen2.5-32B-SFFT-v0.1
22
+ results: []
23
+ ---
24
+
25
+ # AliCat2/EVA-Qwen2.5-32B-v0.2-Q4_K_S-GGUF
26
+ This model was converted to GGUF format from [`EVA-UNIT-01/EVA-Qwen2.5-32B-v0.2`](https://huggingface.co/EVA-UNIT-01/EVA-Qwen2.5-32B-v0.2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
27
+ Refer to the [original model card](https://huggingface.co/EVA-UNIT-01/EVA-Qwen2.5-32B-v0.2) for more details on the model.
28
+
29
+ ## Use with llama.cpp
30
+ Install llama.cpp through brew (works on Mac and Linux)
31
+
32
+ ```bash
33
+ brew install llama.cpp
34
+
35
+ ```
36
+ Invoke the llama.cpp server or the CLI.
37
+
38
+ ### CLI:
39
+ ```bash
40
+ llama-cli --hf-repo AliCat2/EVA-Qwen2.5-32B-v0.2-Q4_K_S-GGUF --hf-file eva-qwen2.5-32b-v0.2-q4_k_s.gguf -p "The meaning to life and the universe is"
41
+ ```
42
+
43
+ ### Server:
44
+ ```bash
45
+ llama-server --hf-repo AliCat2/EVA-Qwen2.5-32B-v0.2-Q4_K_S-GGUF --hf-file eva-qwen2.5-32b-v0.2-q4_k_s.gguf -c 2048
46
+ ```
47
+
48
+ 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.
49
+
50
+ Step 1: Clone llama.cpp from GitHub.
51
+ ```
52
+ git clone https://github.com/ggerganov/llama.cpp
53
+ ```
54
+
55
+ 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).
56
+ ```
57
+ cd llama.cpp && LLAMA_CURL=1 make
58
+ ```
59
+
60
+ Step 3: Run inference through the main binary.
61
+ ```
62
+ ./llama-cli --hf-repo AliCat2/EVA-Qwen2.5-32B-v0.2-Q4_K_S-GGUF --hf-file eva-qwen2.5-32b-v0.2-q4_k_s.gguf -p "The meaning to life and the universe is"
63
+ ```
64
+ or
65
+ ```
66
+ ./llama-server --hf-repo AliCat2/EVA-Qwen2.5-32B-v0.2-Q4_K_S-GGUF --hf-file eva-qwen2.5-32b-v0.2-q4_k_s.gguf -c 2048
67
+ ```