Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
tags:
|
4 |
+
- trl
|
5 |
+
- sft
|
6 |
+
- generated_from_trainer
|
7 |
+
- llama-cpp
|
8 |
+
- gguf-my-repo
|
9 |
+
base_model: TinyLlama/TinyLlama-1.1B-Chat-v1.0
|
10 |
+
datasets:
|
11 |
+
- generator
|
12 |
+
model-index:
|
13 |
+
- name: TinyLlama-1.1B-Chat-v1.0-reasoning-v2
|
14 |
+
results: []
|
15 |
+
---
|
16 |
+
|
17 |
+
# DavidAU/TinyLlama-1.1B-Chat-v1.0-reasoning-v2-Q8_0-GGUF
|
18 |
+
This model was converted to GGUF format from [`alexredna/TinyLlama-1.1B-Chat-v1.0-reasoning-v2`](https://huggingface.co/alexredna/TinyLlama-1.1B-Chat-v1.0-reasoning-v2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
19 |
+
Refer to the [original model card](https://huggingface.co/alexredna/TinyLlama-1.1B-Chat-v1.0-reasoning-v2) for more details on the model.
|
20 |
+
## Use with llama.cpp
|
21 |
+
|
22 |
+
Install llama.cpp through brew.
|
23 |
+
|
24 |
+
```bash
|
25 |
+
brew install ggerganov/ggerganov/llama.cpp
|
26 |
+
```
|
27 |
+
Invoke the llama.cpp server or the CLI.
|
28 |
+
|
29 |
+
CLI:
|
30 |
+
|
31 |
+
```bash
|
32 |
+
llama-cli --hf-repo DavidAU/TinyLlama-1.1B-Chat-v1.0-reasoning-v2-Q8_0-GGUF --model tinyllama-1.1b-chat-v1.0-reasoning-v2.Q8_0.gguf -p "The meaning to life and the universe is"
|
33 |
+
```
|
34 |
+
|
35 |
+
Server:
|
36 |
+
|
37 |
+
```bash
|
38 |
+
llama-server --hf-repo DavidAU/TinyLlama-1.1B-Chat-v1.0-reasoning-v2-Q8_0-GGUF --model tinyllama-1.1b-chat-v1.0-reasoning-v2.Q8_0.gguf -c 2048
|
39 |
+
```
|
40 |
+
|
41 |
+
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.
|
42 |
+
|
43 |
+
```
|
44 |
+
git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m tinyllama-1.1b-chat-v1.0-reasoning-v2.Q8_0.gguf -n 128
|
45 |
+
```
|