ldostadi commited on
Commit
ec193a0
·
verified ·
1 Parent(s): fd193fe

Upload README.md with huggingface_hub

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