Views
No views yet
llama.cpp, LM Studio, and other GGUF-compatible backends.| Parameter | Value |
|---|---|
| Architecture | MIMO2 with Sliding Window Attention (SWA) |
| Context length | 32K tokens |
| Layers | 28 |
| Hidden size | 4096 |
| Attention heads | 32 |
| Quantization | Q4_K_M (balanced quality/size) |
| Tokenizer | Llama-compatible |
| Filename | Quantization | Size |
|---|---|---|
MIMO2-7B-Q4_K_M.gguf | Q4_K_M | 4.68 GB |
mimo_v5.Q4_K_M.gguf | Q4_K_M | 4.68 GB |
Mimo-v5-7b.Q4_K_M.gguf | Q4_K_M | 4.68 GB |
mimo2_q4_k_m.gguf | Q4_K_M | 4.68 GB |
All files use the Q4_K_M quantization method, offering an excellent trade-off between model quality and memory usage.
llama.cpp1# Start an OpenAI-compatible server with web UI
2llama-server -hf redhamohamed/mimo-v5-gguf:MIMO2-7B-Q4_K_M.gguf
3
4# Run inference directly in terminal
5llama-cli -hf redhamohamed/mimo-v5-gguf:MIMO2-7B-Q4_K_M.gguf -p "Bonjour, comment ça va ?"
6With llama-cpp-python
7
8python
9from llama_cpp import Llama
10
11llm = Llama.from_pretrained(
12 repo_id="redhamohamed/mimo-v5-gguf",
13 filename="MIMO2-7B-Q4_K_M.gguf",
14)
15
16response = llm.create_chat_completion(
17 messages=[{"role": "user", "content": "Explain MIMO in simple terms"}]
18)
19print(response["choices"][0]["message"]["content"])
20With LM Studio
21
22Open LM Studio
23Search for redhamohamed/mimo-v5-gguf in the Hub tab
24Download the desired .gguf file
25Load and start chatting
26With Ollama
27
28bash
29ollama run hf.co/redhamohamed/mimo-v5-gguf:Q4_K_M
30Quantization details
31
32Q4_K_M is a K-quant method that provides:
33
344-bit weights with higher accuracy for important layers
35Intermediate size (larger than Q4_0, smaller than Q5_K_M)
36Recommended for general use and resource-constrained environments
37Notes
38
39This model uses a Llama-compatible tokenizer
40No additional configuration is required for the chat template
41Tested with llama.cpp v1.2.0 and higher
42Acknowledgments
43
44Thanks to the open-source community for developing the tools that make GGUF quantization and distribution possible.
45
46License
47
48Apache 2.0
49ABDESSEMED Mohamed Redha