newsletter commited on
Commit
d8f1981
·
verified ·
1 Parent(s): 151e066

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +28 -11
README.md CHANGED
@@ -1,43 +1,60 @@
1
  ---
 
2
  license: apache-2.0
 
3
  tags:
4
  - finetuned
5
  - llama-cpp
6
  - gguf-my-repo
7
- pipeline_tag: text-generation
8
  inference: true
9
  widget:
10
  - messages:
11
  - role: user
12
  content: What is your favorite condiment?
 
 
13
  ---
14
 
15
  # newsletter/Mistral-7B-Instruct-v0.2-Q6_K-GGUF
16
  This model was converted to GGUF format from [`mistralai/Mistral-7B-Instruct-v0.2`](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
17
  Refer to the [original model card](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.2) for more details on the model.
18
- ## Use with llama.cpp
19
 
20
- Install llama.cpp through brew.
 
21
 
22
  ```bash
23
- brew install ggerganov/ggerganov/llama.cpp
 
24
  ```
25
  Invoke the llama.cpp server or the CLI.
26
 
27
- CLI:
28
-
29
  ```bash
30
- llama-cli --hf-repo newsletter/Mistral-7B-Instruct-v0.2-Q6_K-GGUF --model mistral-7b-instruct-v0.2.Q6_K.gguf -p "The meaning to life and the universe is"
31
  ```
32
 
33
- Server:
34
-
35
  ```bash
36
- llama-server --hf-repo newsletter/Mistral-7B-Instruct-v0.2-Q6_K-GGUF --model mistral-7b-instruct-v0.2.Q6_K.gguf -c 2048
37
  ```
38
 
39
  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.
40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  ```
42
- git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m mistral-7b-instruct-v0.2.Q6_K.gguf -n 128
43
  ```
 
1
  ---
2
+ base_model: mistralai/Mistral-7B-Instruct-v0.2
3
  license: apache-2.0
4
+ pipeline_tag: text-generation
5
  tags:
6
  - finetuned
7
  - llama-cpp
8
  - gguf-my-repo
 
9
  inference: true
10
  widget:
11
  - messages:
12
  - role: user
13
  content: What is your favorite condiment?
14
+ extra_gated_description: If you want to learn more about how we process your personal
15
+ data, please read our <a href="https://mistral.ai/terms/">Privacy Policy</a>.
16
  ---
17
 
18
  # newsletter/Mistral-7B-Instruct-v0.2-Q6_K-GGUF
19
  This model was converted to GGUF format from [`mistralai/Mistral-7B-Instruct-v0.2`](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
20
  Refer to the [original model card](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.2) for more details on the model.
 
21
 
22
+ ## Use with llama.cpp
23
+ Install llama.cpp through brew (works on Mac and Linux)
24
 
25
  ```bash
26
+ brew install llama.cpp
27
+
28
  ```
29
  Invoke the llama.cpp server or the CLI.
30
 
31
+ ### CLI:
 
32
  ```bash
33
+ llama-cli --hf-repo newsletter/Mistral-7B-Instruct-v0.2-Q6_K-GGUF --hf-file mistral-7b-instruct-v0.2-q6_k.gguf -p "The meaning to life and the universe is"
34
  ```
35
 
36
+ ### Server:
 
37
  ```bash
38
+ llama-server --hf-repo newsletter/Mistral-7B-Instruct-v0.2-Q6_K-GGUF --hf-file mistral-7b-instruct-v0.2-q6_k.gguf -c 2048
39
  ```
40
 
41
  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.
42
 
43
+ Step 1: Clone llama.cpp from GitHub.
44
+ ```
45
+ git clone https://github.com/ggerganov/llama.cpp
46
+ ```
47
+
48
+ 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).
49
+ ```
50
+ cd llama.cpp && LLAMA_CURL=1 make
51
+ ```
52
+
53
+ Step 3: Run inference through the main binary.
54
+ ```
55
+ ./llama-cli --hf-repo newsletter/Mistral-7B-Instruct-v0.2-Q6_K-GGUF --hf-file mistral-7b-instruct-v0.2-q6_k.gguf -p "The meaning to life and the universe is"
56
+ ```
57
+ or
58
  ```
59
+ ./llama-server --hf-repo newsletter/Mistral-7B-Instruct-v0.2-Q6_K-GGUF --hf-file mistral-7b-instruct-v0.2-q6_k.gguf -c 2048
60
  ```