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

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

📖 Simple Stories Hindi 10M GGUF FP16 This repository contains the FP16 GGUF model file for SmallScale/Simple Stories Hindi 10M https://huggingface.co/SmallSca…

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

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

Downloads
0
Likes
1
Pipeline
text-generation

Repository Files & Downloads

1 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
Simple-Stories-Hindi-11M-F16.ggufGGUFF1622.0 MBDownload

Model Details

Model IDSmallScale/Simple-Stories-Hindi-10M-GGUF
AuthorSmallScale
Pipelinetext-generation
Licensemit
Base modelSmallScale/Simple-Stories-Hindi-10M
Last modified2026-08-03T13:10:13.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-10M

datasets:

- SmallScale/Simple-Stories-Hindi

pipeline_tag: text-generation

---

📖 Simple-Stories-Hindi-10M-GGUF (FP16)

This repository contains the FP16 GGUF model file for SmallScale/Simple-Stories-Hindi-10M, a 11.45M parameter decoder-only Transformer model trained from scratch on the SmallScale/Simple-Stories-Hindi dataset (~2.11M Hindi stories).

---

📌 Model Information & Base Model

---

📁 Model Files

| File Name | Quantization | Size | Description |

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

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

---

🏗️ Model Architecture Details

| Parameter | Value |

|---|---|

| Parameters | 11.45M total (10.17M non-embedding) |

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

| Context Length | 512 tokens |

| Embedding Dim (d_model) | 320 |

| FFN Hidden Dim | 896 |

| Layers | 7 |

| Attention Heads | 5 |

| Vocabulary | 4,000 (SentencePiece Unigram) |

---

🚀 Quick Start / Usage

1. Using with llama.cpp CLI

./llama-cli -m Simple-Stories-Hindi-11M-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-11M-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"])

---

📄 License

MIT License

Run SmallScale/Simple-Stories-Hindi-10M-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