CoruNethron commited on
Commit
2f49050
·
verified ·
1 Parent(s): 4826c3a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +74 -0
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pipeline_tag: text-generation
3
+ inference: false
4
+ license: apache-2.0
5
+ library_name: transformers
6
+ tags:
7
+ - language
8
+ - aquif
9
+ - text-generation-inference
10
+ - reasoning
11
+ - math
12
+ - coding
13
+ - frontier
14
+ - aquif-3.5
15
+ - moe
16
+ - llama-cpp
17
+ - gguf-my-repo
18
+ language:
19
+ - en
20
+ - de
21
+ - it
22
+ - pt
23
+ - fr
24
+ - hi
25
+ - es
26
+ - th
27
+ - zh
28
+ - ja
29
+ base_model: aquif-ai/aquif-3.5-Max-42B-A3B
30
+ ---
31
+
32
+ # CoruNethron/aquif-3.5-Max-42B-A3B-Q6_K-GGUF
33
+ This model was converted to GGUF format from [`aquif-ai/aquif-3.5-Max-42B-A3B`](https://huggingface.co/aquif-ai/aquif-3.5-Max-42B-A3B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
34
+ Refer to the [original model card](https://huggingface.co/aquif-ai/aquif-3.5-Max-42B-A3B) for more details on the model.
35
+
36
+ ## Use with llama.cpp
37
+ Install llama.cpp through brew (works on Mac and Linux)
38
+
39
+ ```bash
40
+ brew install llama.cpp
41
+
42
+ ```
43
+ Invoke the llama.cpp server or the CLI.
44
+
45
+ ### CLI:
46
+ ```bash
47
+ llama-cli --hf-repo CoruNethron/aquif-3.5-Max-42B-A3B-Q6_K-GGUF --hf-file aquif-3.5-max-42b-a3b-q6_k.gguf -p "The meaning to life and the universe is"
48
+ ```
49
+
50
+ ### Server:
51
+ ```bash
52
+ llama-server --hf-repo CoruNethron/aquif-3.5-Max-42B-A3B-Q6_K-GGUF --hf-file aquif-3.5-max-42b-a3b-q6_k.gguf -c 2048
53
+ ```
54
+
55
+ 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.
56
+
57
+ Step 1: Clone llama.cpp from GitHub.
58
+ ```
59
+ git clone https://github.com/ggerganov/llama.cpp
60
+ ```
61
+
62
+ 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).
63
+ ```
64
+ cd llama.cpp && LLAMA_CURL=1 make
65
+ ```
66
+
67
+ Step 3: Run inference through the main binary.
68
+ ```
69
+ ./llama-cli --hf-repo CoruNethron/aquif-3.5-Max-42B-A3B-Q6_K-GGUF --hf-file aquif-3.5-max-42b-a3b-q6_k.gguf -p "The meaning to life and the universe is"
70
+ ```
71
+ or
72
+ ```
73
+ ./llama-server --hf-repo CoruNethron/aquif-3.5-Max-42B-A3B-Q6_K-GGUF --hf-file aquif-3.5-max-42b-a3b-q6_k.gguf -c 2048
74
+ ```