Triangle104 commited on
Commit
bb4d68d
·
verified ·
1 Parent(s): 0f96b3f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +89 -0
README.md ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ library_name: transformers
6
+ base_model: huihui-ai/Homunculus-abliterated
7
+ tags:
8
+ - distillation
9
+ - /think
10
+ - /nothink
11
+ - reasoning-transfer
12
+ - arcee-ai
13
+ - chat
14
+ - abliterated
15
+ - uncensored
16
+ - llama-cpp
17
+ - gguf-my-repo
18
+ extra_gated_prompt: '**Usage Warnings**
19
+
20
+
21
+ “**Risk of Sensitive or Controversial Outputs**“: This model’s safety filtering
22
+ has been significantly reduced, potentially generating sensitive, controversial,
23
+ or inappropriate content. Users should exercise caution and rigorously review generated
24
+ outputs.
25
+
26
+ “**Not Suitable for All Audiences**:“ Due to limited content filtering, the model’s
27
+ outputs may be inappropriate for public settings, underage users, or applications
28
+ requiring high security.
29
+
30
+ “**Legal and Ethical Responsibilities**“: Users must ensure their usage complies
31
+ with local laws and ethical standards. Generated content may carry legal or ethical
32
+ risks, and users are solely responsible for any consequences.
33
+
34
+ “**Research and Experimental Use**“: It is recommended to use this model for research,
35
+ testing, or controlled environments, avoiding direct use in production or public-facing
36
+ commercial applications.
37
+
38
+ “**Monitoring and Review Recommendations**“: Users are strongly advised to monitor
39
+ model outputs in real-time and conduct manual reviews when necessary to prevent
40
+ the dissemination of inappropriate content.
41
+
42
+ “**No Default Safety Guarantees**“: Unlike standard models, this model has not undergone
43
+ rigorous safety optimization. huihui.ai bears no responsibility for any consequences
44
+ arising from its use.'
45
+ ---
46
+
47
+ # Triangle104/Homunculus-abliterated-Q5_K_S-GGUF
48
+ This model was converted to GGUF format from [`huihui-ai/Homunculus-abliterated`](https://huggingface.co/huihui-ai/Homunculus-abliterated) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
49
+ Refer to the [original model card](https://huggingface.co/huihui-ai/Homunculus-abliterated) for more details on the model.
50
+
51
+ ## Use with llama.cpp
52
+ Install llama.cpp through brew (works on Mac and Linux)
53
+
54
+ ```bash
55
+ brew install llama.cpp
56
+
57
+ ```
58
+ Invoke the llama.cpp server or the CLI.
59
+
60
+ ### CLI:
61
+ ```bash
62
+ llama-cli --hf-repo Triangle104/Homunculus-abliterated-Q5_K_S-GGUF --hf-file homunculus-abliterated-q5_k_s.gguf -p "The meaning to life and the universe is"
63
+ ```
64
+
65
+ ### Server:
66
+ ```bash
67
+ llama-server --hf-repo Triangle104/Homunculus-abliterated-Q5_K_S-GGUF --hf-file homunculus-abliterated-q5_k_s.gguf -c 2048
68
+ ```
69
+
70
+ 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.
71
+
72
+ Step 1: Clone llama.cpp from GitHub.
73
+ ```
74
+ git clone https://github.com/ggerganov/llama.cpp
75
+ ```
76
+
77
+ 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).
78
+ ```
79
+ cd llama.cpp && LLAMA_CURL=1 make
80
+ ```
81
+
82
+ Step 3: Run inference through the main binary.
83
+ ```
84
+ ./llama-cli --hf-repo Triangle104/Homunculus-abliterated-Q5_K_S-GGUF --hf-file homunculus-abliterated-q5_k_s.gguf -p "The meaning to life and the universe is"
85
+ ```
86
+ or
87
+ ```
88
+ ./llama-server --hf-repo Triangle104/Homunculus-abliterated-Q5_K_S-GGUF --hf-file homunculus-abliterated-q5_k_s.gguf -c 2048
89
+ ```