Views
No views yet
lug_Latn), Swahili (swh_Latn), English (eng_Latn)xlm-roberta-base fine-tuned on labeled AML transaction narratives
collected from Uganda mobile money operators under BoU/FIA AML Act 2013 compliance.| Language | Example hook | Translation |
|---|---|---|
| Luganda | nkusaba ssente z'omusawo omukisa | "I beg you for doctor money, luck" |
| Swahili | tuma pesa haraka dharura | "Send money fast, emergency" |
| Luganda | oya wadawa prize ya airtime | "You won an airtime prize" |
| Metric | Value |
|---|---|
| Precision | ≥ 0.91 |
| Recall | ≥ 0.87 |
| F1 | ≥ 0.89 |
| SE hook recall | ≥ 0.85 |
1from transformers import pipeline
2
3classifier = pipeline(
4 "text-classification",
5 model="darthvader256/simitech-aml-nlp-scorer",
6)
7
8result = classifier("nkusaba ssente z'omusawo omukisa")
9# → [{'label': 'FRAUDULENT', 'score': 0.94}]xlm-roberta-basefacebook/nllb-200-distilled-600M (Luganda/Swahili → English)decision-plane/app/training/nlp_finetune.pydecision-plane/app/services/hf_nlp_service.py