Downloads · 30 days
231
100% of all-time downloads
debugdll/Blind-Text-Models
Blind-Text-Models is a text generation model from debugdll. Use it when you need the model to write or continue text. It is set up for llama.cpp. The card lists the license as apache-2.0.
A collection of language models from the Blind family. Named for its focus on text tasks — from conversation to content generation.
Downloads · 30 days
231
100% of all-time downloads
All-time downloads
231
Public
Repo size
24.2 GB
Likes
0
Public
Click a slice to open those files.
.gguf12.1 GB · 100%
From the Hugging Face model README
A collection of language models from the Blind family. Named for its focus on text tasks — from conversation to content generation.
| Model | Parameters | Quantization | File size | Context | Focus |
|---|---|---|---|---|---|
Blind Text 1 (blind-1.gguf) | 20.9B (MoE, 32 experts, 4 active) | MXFP4 + Q8_0 | 11.3 GB | 131 072 (128K) | All-purpose assistant, strong at conversation, explanations and generation in Russian and English |
Only one model is in the collection for now. New versions will be added to this table.
The model introduces itself as Blind 1 — that is how it presents itself when asked. This is a build feature.
Runs fully on GPU in ~11.5 GB — fits comfortably in a 12 GB VRAM card, and easily on 16 GB+. CPU-only inference works too (slower). No external API keys or cloud required — fully local and private.
Instrumental metrics (MMLU and similar) are still being measured and will be added here. Generation speed is already benchmarked:
| Environment | Generation |
|---|---|
| NVIDIA RTX 5080 (16GB), llama.cpp | ≈ 10 tok/s (100 tokens in ~10 s, including the reasoning prefix) |
Parameter estimates:
# llama.cpp
llama-cli -m blind-1.gguf -p "Hello, who are you?"
# llama-cpp-python
from llama_cpp import Llama
llm = Llama(model_path="blind-1.gguf", n_ctx=8192, n_gpu_layers=-1)
print(llm.create_chat_completion(messages=[{"role": "user", "content": "Who are you?"}]))
The model is distributed under the Apache 2.0 license.