therummage commited on
Commit
5cd724d
·
verified ·
1 Parent(s): 811ac1f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +83 -0
README.md ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - fr
5
+ - de
6
+ - es
7
+ - pt
8
+ - it
9
+ - ja
10
+ - ko
11
+ - ru
12
+ - zh
13
+ - ar
14
+ - fa
15
+ - id
16
+ - ms
17
+ - ne
18
+ - pl
19
+ - ro
20
+ - sr
21
+ - sv
22
+ - tr
23
+ - uk
24
+ - vi
25
+ - hi
26
+ - bn
27
+ license: apache-2.0
28
+ library_name: vllm
29
+ inference: false
30
+ base_model: huihui-ai/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated
31
+ extra_gated_description: If you want to learn more about how we process your personal
32
+ data, please read our <a href="https://mistral.ai/terms/">Privacy Policy</a>.
33
+ pipeline_tag: image-text-to-text
34
+ tags:
35
+ - abliterated
36
+ - uncensored
37
+ - llama-cpp
38
+ - gguf-my-repo
39
+ ---
40
+
41
+ # therummage/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated-Q8_0-GGUF
42
+ This model was converted to GGUF format from [`huihui-ai/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated`](https://huggingface.co/huihui-ai/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
43
+ Refer to the [original model card](https://huggingface.co/huihui-ai/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated) for more details on the model.
44
+
45
+ ## Use with llama.cpp
46
+ Install llama.cpp through brew (works on Mac and Linux)
47
+
48
+ ```bash
49
+ brew install llama.cpp
50
+
51
+ ```
52
+ Invoke the llama.cpp server or the CLI.
53
+
54
+ ### CLI:
55
+ ```bash
56
+ llama-cli --hf-repo therummage/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated-Q8_0-GGUF --hf-file huihui-mistral-small-3.2-24b-instruct-2506-abliterated-q8_0.gguf -p "The meaning to life and the universe is"
57
+ ```
58
+
59
+ ### Server:
60
+ ```bash
61
+ llama-server --hf-repo therummage/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated-Q8_0-GGUF --hf-file huihui-mistral-small-3.2-24b-instruct-2506-abliterated-q8_0.gguf -c 2048
62
+ ```
63
+
64
+ 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.
65
+
66
+ Step 1: Clone llama.cpp from GitHub.
67
+ ```
68
+ git clone https://github.com/ggerganov/llama.cpp
69
+ ```
70
+
71
+ 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).
72
+ ```
73
+ cd llama.cpp && LLAMA_CURL=1 make
74
+ ```
75
+
76
+ Step 3: Run inference through the main binary.
77
+ ```
78
+ ./llama-cli --hf-repo therummage/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated-Q8_0-GGUF --hf-file huihui-mistral-small-3.2-24b-instruct-2506-abliterated-q8_0.gguf -p "The meaning to life and the universe is"
79
+ ```
80
+ or
81
+ ```
82
+ ./llama-server --hf-repo therummage/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated-Q8_0-GGUF --hf-file huihui-mistral-small-3.2-24b-instruct-2506-abliterated-q8_0.gguf -c 2048
83
+ ```