foobar2333 commited on
Commit
5e770ae
·
verified ·
1 Parent(s): c952776

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
+ license: apache-2.0
3
+ base_model: huihui-ai/QwenLong-L1-32B-abliterated
4
+ tags:
5
+ - long-context
6
+ - large-reasoning-model
7
+ - chat
8
+ - abliterated
9
+ - uncensored
10
+ - llama-cpp
11
+ - gguf-my-repo
12
+ extra_gated_prompt: '**Usage Warnings**
13
+
14
+
15
+ “**Risk of Sensitive or Controversial Outputs**“: This model’s safety filtering
16
+ has been significantly reduced, potentially generating sensitive, controversial,
17
+ or inappropriate content. Users should exercise caution and rigorously review generated
18
+ outputs.
19
+
20
+ “**Not Suitable for All Audiences**:“ Due to limited content filtering, the model’s
21
+ outputs may be inappropriate for public settings, underage users, or applications
22
+ requiring high security.
23
+
24
+ “**Legal and Ethical Responsibilities**“: Users must ensure their usage complies
25
+ with local laws and ethical standards. Generated content may carry legal or ethical
26
+ risks, and users are solely responsible for any consequences.
27
+
28
+ “**Research and Experimental Use**“: It is recommended to use this model for research,
29
+ testing, or controlled environments, avoiding direct use in production or public-facing
30
+ commercial applications.
31
+
32
+ “**Monitoring and Review Recommendations**“: Users are strongly advised to monitor
33
+ model outputs in real-time and conduct manual reviews when necessary to prevent
34
+ the dissemination of inappropriate content.
35
+
36
+ “**No Default Safety Guarantees**“: Unlike standard models, this model has not undergone
37
+ rigorous safety optimization. huihui.ai bears no responsibility for any consequences
38
+ arising from its use.'
39
+ ---
40
+
41
+ # foobar2333/QwenLong-L1-32B-abliterated-Q4_K_M-GGUF
42
+ This model was converted to GGUF format from [`huihui-ai/QwenLong-L1-32B-abliterated`](https://huggingface.co/huihui-ai/QwenLong-L1-32B-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/QwenLong-L1-32B-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 foobar2333/QwenLong-L1-32B-abliterated-Q4_K_M-GGUF --hf-file qwenlong-l1-32b-abliterated-q4_k_m.gguf -p "The meaning to life and the universe is"
57
+ ```
58
+
59
+ ### Server:
60
+ ```bash
61
+ llama-server --hf-repo foobar2333/QwenLong-L1-32B-abliterated-Q4_K_M-GGUF --hf-file qwenlong-l1-32b-abliterated-q4_k_m.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 foobar2333/QwenLong-L1-32B-abliterated-Q4_K_M-GGUF --hf-file qwenlong-l1-32b-abliterated-q4_k_m.gguf -p "The meaning to life and the universe is"
79
+ ```
80
+ or
81
+ ```
82
+ ./llama-server --hf-repo foobar2333/QwenLong-L1-32B-abliterated-Q4_K_M-GGUF --hf-file qwenlong-l1-32b-abliterated-q4_k_m.gguf -c 2048
83
+ ```