Ransss commited on
Commit
35a4e01
1 Parent(s): cc0b7ae

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ library_name: transformers
4
+ tags:
5
+ - mergekit
6
+ - merge
7
+ - llama-cpp
8
+ - gguf-my-repo
9
+ base_model:
10
+ - mlabonne/Daredevil-8B-abliterated
11
+ - ResplendentAI/RP_Format_QuoteAsterisk_Llama3
12
+ - mlabonne/Daredevil-8B-abliterated
13
+ - ResplendentAI/BlueMoon_Llama3
14
+ - mlabonne/Daredevil-8B-abliterated
15
+ - ResplendentAI/Luna_Llama3
16
+ - mlabonne/Daredevil-8B-abliterated
17
+ - mlabonne/Daredevil-8B-abliterated
18
+ - ResplendentAI/Aura_Llama3
19
+ - mlabonne/Daredevil-8B-abliterated
20
+ - ResplendentAI/Smarts_Llama3
21
+ ---
22
+
23
+ # Ransss/SOVLish-Devil-8B-L3-Q8_0-GGUF
24
+ This model was converted to GGUF format from [`saishf/SOVLish-Devil-8B-L3`](https://huggingface.co/saishf/SOVLish-Devil-8B-L3) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
25
+ Refer to the [original model card](https://huggingface.co/saishf/SOVLish-Devil-8B-L3) for more details on the model.
26
+ ## Use with llama.cpp
27
+ Install llama.cpp through brew.
28
+ ```bash
29
+ brew install ggerganov/ggerganov/llama.cpp
30
+ ```
31
+ Invoke the llama.cpp server or the CLI.
32
+ CLI:
33
+ ```bash
34
+ llama-cli --hf-repo Ransss/SOVLish-Devil-8B-L3-Q8_0-GGUF --model sovlish-devil-8b-l3-q8_0.gguf -p "The meaning to life and the universe is"
35
+ ```
36
+ Server:
37
+ ```bash
38
+ llama-server --hf-repo Ransss/SOVLish-Devil-8B-L3-Q8_0-GGUF --model sovlish-devil-8b-l3-q8_0.gguf -c 2048
39
+ ```
40
+ 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.
41
+ ```
42
+ git clone https://github.com/ggerganov/llama.cpp && \
43
+ cd llama.cpp && \
44
+ make && \
45
+ ./main -m sovlish-devil-8b-l3-q8_0.gguf -n 128
46
+ ```