ApprikatAI commited on
Commit
a292aa8
·
verified ·
1 Parent(s): 5dffe5e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +30 -0
README.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: llmware/bling-qwen-1.5b
3
+ license: apache-2.0
4
+ tags:
5
+ - llama-cpp
6
+ - gguf-my-repo
7
+ inference: false
8
+ ---
9
+
10
+ # ApprikatAI/bling-qwen-1.5b-FP16-GGUF
11
+ This model was converted to GGUF format from [`llmware/bling-qwen-1.5b`](https://huggingface.co/llmware/bling-qwen-1.5b) 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/llmware/bling-qwen-1.5b) for more details on the model.
13
+
14
+ ## Use with llama.cpp
15
+ Install llama.cpp through brew (works on Mac and Linux)
16
+
17
+ ```bash
18
+ brew install llama.cpp
19
+ ```
20
+ Invoke the llama.cpp server or the CLI.
21
+
22
+ ### CLI:
23
+ ```bash
24
+ llama-cli --hf-repo ApprikatAI/bling-qwen-1.5b-FP16-GGUF --hf-file bling-qwen-1.5b-fp16.gguf -p "The meaning to life and the universe is"
25
+ ```
26
+
27
+ ### Server:
28
+ ```bash
29
+ llama-server --hf-repo ApprikatAI/bling-qwen-1.5b-FP16-GGUF --hf-file bling-qwen-1.5b-fp16.gguf -c 2048
30
+ ```