FrankSAB commited on
Commit
ca636bf
·
verified ·
1 Parent(s): c18453b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: FrankSAB/EU-AI-ACT-2
3
+ datasets:
4
+ - FrankSAB/EU-AI-ACT-2
5
+ library_name: transformers
6
+ license: other
7
+ tags:
8
+ - autotrain
9
+ - text-generation-inference
10
+ - text-generation
11
+ - peft
12
+ - llama-cpp
13
+ - gguf-my-lora
14
+ widget:
15
+ - messages:
16
+ - role: user
17
+ content: What is your favorite condiment?
18
+ ---
19
+
20
+ # FrankSAB/EU-AI-ACT-2-F16-GGUF
21
+ This LoRA adapter was converted to GGUF format from [`FrankSAB/EU-AI-ACT-2`](https://huggingface.co/FrankSAB/EU-AI-ACT-2) via the ggml.ai's [GGUF-my-lora](https://huggingface.co/spaces/ggml-org/gguf-my-lora) space.
22
+ Refer to the [original adapter repository](https://huggingface.co/FrankSAB/EU-AI-ACT-2) for more details.
23
+
24
+ ## Use with llama.cpp
25
+
26
+ ```bash
27
+ # with cli
28
+ llama-cli -m base_model.gguf --lora EU-AI-ACT-2-f16.gguf (...other args)
29
+
30
+ # with server
31
+ llama-server -m base_model.gguf --lora EU-AI-ACT-2-f16.gguf (...other args)
32
+ ```
33
+
34
+ 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).