GigaKriya-ablation-EDU-1.5B is a decoder-transformer natively pretrained in Bengali. This model is part of an ablation study to measure the impact of our educational data filtering/augmentation strategy on the downstream performance of models trained with GigaKriya. GigaKriya-ablation-EDU-1.5B was trained with ~34 billion tokens, those being a mixture of the educational portion of GigaKriya (i.e., samples with an Edu Score >= 3). This model has 1.5 billion parameters and a context length of 4096 tokens.
The main branch of this repository contains the final checkpoint saved at step 16,000. All other checkpoints are available as separate branches. To load a specific checkpoint, you can use the following code snippet:
python
1from transformers import AutoModelForCausalLM, AutoTokenizer
23model_id ="Polygl0t/GigaKriya-ablation-EDU-1.5B"4revision ="step-2000"# Change this to the desired checkpoint branch5tokenizer = AutoTokenizer.from_pretrained(model_id)6model = AutoModelForCausalLM.from_pretrained(model_id, revision=revision)
Or, you can access all the revisions for the models via the following code snippet:
python
1from huggingface_hub import list_repo_refs
2out = list_repo_refs("Polygl0t/GigaKriya-ablation-EDU-1.5B")3branches =[b.name for b in out.branches]4print(branches)
Intended Uses
The primary intended use of this model is to serve as a baseline for evaluating the impact of data quality and filtering on Bengali language model performance. Researchers and practitioners can use this model as a reference point for further ablation studies or for comparison with other models trained on different data mixtures.
Basic usage
python
1from transformers import GenerationConfig, TextGenerationPipeline, AutoTokenizer, AutoModelForCausalLM
2import torch
34# Specify the model and tokenizer5model_id ="Polygl0t/GigaKriya-ablation-EDU-1.5B"6tokenizer = AutoTokenizer.from_pretrained(model_id)7model = AutoModelForCausalLM.from_pretrained(model_id)89# Specify the generation parameters as you like10generation_config = GenerationConfig(11**{12"do_sample":True,13"max_new_tokens":150,14"renormalize_logits":True,15"repetition_penalty":1.2,16"temperature":0.1,17"top_k":50,18"top_p":1.0,19"use_cache":True,20}21)2223device = torch.device("cuda"if torch.cuda.is_available()else"cpu")24generator = TextGenerationPipeline(model=model, task="text-generation", tokenizer=tokenizer, device=device)2526# Generate text27prompt ="ভারতের রাজধানী কী ?"28completion = generator(prompt, generation_config=generation_config)29print(completion[0]['generated_text'])
Evaluations
Figures below show the per-benchmark performance of GigaKriya-ablation-EDU-1.5B (educational subset, Edu Score >= 3) compared to GigaKriya-ablation-NonEDU-1.5B (non educational subset, Edu Score < 3). GigaKriya-Edu outperforms GigaKriya-NonEdu on 7 of 8 benchmarks and achieves a higher NPM score. These results suggest that training on educationally curated content consistently yields stronger language understanding.
🏆 HellaSwag
hellaswag
🏆 ARC Challenge
arc_challenge
🏆 MMLU
mmlu
🏆 Bangla MMLU
bangla_mmlu
🏆 BoolQ
boolq
🏆PIQA
piqa
🏆CommonsenseQA
commonsense_qa
🏆OpenbookQA
openbook_qa
Aggregate NPM Across Benchmarks
NPM
Cite as 🤗
latex
1@misc{fatimah2026liltii,
2 title={{LilTii: A 0.6B Bengali Language Model that Outperforms Qwen}},
3 author={Shiza Fatimah and Aniket Sen and Sophia Falk and Florian Mai and Lucie Flek and Nicholas Kluge Corr{\^e}a},
4 year={2026},
5 howpublished={\url{https://hf.co/blog/Polygl0t/liltii}}6}
Aknowlegments
Polyglot is a project funded by the Federal Ministry of Education and Research (BMBF) and the Ministry of Culture and Science of the State of North Rhine-Westphalia (MWK) as part of TRA Sustainable Futures (University of Bonn) and the Excellence Strategy of the federal and state governments.
We also gratefully acknowledge the granted access to the Marvin cluster hosted by University of Bonn along with the support provided by its High Performance Computing & Analytics Lab.
License
This model is licensed under the Apache License, Version 2.0. For more details, see the LICENSE file.