juklein commited on
Commit
076952c
·
verified ·
1 Parent(s): 7030863

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +31 -0
README.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: adrake17/Meta-Llama-2-7B-Chat-Amazon
3
+ datasets:
4
+ - McAuley-Lab/Amazon-Reviews-2023
5
+ language:
6
+ - en
7
+ library_name: peft
8
+ license: mit
9
+ metrics:
10
+ - rouge
11
+ pipeline_tag: text-generation
12
+ tags:
13
+ - llama-cpp
14
+ - gguf-my-lora
15
+ ---
16
+
17
+ # juklein/Meta-Llama-2-7B-Chat-Amazon-F16-GGUF
18
+ This LoRA adapter was converted to GGUF format from [`adrake17/Meta-Llama-2-7B-Chat-Amazon`](https://huggingface.co/adrake17/Meta-Llama-2-7B-Chat-Amazon) via the ggml.ai's [GGUF-my-lora](https://huggingface.co/spaces/ggml-org/gguf-my-lora) space.
19
+ Refer to the [original adapter repository](https://huggingface.co/adrake17/Meta-Llama-2-7B-Chat-Amazon) for more details.
20
+
21
+ ## Use with llama.cpp
22
+
23
+ ```bash
24
+ # with cli
25
+ llama-cli -m base_model.gguf --lora Meta-Llama-2-7B-Chat-Amazon-f16.gguf (...other args)
26
+
27
+ # with server
28
+ llama-server -m base_model.gguf --lora Meta-Llama-2-7B-Chat-Amazon-f16.gguf (...other args)
29
+ ```
30
+
31
+ To know more about LoRA usage with llama.cpp server, refer to the [llama.cpp server documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/server/README.md).