umarigan commited on
Commit
e96601d
1 Parent(s): 4534fef

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - tr
5
+ license: apache-2.0
6
+ library_name: adapter-transformers
7
+ tags:
8
+ - text-generation-inference
9
+ - transformers
10
+ - unsloth
11
+ - mistral
12
+ - trl
13
+ - sft
14
+ - llama-cpp
15
+ - gguf-my-repo
16
+ base_model: Trendyol/Trendyol-LLM-7b-chat-v1.0
17
+ datasets:
18
+ - umarigan/openhermes_tr
19
+ ---
20
+
21
+ # umarigan/Hermes-7B-TR-Q5_K_M-GGUF
22
+ This model was converted to GGUF format from [`umarigan/Hermes-7B-TR`](https://huggingface.co/umarigan/Hermes-7B-TR) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
23
+ Refer to the [original model card](https://huggingface.co/umarigan/Hermes-7B-TR) for more details on the model.
24
+ ## Use with llama.cpp
25
+
26
+ Install llama.cpp through brew.
27
+
28
+ ```bash
29
+ brew install ggerganov/ggerganov/llama.cpp
30
+ ```
31
+ Invoke the llama.cpp server or the CLI.
32
+
33
+ CLI:
34
+
35
+ ```bash
36
+ llama-cli --hf-repo umarigan/Hermes-7B-TR-Q5_K_M-GGUF --model hermes-7b-tr.Q5_K_M.gguf -p "The meaning to life and the universe is"
37
+ ```
38
+
39
+ Server:
40
+
41
+ ```bash
42
+ llama-server --hf-repo umarigan/Hermes-7B-TR-Q5_K_M-GGUF --model hermes-7b-tr.Q5_K_M.gguf -c 2048
43
+ ```
44
+
45
+ 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.
46
+
47
+ ```
48
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m hermes-7b-tr.Q5_K_M.gguf -n 128
49
+ ```