RakshitAralimatti commited on
Commit
296f184
verified
1 Parent(s): b4fcb1a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: peft
3
+ base_model: orYx-models/Mistral-7b-Lora-Medical-ChatSupport
4
+ license: apache-2.0
5
+ language:
6
+ - en
7
+ pipeline_tag: question-answering
8
+ tags:
9
+ - biology
10
+ - medical
11
+ - llama-cpp
12
+ - gguf-my-lora
13
+ ---
14
+
15
+ # RakshitAralimatti/Mistral-7b-Lora-Medical-ChatSupport-Q8_0-GGUF
16
+ This LoRA adapter was converted to GGUF format from [`orYx-models/Mistral-7b-Lora-Medical-ChatSupport`](https://huggingface.co/orYx-models/Mistral-7b-Lora-Medical-ChatSupport) via the ggml.ai's [GGUF-my-lora](https://huggingface.co/spaces/ggml-org/gguf-my-lora) space.
17
+ Refer to the [original adapter repository](https://huggingface.co/orYx-models/Mistral-7b-Lora-Medical-ChatSupport) for more details.
18
+
19
+ ## Use with llama.cpp
20
+
21
+ ```bash
22
+ # with cli
23
+ llama-cli -m base_model.gguf --lora Mistral-7b-Lora-Medical-ChatSupport-q8_0.gguf (...other args)
24
+
25
+ # with server
26
+ llama-server -m base_model.gguf --lora Mistral-7b-Lora-Medical-ChatSupport-q8_0.gguf (...other args)
27
+ ```
28
+
29
+ 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).