farikaw599 commited on
Commit
24ac331
verified
1 Parent(s): 41db121

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +56 -0
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ library_name: transformers
6
+ tags:
7
+ - biology
8
+ - medical
9
+ - healthcare
10
+ - llama-cpp
11
+ - gguf-my-repo
12
+ datasets:
13
+ - HPAI-BSC/Aloe-Beta-General-Collection
14
+ - HPAI-BSC/chain-of-diagnosis
15
+ - HPAI-BSC/MedS-Ins
16
+ - HPAI-BSC/ultramedical
17
+ - HPAI-BSC/pubmedqa-cot-llama31
18
+ - HPAI-BSC/medqa-cot-llama31
19
+ - HPAI-BSC/medmcqa-cot-llama31
20
+ - HPAI-BSC/headqa-cot-llama31
21
+ - HPAI-BSC/MMLU-medical-cot-llama31
22
+ - HPAI-BSC/Polymed-QA
23
+ - HPAI-BSC/Aloe-Beta-General-Collection
24
+ - HPAI-BSC/Aloe-Beta-General-Collection
25
+ pipeline_tag: question-answering
26
+ ---
27
+
28
+ # farikaw599/Qwen2.5-Aloe-Beta-7B-Q4_K_M-GGUF
29
+ This model was converted to GGUF format from [`HPAI-BSC/Qwen2.5-Aloe-Beta-7B`](https://huggingface.co/HPAI-BSC/Qwen2.5-Aloe-Beta-7B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
30
+ Refer to the [original model card](https://huggingface.co/HPAI-BSC/Qwen2.5-Aloe-Beta-7B) for more details on the model.
31
+ ## Use with llama.cpp
32
+
33
+ Install llama.cpp through brew.
34
+
35
+ ```bash
36
+ brew install ggerganov/ggerganov/llama.cpp
37
+ ```
38
+ Invoke the llama.cpp server or the CLI.
39
+
40
+ CLI:
41
+
42
+ ```bash
43
+ llama-cli --hf-repo farikaw599/Qwen2.5-Aloe-Beta-7B-Q4_K_M-GGUF --model qwen2.5-aloe-beta-7b.Q4_K_M.gguf -p "The meaning to life and the universe is"
44
+ ```
45
+
46
+ Server:
47
+
48
+ ```bash
49
+ llama-server --hf-repo farikaw599/Qwen2.5-Aloe-Beta-7B-Q4_K_M-GGUF --model qwen2.5-aloe-beta-7b.Q4_K_M.gguf -c 2048
50
+ ```
51
+
52
+ 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.
53
+
54
+ ```
55
+ git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make && ./main -m qwen2.5-aloe-beta-7b.Q4_K_M.gguf -n 128
56
+ ```