GGUF
German
llama-cpp
gguf-my-repo
Inference Endpoints
conversational
Fadikkop commited on
Commit
2a4e54b
·
verified ·
1 Parent(s): 8205ef6

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
+ language:
3
+ - de
4
+ license: apache-2.0
5
+ tags:
6
+ - llama-cpp
7
+ - gguf-my-repo
8
+ datasets:
9
+ - FreedomIntelligence/evol-instruct-deutsch
10
+ - FreedomIntelligence/alpaca-gpt4-deutsch
11
+ ---
12
+
13
+ # Fadikkop/TinyLlama-1.1B-Chat-v1.0-german-Q4_K_M-GGUF
14
+ This model was converted to GGUF format from [`mayflowergmbh/TinyLlama-1.1B-Chat-v1.0-german`](https://huggingface.co/mayflowergmbh/TinyLlama-1.1B-Chat-v1.0-german) 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/mayflowergmbh/TinyLlama-1.1B-Chat-v1.0-german) 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 Fadikkop/TinyLlama-1.1B-Chat-v1.0-german-Q4_K_M-GGUF --model tinyllama-1.1b-chat-v1.0-german.Q4_K_M.gguf -p "The meaning to life and the universe is"
29
+ ```
30
+
31
+ Server:
32
+
33
+ ```bash
34
+ llama-server --hf-repo Fadikkop/TinyLlama-1.1B-Chat-v1.0-german-Q4_K_M-GGUF --model tinyllama-1.1b-chat-v1.0-german.Q4_K_M.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-1.1b-chat-v1.0-german.Q4_K_M.gguf -n 128
41
+ ```