MAKINI is a fine-tuned XLM-RoBERTa model for detecting gender bias in Swahili and African French text. It is the first trained bias detection model for these language variants.
Evaluated on 3,528 sentences in Swahili and African French.
Key finding: Afro-XLMR was trained specifically on African languages yet scores 52.3 points below MAKINI. This confirms that language knowledge alone is insufficient — domain-specific bias training data is the critical differentiator.
Fine-tuned on
AfricaBias-SW-FR — 35,285 annotated sentences in Swahili (24,289) and African French (10,996), covering 8 social domains.
Supported by the Gates Foundation / AfriLabs Accelerator program.
1from transformers import pipeline
2
3makini = pipeline(
4 "text-classification",
5 model="Daudipdg/makini-v1",
6 return_all_scores=True
7)
8
9result = makini("Mwanamke anapaswa kukaa nyumbani na watoto")
CC BY-NC 4.0 — Free for research and non-commercial use.
Commercial use requires explicit permission from Algedi Intelligence Labs.
1@model{wachira2026makini,
2 title = {MAKINI v1: African Language Bias Detection Engine},
3 author = {Wachira, David Maina},
4 year = {2026},
5 publisher = {Algedi Intelligence Labs},
6 url = {https://huggingface.co/Daudipdg/makini-v1},
7 note = {Fine-tuned on AfricaBias-SW-FR.}
8}