๐Ÿ“– 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

Downloads last month
95
GGUF
Model size
11.5M params
Architecture
llama
Hardware compatibility
Log In to add your hardware

16-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for SmallScale/Simple-Stories-Hindi-10M-GGUF

Quantized
(1)
this model

Dataset used to train SmallScale/Simple-Stories-Hindi-10M-GGUF