NikolayKozloff commited on
Commit
4157ecd
1 Parent(s): 348cdbe

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +46 -0
README.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - de
5
+ library_name: transformers
6
+ tags:
7
+ - gpt
8
+ - llm
9
+ - large language model
10
+ - h2o-llmstudio
11
+ - TMP-Networks LLM Studio
12
+ - llama-cpp
13
+ - gguf-my-repo
14
+ inference: false
15
+ thumbnail: https://h2o.ai/etc.clientlibs/h2o/clientlibs/clientlib-site/resources/images/favicon.ico
16
+ ---
17
+
18
+ # NikolayKozloff/EVA-GPT-German-v7-2-Beta-Q5_K_M-GGUF
19
+ This model was converted to GGUF format from [`MTSmash/EVA-GPT-German-v7-2-Beta`](https://huggingface.co/MTSmash/EVA-GPT-German-v7-2-Beta) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
20
+ Refer to the [original model card](https://huggingface.co/MTSmash/EVA-GPT-German-v7-2-Beta) for more details on the model.
21
+ ## Use with llama.cpp
22
+
23
+ Install llama.cpp through brew.
24
+
25
+ ```bash
26
+ brew install ggerganov/ggerganov/llama.cpp
27
+ ```
28
+ Invoke the llama.cpp server or the CLI.
29
+
30
+ CLI:
31
+
32
+ ```bash
33
+ llama-cli --hf-repo NikolayKozloff/EVA-GPT-German-v7-2-Beta-Q5_K_M-GGUF --model eva-gpt-german-v7-2-beta.Q5_K_M.gguf -p "The meaning to life and the universe is"
34
+ ```
35
+
36
+ Server:
37
+
38
+ ```bash
39
+ llama-server --hf-repo NikolayKozloff/EVA-GPT-German-v7-2-Beta-Q5_K_M-GGUF --model eva-gpt-german-v7-2-beta.Q5_K_M.gguf -c 2048
40
+ ```
41
+
42
+ 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.
43
+
44
+ ```
45
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m eva-gpt-german-v7-2-beta.Q5_K_M.gguf -n 128
46
+ ```