Instructions to use mradermacher/Meidebenne-120b-v1.0-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Meidebenne-120b-v1.0-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Meidebenne-120b-v1.0-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Meidebenne-120b-v1.0-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 mradermacher/Meidebenne-120b-v1.0-GGUF:IQ3_XS # Run inference directly in the terminal: llama cli -hf mradermacher/Meidebenne-120b-v1.0-GGUF:IQ3_XS
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/Meidebenne-120b-v1.0-GGUF:IQ3_XS # Run inference directly in the terminal: llama cli -hf mradermacher/Meidebenne-120b-v1.0-GGUF:IQ3_XS
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 mradermacher/Meidebenne-120b-v1.0-GGUF:IQ3_XS # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Meidebenne-120b-v1.0-GGUF:IQ3_XS
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 mradermacher/Meidebenne-120b-v1.0-GGUF:IQ3_XS # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Meidebenne-120b-v1.0-GGUF:IQ3_XS
Use Docker
docker model run hf.co/mradermacher/Meidebenne-120b-v1.0-GGUF:IQ3_XS
- LM Studio
- Jan
- Ollama
How to use mradermacher/Meidebenne-120b-v1.0-GGUF with Ollama:
ollama run hf.co/mradermacher/Meidebenne-120b-v1.0-GGUF:IQ3_XS
- Unsloth Desktop
- Docker Model Runner
How to use mradermacher/Meidebenne-120b-v1.0-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Meidebenne-120b-v1.0-GGUF:IQ3_XS
- Lemonade
How to use mradermacher/Meidebenne-120b-v1.0-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Meidebenne-120b-v1.0-GGUF:IQ3_XS
Run and chat with the model
lemonade run user.Meidebenne-120b-v1.0-GGUF-IQ3_XS
List all available models
lemonade list
- Atomic Chat
auto-patch README.md
Browse files
README.md
CHANGED
|
@@ -13,6 +13,7 @@ tags:
|
|
| 13 |
static quants of https://huggingface.co/MatrixC7/Meidebenne-120b-v1.0
|
| 14 |
|
| 15 |
<!-- provided-files -->
|
|
|
|
| 16 |
## Usage
|
| 17 |
|
| 18 |
If you are unsure how to use GGUF files, refer to one of [TheBloke's
|
|
|
|
| 13 |
static quants of https://huggingface.co/MatrixC7/Meidebenne-120b-v1.0
|
| 14 |
|
| 15 |
<!-- provided-files -->
|
| 16 |
+
weighted/imatrix quants are available at https://huggingface.co/mradermacher/Meidebenne-120b-v1.0-i1-GGUF
|
| 17 |
## Usage
|
| 18 |
|
| 19 |
If you are unsure how to use GGUF files, refer to one of [TheBloke's
|