Impulse2000 commited on
Commit
f101ff2
·
verified ·
1 Parent(s): cff182f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +111 -0
README.md ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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/Magistral-Small-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: text2text-generation
34
+ tags:
35
+ - chat
36
+ - abliterated
37
+ - uncensored
38
+ - llama-cpp
39
+ - gguf-my-repo
40
+ extra_gated_prompt: '**Usage Warnings**
41
+
42
+
43
+ “**Risk of Sensitive or Controversial Outputs**“: This model’s safety filtering
44
+ has been significantly reduced, potentially generating sensitive, controversial,
45
+ or inappropriate content. Users should exercise caution and rigorously review generated
46
+ outputs.
47
+
48
+ “**Not Suitable for All Audiences**:“ Due to limited content filtering, the model’s
49
+ outputs may be inappropriate for public settings, underage users, or applications
50
+ requiring high security.
51
+
52
+ “**Legal and Ethical Responsibilities**“: Users must ensure their usage complies
53
+ with local laws and ethical standards. Generated content may carry legal or ethical
54
+ risks, and users are solely responsible for any consequences.
55
+
56
+ “**Research and Experimental Use**“: It is recommended to use this model for research,
57
+ testing, or controlled environments, avoiding direct use in production or public-facing
58
+ commercial applications.
59
+
60
+ “**Monitoring and Review Recommendations**“: Users are strongly advised to monitor
61
+ model outputs in real-time and conduct manual reviews when necessary to prevent
62
+ the dissemination of inappropriate content.
63
+
64
+ “**No Default Safety Guarantees**“: Unlike standard models, this model has not undergone
65
+ rigorous safety optimization. huihui.ai bears no responsibility for any consequences
66
+ arising from its use.'
67
+ ---
68
+
69
+ # Impulse2000/Magistral-Small-2506-abliterated-Q6_K-GGUF
70
+ This model was converted to GGUF format from [`huihui-ai/Magistral-Small-2506-abliterated`](https://huggingface.co/huihui-ai/Magistral-Small-2506-abliterated) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
71
+ Refer to the [original model card](https://huggingface.co/huihui-ai/Magistral-Small-2506-abliterated) for more details on the model.
72
+
73
+ ## Use with llama.cpp
74
+ Install llama.cpp through brew (works on Mac and Linux)
75
+
76
+ ```bash
77
+ brew install llama.cpp
78
+
79
+ ```
80
+ Invoke the llama.cpp server or the CLI.
81
+
82
+ ### CLI:
83
+ ```bash
84
+ llama-cli --hf-repo Impulse2000/Magistral-Small-2506-abliterated-Q6_K-GGUF --hf-file magistral-small-2506-abliterated-q6_k.gguf -p "The meaning to life and the universe is"
85
+ ```
86
+
87
+ ### Server:
88
+ ```bash
89
+ llama-server --hf-repo Impulse2000/Magistral-Small-2506-abliterated-Q6_K-GGUF --hf-file magistral-small-2506-abliterated-q6_k.gguf -c 2048
90
+ ```
91
+
92
+ 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.
93
+
94
+ Step 1: Clone llama.cpp from GitHub.
95
+ ```
96
+ git clone https://github.com/ggerganov/llama.cpp
97
+ ```
98
+
99
+ 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).
100
+ ```
101
+ cd llama.cpp && LLAMA_CURL=1 make
102
+ ```
103
+
104
+ Step 3: Run inference through the main binary.
105
+ ```
106
+ ./llama-cli --hf-repo Impulse2000/Magistral-Small-2506-abliterated-Q6_K-GGUF --hf-file magistral-small-2506-abliterated-q6_k.gguf -p "The meaning to life and the universe is"
107
+ ```
108
+ or
109
+ ```
110
+ ./llama-server --hf-repo Impulse2000/Magistral-Small-2506-abliterated-Q6_K-GGUF --hf-file magistral-small-2506-abliterated-q6_k.gguf -c 2048
111
+ ```