Instructions to use bartowski/Rhea-72b-v0.5-GGUF-broken with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use bartowski/Rhea-72b-v0.5-GGUF-broken with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="bartowski/Rhea-72b-v0.5-GGUF-broken")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("bartowski/Rhea-72b-v0.5-GGUF-broken", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use bartowski/Rhea-72b-v0.5-GGUF-broken 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 bartowski/Rhea-72b-v0.5-GGUF-broken:Q4_K_M # Run inference directly in the terminal: llama cli -hf bartowski/Rhea-72b-v0.5-GGUF-broken:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf bartowski/Rhea-72b-v0.5-GGUF-broken:Q4_K_M # Run inference directly in the terminal: llama cli -hf bartowski/Rhea-72b-v0.5-GGUF-broken:Q4_K_M
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 bartowski/Rhea-72b-v0.5-GGUF-broken:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf bartowski/Rhea-72b-v0.5-GGUF-broken:Q4_K_M
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 bartowski/Rhea-72b-v0.5-GGUF-broken:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bartowski/Rhea-72b-v0.5-GGUF-broken:Q4_K_M
Use Docker
docker model run hf.co/bartowski/Rhea-72b-v0.5-GGUF-broken:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use bartowski/Rhea-72b-v0.5-GGUF-broken with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bartowski/Rhea-72b-v0.5-GGUF-broken" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bartowski/Rhea-72b-v0.5-GGUF-broken", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/bartowski/Rhea-72b-v0.5-GGUF-broken:Q4_K_M
- SGLang
How to use bartowski/Rhea-72b-v0.5-GGUF-broken with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "bartowski/Rhea-72b-v0.5-GGUF-broken" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bartowski/Rhea-72b-v0.5-GGUF-broken", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "bartowski/Rhea-72b-v0.5-GGUF-broken" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "bartowski/Rhea-72b-v0.5-GGUF-broken", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use bartowski/Rhea-72b-v0.5-GGUF-broken with Ollama:
ollama run hf.co/bartowski/Rhea-72b-v0.5-GGUF-broken:Q4_K_M
- Unsloth Studio
How to use bartowski/Rhea-72b-v0.5-GGUF-broken 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 bartowski/Rhea-72b-v0.5-GGUF-broken 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 bartowski/Rhea-72b-v0.5-GGUF-broken to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for bartowski/Rhea-72b-v0.5-GGUF-broken to start chatting
- Docker Model Runner
How to use bartowski/Rhea-72b-v0.5-GGUF-broken with Docker Model Runner:
docker model run hf.co/bartowski/Rhea-72b-v0.5-GGUF-broken:Q4_K_M
- Lemonade
How to use bartowski/Rhea-72b-v0.5-GGUF-broken with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bartowski/Rhea-72b-v0.5-GGUF-broken:Q4_K_M
Run and chat with the model
lemonade run user.Rhea-72b-v0.5-GGUF-broken-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Llamacpp Quantizations of Rhea-72b-v0.5
Using llama.cpp release b2440 for quantization.
Original model: https://huggingface.co/davidkim205/Rhea-72b-v0.5
Download a file (not the whole branch) from below:
| Filename | Quant type | File Size | Description |
|---|---|---|---|
| Rhea-72b-v0.5-Q8_0.gguf | Q8_0 | 76.82GB | Extremely high quality, generally unneeded but max available quant. |
| Rhea-72b-v0.5-Q6_K.gguf | Q6_K | 59.31GB | Very high quality, near perfect, recommended. |
| Rhea-72b-v0.5-Q5_K_M.gguf | Q5_K_M | 51.30GB | High quality, very usable. |
| Rhea-72b-v0.5-Q5_K_S.gguf | Q5_K_S | 49.88GB | High quality, very usable. |
| Rhea-72b-v0.5-Q5_0.gguf | Q5_0 | 49.88GB | High quality, older format, generally not recommended. |
| Rhea-72b-v0.5-Q4_K_M.gguf | Q4_K_M | 43.76GB | Good quality, similar to 4.25 bpw. |
| Rhea-72b-v0.5-Q4_K_S.gguf | Q4_K_S | 41.28GB | Slightly lower quality with small space savings. |
| Rhea-72b-v0.5-IQ4_NL.gguf | IQ4_NL | 41.25GB | Good quality, similar to Q4_K_S, new method of quanting, |
| Rhea-72b-v0.5-IQ4_XS.gguf | IQ4_XS | 39.09GB | Decent quality, new method with similar performance to Q4. |
| Rhea-72b-v0.5-Q4_0.gguf | Q4_0 | 41.00GB | Decent quality, older format, generally not recommended. |
| Rhea-72b-v0.5-IQ3_M.gguf | IQ3_M | 33.25GB | Medium-low quality, new method with decent performance. |
| Rhea-72b-v0.5-IQ3_S.gguf | IQ3_S | 31.56GB | Lower quality, new method with decent performance, recommended over Q3 quants. |
| Rhea-72b-v0.5-Q3_K_L.gguf | Q3_K_L | 38.48GB | Lower quality but usable, good for low RAM availability. |
| Rhea-72b-v0.5-Q3_K_M.gguf | Q3_K_M | 35.27GB | Even lower quality. |
| Rhea-72b-v0.5-Q3_K_S.gguf | Q3_K_S | 31.56GB | Low quality, not recommended. |
| Rhea-72b-v0.5-Q2_K.gguf | Q2_K | 27.07GB | Extremely low quality, not recommended. |
Want to support my work? Visit my ko-fi page here: https://ko-fi.com/bartowski
- Downloads last month
- 1,903
2-bit
3-bit
4-bit
5-bit