--- language: - en license: apache-2.0 library_name: transformers tags: - biology - medical - healthcare - llama-cpp - gguf-my-repo datasets: - HPAI-BSC/Aloe-Beta-General-Collection - HPAI-BSC/chain-of-diagnosis - HPAI-BSC/MedS-Ins - HPAI-BSC/ultramedical - HPAI-BSC/pubmedqa-cot-llama31 - HPAI-BSC/medqa-cot-llama31 - HPAI-BSC/medmcqa-cot-llama31 - HPAI-BSC/headqa-cot-llama31 - HPAI-BSC/MMLU-medical-cot-llama31 - HPAI-BSC/Polymed-QA - HPAI-BSC/Aloe-Beta-General-Collection - HPAI-BSC/Aloe-Beta-General-Collection pipeline_tag: question-answering --- # farikaw599/Qwen2.5-Aloe-Beta-7B-Q4_K_M-GGUF 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. Refer to the [original model card](https://huggingface.co/HPAI-BSC/Qwen2.5-Aloe-Beta-7B) for more details on the model. ## Use with llama.cpp Install llama.cpp through brew. ```bash brew install ggerganov/ggerganov/llama.cpp ``` Invoke the llama.cpp server or the CLI. CLI: ```bash 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" ``` Server: ```bash 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 ``` 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. ``` 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 ```