Instructions to use eve-esa/EVE-Instruct-GGUF-Q4_K_M with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use eve-esa/EVE-Instruct-GGUF-Q4_K_M with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="eve-esa/EVE-Instruct-GGUF-Q4_K_M", filename="EVE-Instruct-Q4_K_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use eve-esa/EVE-Instruct-GGUF-Q4_K_M with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M # Run inference directly in the terminal: llama-cli -hf eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M # Run inference directly in the terminal: llama-cli -hf eve-esa/EVE-Instruct-GGUF-Q4_K_M: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 eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf eve-esa/EVE-Instruct-GGUF-Q4_K_M: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 eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M
Use Docker
docker model run hf.co/eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use eve-esa/EVE-Instruct-GGUF-Q4_K_M with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Install mistral-common: pip install --upgrade mistral-common # Start the vLLM server: vllm serve "eve-esa/EVE-Instruct-GGUF-Q4_K_M" --tokenizer_mode mistral --config_format mistral --load_format mistral --tool-call-parser mistral --enable-auto-tool-choice # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "eve-esa/EVE-Instruct-GGUF-Q4_K_M", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M
- Ollama
How to use eve-esa/EVE-Instruct-GGUF-Q4_K_M with Ollama:
ollama run hf.co/eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M
- Unsloth Studio
How to use eve-esa/EVE-Instruct-GGUF-Q4_K_M 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 eve-esa/EVE-Instruct-GGUF-Q4_K_M 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 eve-esa/EVE-Instruct-GGUF-Q4_K_M to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for eve-esa/EVE-Instruct-GGUF-Q4_K_M to start chatting
- Pi
How to use eve-esa/EVE-Instruct-GGUF-Q4_K_M with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M
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": "eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use eve-esa/EVE-Instruct-GGUF-Q4_K_M with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M
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 eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use eve-esa/EVE-Instruct-GGUF-Q4_K_M with Docker Model Runner:
docker model run hf.co/eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M
- Lemonade
How to use eve-esa/EVE-Instruct-GGUF-Q4_K_M with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M
Run and chat with the model
lemonade run user.EVE-Instruct-GGUF-Q4_K_M-Q4_K_M
List all available models
lemonade list
EVE-Instruct-GGUF-Q4_K_M
This repository provides a quantized GGUF version of EVE-Instruct for efficient local inference.
- Base model:
eve-esa/EVE-Instruct - Quantized variant:
eve-esa/EVE-Instruct-GGUF-Q4_K_M - Architecture: Llama (Mistral-compatible)
- Parameters: 24B
- Context length: 128k tokens
- Quantized file size: ~14.3 GB
- Minimum RAM: ~16 GB system or GPU RAM recommended
For full details on training, benchmarks, and capabilities, refer to the main EVE-Instruct model card.
Model Description
EVE-Instruct is a fine-tuned version of Mistral-Small-3.2-24B-Instruct-2506 specializing in Earth Intelligence, with particular emphasis on Earth Observation (EO) and Earth Science (ES) domains. It improves domain-specific capabilities while maintaining or exceeding the general capabilities of its base model.
EVE-Instruct-GGUF-Q4_K_M is a compressed (quantized) version designed for running on consumer hardware (CPU or low-VRAM GPUs).
Quantization Details
Q4_K_M is a "type-1" 4-bit quantization in super-blocks containing 8 blocks, each block having 32 weights. Scales and mins are quantized with 6 bits. This results in a good balance between model quality and file size, with modest accuracy loss compared to the original bf16 weights. For accuracy benchmarks, refer to the base model card.
Usage
llama.cpp
# Start a local OpenAI-compatible server:
llama-server -hf eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M
# Run inference directly in the terminal:
llama-cli -hf eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M
llama-cpp-python
from llama_cpp import Llama
llm = Llama.from_pretrained(
repo_id="eve-esa/EVE-Instruct-GGUF-Q4_K_M",
filename="EVE-Instruct-Q4_K_M.gguf",
)
llm.create_chat_completion(
messages=[
{
"role": "system",
"content": "You are a helpful Earth Intelligence assistant specializing in Earth Observation and Earth Science."
},
{
"role": "user",
"content": "What is the Normalized Difference Vegetation Index (NDVI) and how is it used in remote sensing?"
}
]
)
Ollama
ollama run hf.co/eve-esa/EVE-Instruct-GGUF-Q4_K_M:Q4_K_M
Note: This is a GGUF quantized file intended for local inference with llama.cpp-compatible runtimes (llama.cpp, Ollama, LM Studio, etc.). It is not compatible with vLLM, which requires the original safetensors weights from eve-esa/EVE-Instruct.
Funding
This project is supported by the European Space Agency (ESA) Φ-lab through the Large Language Model for Earth Observation and Earth Science project, as part of the Foresight Element within the FutureEO Block 4 programme.
Citation
If you use this model in academic or research settings, please cite the base model:
@misc{eve-instruct-2025,
title={EVE-Instruct: An Earth Intelligence Language Model},
author={EVE-ESA},
year={2025},
note={arXiv:2508.09494},
url={https://huggingface.co/eve-esa/EVE-Instruct}
}
- Downloads last month
- 135
4-bit
Model tree for eve-esa/EVE-Instruct-GGUF-Q4_K_M
Base model
eve-esa/EVE-Instruct