pabloce commited on
Commit
a4681c9
1 Parent(s): e3f0c7a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -0
README.md ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ tags:
4
+ - llama-cpp
5
+ base_model: migtissera/Tess-v2.5-Qwen2-72B
6
+ ---
7
+
8
+ # pabloce/Tess-v2.5-Qwen2-72B
9
+
10
+ This model is a converted version of [`migtissera/Tess-v2.5-Qwen2-72B`](https://huggingface.co/migtissera/Tess-v2.5-Qwen2-72B) in GGUF format.
11
+
12
+ For more details on the original model, please refer to its [model card](https://huggingface.co/migtissera/Tess-v2.5-Qwen2-72B).
13
+
14
+ ## Installation
15
+
16
+ To use this model with llama.cpp, you can install llama.cpp through brew on Mac and Linux:
17
+
18
+ ```bash
19
+ brew install llama.cpp
20
+ ```
21
+
22
+ ## Usage
23
+
24
+ ### Command Line Interface (CLI)
25
+
26
+ To use the model via the CLI, run the following command:
27
+
28
+ ```bash
29
+ llama --hf-repo pabloce/Tess-v2.5-Qwen2-72B-gguff --hf-file tess-2.5-qwen-2-70b-q3_k_m.gguf -p "The meaning to life and the universe is"
30
+ ```
31
+
32
+ ### Server
33
+
34
+ To start the llama.cpp server with this model, use the following command:
35
+
36
+ ```bash
37
+ llama-server --hf-repo pabloce/Tess-v2.5-Qwen2-72B-gguff --hf-file tess-2.5-qwen-2-70b-q3_k_m.gguf -c 2048
38
+ ```
39
+
40
+ ## Alternative Usage
41
+
42
+ 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 repository.
43
+
44
+ 1. Clone the llama.cpp repository from GitHub:
45
+ ```
46
+ git clone https://github.com/ggerganov/llama.cpp
47
+ ```
48
+
49
+ 2. Navigate to the llama.cpp folder and build it with the `LLAMA_CURL=1` flag. You can also include other hardware-specific flags (e.g., `LLAMA_CUDA=1` for Nvidia GPUs on Linux):
50
+ ```
51
+ cd llama.cpp && LLAMA_CURL=1 make
52
+ ```
53
+
54
+ 3. Run inference through the main binary:
55
+ ```
56
+ ./main --hf-repo pabloce/Tess-v2.5-Qwen2-72B-gguf --hf-file tess-2.5-qwen-2-70b-q3_k_m.gguf -p "The meaning to life and the universe is"
57
+ ```
58
+ or start the server:
59
+ ```
60
+ ./server --hf-repo pabloce/Tess-v2.5-Qwen2-72B-gguf --hf-file tess-2.5-qwen-2-70b-q3_k_m.gguf -c 2048
61
+ ```