SmallScale/Simple-Stories-Hindi
Preview โข Updated โข 51 โข 2
How to use SmallScale/Simple-Stories-Hindi-10M-GGUF with llama.cpp:
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf SmallScale/Simple-Stories-Hindi-10M-GGUF:F16 # Run inference directly in the terminal: llama cli -hf SmallScale/Simple-Stories-Hindi-10M-GGUF:F16
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf SmallScale/Simple-Stories-Hindi-10M-GGUF:F16 # Run inference directly in the terminal: llama cli -hf SmallScale/Simple-Stories-Hindi-10M-GGUF:F16
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf SmallScale/Simple-Stories-Hindi-10M-GGUF:F16 # Run inference directly in the terminal: ./llama-cli -hf SmallScale/Simple-Stories-Hindi-10M-GGUF:F16
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf SmallScale/Simple-Stories-Hindi-10M-GGUF:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf SmallScale/Simple-Stories-Hindi-10M-GGUF:F16
docker model run hf.co/SmallScale/Simple-Stories-Hindi-10M-GGUF:F16
How to use SmallScale/Simple-Stories-Hindi-10M-GGUF with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "SmallScale/Simple-Stories-Hindi-10M-GGUF"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "SmallScale/Simple-Stories-Hindi-10M-GGUF",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/SmallScale/Simple-Stories-Hindi-10M-GGUF:F16
How to use SmallScale/Simple-Stories-Hindi-10M-GGUF with Ollama:
ollama run hf.co/SmallScale/Simple-Stories-Hindi-10M-GGUF:F16
How to use SmallScale/Simple-Stories-Hindi-10M-GGUF with Unsloth Studio:
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for SmallScale/Simple-Stories-Hindi-10M-GGUF to start chatting
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for SmallScale/Simple-Stories-Hindi-10M-GGUF to start chatting
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for SmallScale/Simple-Stories-Hindi-10M-GGUF to start chatting
How to use SmallScale/Simple-Stories-Hindi-10M-GGUF with Docker Model Runner:
docker model run hf.co/SmallScale/Simple-Stories-Hindi-10M-GGUF:F16
How to use SmallScale/Simple-Stories-Hindi-10M-GGUF with Lemonade:
# Download Lemonade from https://lemonade-server.ai/ lemonade pull SmallScale/Simple-Stories-Hindi-10M-GGUF:F16
lemonade run user.Simple-Stories-Hindi-10M-GGUF-F16
lemonade list
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).
1.8157 (at step 202,000)| 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 |
| 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) |
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
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"])
MIT License
16-bit
Base model
SmallScale/Simple-Stories-Hindi-10M