helloAI333 commited on
Commit
90ea1b9
1 Parent(s): d4ed55a

Upload README.md with huggingface_hub

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