Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
license: apache-2.0
|
5 |
+
tags:
|
6 |
+
- llama-cpp
|
7 |
+
datasets:
|
8 |
+
- cerebras/SlimPajama-627B
|
9 |
+
- bigcode/starcoderdata
|
10 |
+
- HuggingFaceH4/ultrachat_200k
|
11 |
+
- HuggingFaceH4/ultrafeedback_binarized
|
12 |
+
widget:
|
13 |
+
- example_title: Fibonacci (Python)
|
14 |
+
messages:
|
15 |
+
- role: system
|
16 |
+
content: You are a chatbot who can help code!
|
17 |
+
- role: user
|
18 |
+
content: Write me a function to calculate the first 10 digits of the fibonacci
|
19 |
+
sequence in Python and print it out to the CLI.
|
20 |
+
---
|
21 |
+
|
22 |
+
# reach-vb/TinyLlama-1.1B-Chat-v1.0-Q6_K-GGUF
|
23 |
+
This model was converted to GGUF format from [`TinyLlama/TinyLlama-1.1B-Chat-v1.0`](https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0) using llama.cpp.
|
24 |
+
Refer to the [original model card](https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0) for more details on the model.
|
25 |
+
## Use with llama.cpp
|
26 |
+
|
27 |
+
```bash
|
28 |
+
brew install ggerganov/ggerganov/llama.cpp
|
29 |
+
```
|
30 |
+
|
31 |
+
```bash
|
32 |
+
llama-cli --hf-repo reach-vb/TinyLlama-1.1B-Chat-v1.0-Q6_K-GGUF --model tinyllama-1.1b-chat-v1.0.Q6_K.gguf -p "The meaning to life and the universe is "
|
33 |
+
```
|
34 |
+
|
35 |
+
```bash
|
36 |
+
llama-server --hf-repo reach-vb/TinyLlama-1.1B-Chat-v1.0-Q6_K-GGUF --model tinyllama-1.1b-chat-v1.0.Q6_K.gguf -c 2048
|
37 |
+
```
|