File size: 942 Bytes
a292aa8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
base_model: llmware/bling-qwen-1.5b
license: apache-2.0
tags:
- llama-cpp
- gguf-my-repo
inference: false
---

# ApprikatAI/bling-qwen-1.5b-FP16-GGUF
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.
Refer to the [original model card](https://huggingface.co/llmware/bling-qwen-1.5b) for more details on the model.

## Use with llama.cpp
Install llama.cpp through brew (works on Mac and Linux)

```bash
brew install llama.cpp
```
Invoke the llama.cpp server or the CLI.

### CLI:
```bash
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"
```

### Server:
```bash
llama-server --hf-repo ApprikatAI/bling-qwen-1.5b-FP16-GGUF --hf-file bling-qwen-1.5b-fp16.gguf -c 2048
```