ramachandrajoshi commited on
Commit
c5bccb6
1 Parent(s): f9a49a7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - kn
5
+ license: llama2
6
+ library_name: adapter-transformers
7
+ tags:
8
+ - kannada
9
+ - bilingual
10
+ - llama-cpp
11
+ - gguf-my-repo
12
+ datasets:
13
+ - Cognitive-Lab/Kannada-Instruct-dataset
14
+ ---
15
+
16
+ # ramachandrajoshi/Ambari-7B-Instruct-v0.2-Q5_K_S-GGUF
17
+ This model was converted to GGUF format from [`Cognitive-Lab/Ambari-7B-Instruct-v0.2`](https://huggingface.co/Cognitive-Lab/Ambari-7B-Instruct-v0.2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
18
+ Refer to the [original model card](https://huggingface.co/Cognitive-Lab/Ambari-7B-Instruct-v0.2) for more details on the model.
19
+ ## Use with llama.cpp
20
+
21
+ Install llama.cpp through brew.
22
+
23
+ ```bash
24
+ brew install ggerganov/ggerganov/llama.cpp
25
+ ```
26
+ Invoke the llama.cpp server or the CLI.
27
+
28
+ CLI:
29
+
30
+ ```bash
31
+ llama-cli --hf-repo ramachandrajoshi/Ambari-7B-Instruct-v0.2-Q5_K_S-GGUF --model ambari-7b-instruct-v0.2.Q5_K_S.gguf -p "The meaning to life and the universe is"
32
+ ```
33
+
34
+ Server:
35
+
36
+ ```bash
37
+ llama-server --hf-repo ramachandrajoshi/Ambari-7B-Instruct-v0.2-Q5_K_S-GGUF --model ambari-7b-instruct-v0.2.Q5_K_S.gguf -c 2048
38
+ ```
39
+
40
+ 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.
41
+
42
+ ```
43
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m ambari-7b-instruct-v0.2.Q5_K_S.gguf -n 128
44
+ ```