BoltMonkey commited on
Commit
7dd377b
·
verified ·
1 Parent(s): bfef863

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -3
README.md CHANGED
@@ -1,3 +1,60 @@
1
- ---
2
- license: llama3.1
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: llama3.1
3
+ base_model: BoltMonkey/NeuralDaredevil-SuperNova-Lite-7B-DARETIES-abliterated
4
+ tags:
5
+ - merge
6
+ - mergekit
7
+ - lazymergekit
8
+ - mlabonne/NeuralDaredevil-8B-abliterated
9
+ - grimjim/Llama-3.1-SuperNova-Lite-lorabilterated-8B
10
+ - llama-cpp
11
+ - gguf-my-repo
12
+ ---
13
+
14
+ # NeuralDaredevil-SuperNova-Lite-7B-DARETIES-abliterated-GGUF
15
+ This model was converted to GGUF format from [`BoltMonkey/NeuralDaredevil-SuperNova-Lite-7B-DARETIES-abliterated`](https://huggingface.co/BoltMonkey/NeuralDaredevil-SuperNova-Lite-7B-DARETIES-abliterated) space.
16
+ Refer to the [original model card](https://huggingface.co/BoltMonkey/NeuralDaredevil-SuperNova-Lite-7B-DARETIES-abliterated) for more details on the model.
17
+
18
+ The following GGUFs are available:
19
+ * [Q4_K_M](https://huggingface.co/BoltMonkey/NeuralDaredevil-SuperNova-Lite-7B-DARETIES-abliterated-GGUF/resolve/main/neuraldaredevil-supernova7b-dareties-abliterated-q4_k_m.gguf?download=true) ...... **4.92GB**
20
+ * [Q5_K_M](https://huggingface.co/BoltMonkey/NeuralDaredevil-SuperNova-Lite-7B-DARETIES-abliterated-GGUF/resolve/main/neuraldaredevil-supernova7b-dareties-abliterated-q5_k_m.gguf?download=true) ...... **5.73GB** _recommended_
21
+
22
+ ## Use with llama.cpp
23
+ Install llama.cpp through brew (works on Mac and Linux)
24
+
25
+ ```bash
26
+ brew install llama.cpp
27
+
28
+ ```
29
+ Invoke the llama.cpp server or the CLI.
30
+
31
+ ### CLI:
32
+ ```bash
33
+ llama-cli --hf-repo BoltMonkey/NeuralDaredevil-SuperNova-Lite-7B-DARETIES-abliterated-GGUF --hf-file neuraldaredevil-supernova7b-dareties-abliterated-q5_k_m.gguf -p "The meaning to life and the universe is"
34
+ ```
35
+
36
+ ### Server:
37
+ ```bash
38
+ llama-server --hf-repo BoltMonkey/NeuralDaredevil-SuperNova-Lite-7B-DARETIES-abliterated-GGUF --hf-file neuraldaredevil-supernova7b-dareties-abliterated-q5_k_m.gguf -c 2048
39
+ ```
40
+
41
+ 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.
42
+
43
+ Step 1: Clone llama.cpp from GitHub.
44
+ ```
45
+ git clone https://github.com/ggerganov/llama.cpp
46
+ ```
47
+
48
+ 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).
49
+ ```
50
+ cd llama.cpp && LLAMA_CURL=1 make
51
+ ```
52
+
53
+ Step 3: Run inference through the main binary.
54
+ ```
55
+ ./llama-cli --hf-repo BoltMonkey/NeuralDaredevil-SuperNova-Lite-7B-DARETIES-abliterated-GGUF --hf-file neuraldaredevil-supernova7b-dareties-abliterated-q5_k_m.gguf -p "The meaning to life and the universe is"
56
+ ```
57
+ or
58
+ ```
59
+ ./llama-server --hf-repo BoltMonkey/NeuralDaredevil-SuperNova-Lite-7B-DARETIES-abliterated-GGUF --hf-file neuraldaredevil-supernova7b-dareties-abliterated-q5_k_m.gguf -c 2048
60
+ ```