GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

SmallScale/Simple-Stories-Hindi-20M-GGUF overview

Simple Stories Hindi 22M GGUF This repository contains the GGUF quantization FP16 for SmallScale/Simple Stories Hindi 20M https://huggingface.co/SmallScale/Sim…

ggufhindistory-generationllama-cppllama-styletext-generationhidataset:SmallScale/Simple-Stories-Hindibase_model:SmallScale/Simple-Stories-Hindi-20Mbase_model:quantized:SmallScale/Simple-Stories-Hindi-20Mlicense:mitendpoints_compatibleregion:us

Runs locally from ~42.8 MB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
132
Likes
1
Pipeline
text-generation

Repository Files & Downloads

1 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
Simple-Stories-Hindi-22M-F16.ggufGGUFF1642.8 MBDownload

Model Details

Model IDSmallScale/Simple-Stories-Hindi-20M-GGUF
AuthorSmallScale
Pipelinetext-generation
Licensemit
Base modelSmallScale/Simple-Stories-Hindi-20M
Last modified2026-08-04T15:14:36.000Z

Model README

---

language:

  • hi

license: mit

library_name: gguf

tags:

  • hindi
  • story-generation
  • gguf
  • llama-cpp
  • llama-style
  • text-generation

base_model: SmallScale/Simple-Stories-Hindi-20M

pipeline_tag: text-generation

datasets:

  • SmallScale/Simple-Stories-Hindi

---

Simple-Stories-Hindi-22M-GGUF

This repository contains the GGUF quantization (FP16) for SmallScale/Simple-Stories-Hindi-20M, a 22M parameter decoder-only Transformer trained from scratch on Hindi simple stories.

Model Files

| File Name | Quantization | Size | Description |

|---|---|---|---|

| Simple-Stories-Hindi-22M-F16.gguf | F16 (16-bit Float) | ~42.8 MB | Full 16-bit float precision GGUF format |

Model Architecture Details

| Parameter | Value |

|---|---|

| Parameters | 22.3M total (20M non-embedding) |

| Architecture | LLaMA-style (RoPE + SwiGLU + RMSNorm) |

| Context Length | 512 tokens |

| Embedding Dim (d_model) | 384 |

| FFN Hidden Dim | 1024 |

| Layers | 10 |

| Attention Heads | 8 |

| Vocabulary | 6,000 (SentencePiece Unigram) |

Quick Start / Usage

1. Using with llama.cpp CLI

./llama-cli -m Simple-Stories-Hindi-22M-F16.gguf \
    -p "एक समय की बात है" \
    -n 150 \
    --temp 0.8 \
    --top-k 40 \
    --top-p 0.95

2. Using with llama-cpp-python

from llama_cpp import Llama

llm = Llama(
    model_path="Simple-Stories-Hindi-22M-F16.gguf",
    n_ctx=512,
    verbose=False
)

output = llm(
    "एक समय की बात है",
    max_tokens=150,
    temperature=0.8,
    top_k=40,
    top_p=0.95
)

print(output["choices"][0]["text"])

3. Using in Browser (WebAssembly / Wllama)

Try the live browser demo powered by WebAssembly & WebGPU:

SmallScale/simple-stories-20m-webgpu

License

MIT

Run SmallScale/Simple-Stories-Hindi-20M-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models