Clevyby commited on
Commit
37d30a1
1 Parent(s): b7c709d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ tags:
6
+ - mistral
7
+ - uncensored
8
+ - merge
9
+ - slerp
10
+ - foredoomed
11
+ - passthrough_merge
12
+ - 9B
13
+ - starling
14
+ - hermes
15
+ - dolphin
16
+ - openchat
17
+ - erebus
18
+ - cockatrice
19
+ - holodeck
20
+ - limarp
21
+ - koboldai
22
+ - mergekit
23
+ - llama-cpp
24
+ - gguf-my-repo
25
+ ---
26
+
27
+ # Clevyby/Foredoomed-9B-Q5_K_S-GGUF
28
+ This model was converted to GGUF format from [`CalderaAI/Foredoomed-9B`](https://huggingface.co/CalderaAI/Foredoomed-9B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
29
+ Refer to the [original model card](https://huggingface.co/CalderaAI/Foredoomed-9B) for more details on the model.
30
+ ## Use with llama.cpp
31
+
32
+ Install llama.cpp through brew.
33
+
34
+ ```bash
35
+ brew install ggerganov/ggerganov/llama.cpp
36
+ ```
37
+ Invoke the llama.cpp server or the CLI.
38
+
39
+ CLI:
40
+
41
+ ```bash
42
+ llama-cli --hf-repo Clevyby/Foredoomed-9B-Q5_K_S-GGUF --model foredoomed-9b.Q5_K_S.gguf -p "The meaning to life and the universe is"
43
+ ```
44
+
45
+ Server:
46
+
47
+ ```bash
48
+ llama-server --hf-repo Clevyby/Foredoomed-9B-Q5_K_S-GGUF --model foredoomed-9b.Q5_K_S.gguf -c 2048
49
+ ```
50
+
51
+ 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.
52
+
53
+ ```
54
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m foredoomed-9b.Q5_K_S.gguf -n 128
55
+ ```