Question Answering
Transformers
GGUF
English
biology
medical
healthcare
TensorBlock
GGUF
conversational
Instructions to use tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF", device_map="auto") - llama-cpp-python
How to use tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF", filename="Qwen2.5-Aloe-Beta-7B-Q2_K.gguf", )
llm.create_chat_completion( messages = "{\n \"question\": \"What is my name?\",\n \"context\": \"My name is Clara and I live in Berkeley.\"\n}" ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF with Ollama:
ollama run hf.co/tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF to start chatting
- Pi
How to use tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K
- Lemonade
How to use tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/Qwen2.5-Aloe-Beta-7B-GGUF:Q2_K
Run and chat with the model
lemonade run user.Qwen2.5-Aloe-Beta-7B-GGUF-Q2_K
List all available models
lemonade list
Keep Q2_K/Q3_K_M gguf only
Browse files- Qwen2.5-Aloe-Beta-7B-Q3_K_L.gguf +0 -3
- Qwen2.5-Aloe-Beta-7B-Q3_K_S.gguf +0 -3
- Qwen2.5-Aloe-Beta-7B-Q4_0.gguf +0 -3
- Qwen2.5-Aloe-Beta-7B-Q4_K_M.gguf +0 -3
- Qwen2.5-Aloe-Beta-7B-Q4_K_S.gguf +0 -3
- Qwen2.5-Aloe-Beta-7B-Q5_0.gguf +0 -3
- Qwen2.5-Aloe-Beta-7B-Q5_K_M.gguf +0 -3
- Qwen2.5-Aloe-Beta-7B-Q5_K_S.gguf +0 -3
- Qwen2.5-Aloe-Beta-7B-Q6_K.gguf +0 -3
- Qwen2.5-Aloe-Beta-7B-Q8_0.gguf +0 -3
Qwen2.5-Aloe-Beta-7B-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:be86174d8f291e14a82be85cbf4e1b27bf603f7b5d377ef9e5b694b821982d63
|
| 3 |
-
size 4088461920
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-Aloe-Beta-7B-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:50c195e9133f2ac137e0b3f55508ccd0f20004d0cfdef806d78250bbb0d0e01b
|
| 3 |
-
size 3492371040
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-Aloe-Beta-7B-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:1a76c0af1319e0c84954e1e1a72b01c31e56f6143d30333579c2740c3b0282cb
|
| 3 |
-
size 4431393376
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-Aloe-Beta-7B-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:086af8a7a8d644a1f65495de4d78171bb2affe232dabeb5826dc8a1f38c8f0dd
|
| 3 |
-
size 4683076192
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-Aloe-Beta-7B-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c8e4ef2c7180b7ce43b4cfd869f0b6960232ff076aea16b51c5d941a3fab9eaa
|
| 3 |
-
size 4457771616
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-Aloe-Beta-7B-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d0c41e3e91902040aeef0c29aff27a48b1f6db56a66147ebe85bc237756adcf5
|
| 3 |
-
size 5315179104
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-Aloe-Beta-7B-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c584b9b28c576c52bbeda56c9be23838bcac879a21162e8cba93f5c50b95e1d9
|
| 3 |
-
size 5444833888
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-Aloe-Beta-7B-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:983eef37033e456928326b5b1cdfe793bf06e198987b14407884e318d280941b
|
| 3 |
-
size 5315179104
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-Aloe-Beta-7B-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:f9aa64575300c41998089209db50a4f36acac679d99175ad0f077baf22cb28b7
|
| 3 |
-
size 6254201440
|
|
|
|
|
|
|
|
|
|
|
|
Qwen2.5-Aloe-Beta-7B-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a612bdb61e965a75ec163962754d478fbb793bd591a32d5a7ae2584aff0eb7d1
|
| 3 |
-
size 8098527840
|
|
|
|
|
|
|
|
|
|
|
|