NikolayKozloff commited on
Commit
8d18351
1 Parent(s): eac8160

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - llama-cpp
5
+ - gguf-my-repo
6
+ datasets:
7
+ - NobodyExistsOnTheInternet/ToxicQAFinal
8
+ ---
9
+
10
+ # NikolayKozloff/Alpha-Orionis-v0.1-Q5_K_S-GGUF
11
+ This model was converted to GGUF format from [`fearlessdots/Alpha-Orionis-v0.1`](https://huggingface.co/fearlessdots/Alpha-Orionis-v0.1) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
12
+ Refer to the [original model card](https://huggingface.co/fearlessdots/Alpha-Orionis-v0.1) for more details on the model.
13
+ ## Use with llama.cpp
14
+ Install llama.cpp through brew.
15
+ ```bash
16
+ brew install ggerganov/ggerganov/llama.cpp
17
+ ```
18
+ Invoke the llama.cpp server or the CLI.
19
+ CLI:
20
+ ```bash
21
+ llama-cli --hf-repo NikolayKozloff/Alpha-Orionis-v0.1-Q5_K_S-GGUF --model alpha-orionis-v0.1-q5_k_s.gguf -p "The meaning to life and the universe is"
22
+ ```
23
+ Server:
24
+ ```bash
25
+ llama-server --hf-repo NikolayKozloff/Alpha-Orionis-v0.1-Q5_K_S-GGUF --model alpha-orionis-v0.1-q5_k_s.gguf -c 2048
26
+ ```
27
+ 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.
28
+ ```
29
+ git clone https://github.com/ggerganov/llama.cpp && \
30
+ cd llama.cpp && \
31
+ make && \
32
+ ./main -m alpha-orionis-v0.1-q5_k_s.gguf -n 128
33
+ ```