Text Generation
Transformers
Safetensors
Hindi
llama
text-generation-inference
Eval Results (legacy)
Instructions to use Polygl0t/LilMoo-v0.1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Polygl0t/LilMoo-v0.1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Polygl0t/LilMoo-v0.1")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Polygl0t/LilMoo-v0.1") model = AutoModelForCausalLM.from_pretrained("Polygl0t/LilMoo-v0.1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Polygl0t/LilMoo-v0.1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Polygl0t/LilMoo-v0.1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Polygl0t/LilMoo-v0.1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Polygl0t/LilMoo-v0.1
- SGLang
How to use Polygl0t/LilMoo-v0.1 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Polygl0t/LilMoo-v0.1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Polygl0t/LilMoo-v0.1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Polygl0t/LilMoo-v0.1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Polygl0t/LilMoo-v0.1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Polygl0t/LilMoo-v0.1 with Docker Model Runner:
docker model run hf.co/Polygl0t/LilMoo-v0.1
Update README.md
Browse files
README.md
CHANGED
|
@@ -389,7 +389,15 @@ All models were prompted with the same Hindi prompts, and the generations were p
|
|
| 389 |
## Cite as 🤗
|
| 390 |
|
| 391 |
```latex
|
| 392 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 393 |
```
|
| 394 |
|
| 395 |
## Aknowlegments
|
|
|
|
| 389 |
## Cite as 🤗
|
| 390 |
|
| 391 |
```latex
|
| 392 |
+
@misc{shiza2026lilmoo,
|
| 393 |
+
title={{Raising Bars, Not Parameters: LilMoo Compact Language Model for Hindi}},
|
| 394 |
+
author={Shiza Fatimah and Aniket Sen and Sophia Falk and Florian Mai and Lucie Flek and Nicholas Kluge Corr{\^e}a},
|
| 395 |
+
year={2026},
|
| 396 |
+
eprint={2603.03508},
|
| 397 |
+
archivePrefix={arXiv},
|
| 398 |
+
primaryClass={cs.CL},
|
| 399 |
+
url={https://arxiv.org/abs/2603.03508},
|
| 400 |
+
}
|
| 401 |
```
|
| 402 |
|
| 403 |
## Aknowlegments
|