Views
No views yet
eve-esa/EVE-Instructeve-esa/EVE-Instruct-GGUF-Q3_K_MEVE-Instruct-GGUF-Q3_K_M is a compressed (quantized) version designed for running on consumer hardware (CPU or low-VRAM GPUs). Compared to Q4_K_M, this variant offers a smaller footprint at the cost of slightly more accuracy loss — suitable when RAM is a hard constraint.1# Start a local OpenAI-compatible server:
2llama-server -hf eve-esa/EVE-Instruct-GGUF-Q3_K_M:Q3_K_M
3
4# Run inference directly in the terminal:
5llama-cli -hf eve-esa/EVE-Instruct-GGUF-Q3_K_M:Q3_K_M1from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="eve-esa/EVE-Instruct-GGUF-Q3_K_M",
5 filename="EVE-Instruct-Q3_K_M.gguf",
6)
7
8llm.create_chat_completion(
9 messages=[
10 {
11 "role": "system",
12 "content": "You are a helpful Earth Intelligence assistant specializing in Earth Observation and Earth Science."
13 },
14 {
15 "role": "user",
16 "content": "What is the Normalized Difference Vegetation Index (NDVI) and how is it used in remote sensing?"
17 }
18 ]
19)ollama run hf.co/eve-esa/EVE-Instruct-GGUF-Q3_K_M:Q3_K_MNote: 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.
1@misc{eve-instruct-2025,
2 title={EVE-Instruct: An Earth Intelligence Language Model},
3 author={EVE-ESA},
4 year={2025},
5 note={arXiv:2508.09494},
6 url={https://huggingface.co/eve-esa/EVE-Instruct}
7}