xX-FANE-Xx commited on
Commit
c83c84d
1 Parent(s): b559139

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - fr
4
+ - it
5
+ - de
6
+ - es
7
+ - en
8
+ license: apache-2.0
9
+ tags:
10
+ - llama-cpp
11
+ - gguf-my-repo
12
+ inference:
13
+ parameters:
14
+ temperature: 0.5
15
+ widget:
16
+ - messages:
17
+ - role: user
18
+ content: What is your favorite condiment?
19
+ ---
20
+
21
+ # xX-FANE-Xx/Mixtral-8x7B-Instruct-v0.1-Q2_K-GGUF
22
+ This model was converted to GGUF format from [`mistralai/Mixtral-8x7B-Instruct-v0.1`](https://huggingface.co/mistralai/Mixtral-8x7B-Instruct-v0.1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
23
+ Refer to the [original model card](https://huggingface.co/mistralai/Mixtral-8x7B-Instruct-v0.1) for more details on the model.
24
+ ## Use with llama.cpp
25
+ Install llama.cpp through brew.
26
+ ```bash
27
+ brew install ggerganov/ggerganov/llama.cpp
28
+ ```
29
+ Invoke the llama.cpp server or the CLI.
30
+ CLI:
31
+ ```bash
32
+ llama-cli --hf-repo xX-FANE-Xx/Mixtral-8x7B-Instruct-v0.1-Q2_K-GGUF --model mixtral-8x7b-instruct-v0.1-q2_k.gguf -p "The meaning to life and the universe is"
33
+ ```
34
+ Server:
35
+ ```bash
36
+ llama-server --hf-repo xX-FANE-Xx/Mixtral-8x7B-Instruct-v0.1-Q2_K-GGUF --model mixtral-8x7b-instruct-v0.1-q2_k.gguf -c 2048
37
+ ```
38
+ 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.
39
+ ```
40
+ git clone https://github.com/ggerganov/llama.cpp && \
41
+ cd llama.cpp && \
42
+ make && \
43
+ ./main -m mixtral-8x7b-instruct-v0.1-q2_k.gguf -n 128
44
+ ```